diff --git a/gradlew b/gradlew index 739907dfd1..5c798ab535 100755 --- a/gradlew +++ b/gradlew @@ -245,4 +245,4 @@ eval "set -- $( tr '\n' ' ' )" '"$@"' -exec "$JAVACMD" "$@" +exec "$JAVACMD" "$@" \ No newline at end of file diff --git a/jme3-core/src/test/java/com/jme3/test/PreventCoreIssueRegressions.java b/jme3-core/src/test/java/com/jme3/test/PreventCoreIssueRegressions.java index c5af2b3038..23d954fb1f 100644 --- a/jme3-core/src/test/java/com/jme3/test/PreventCoreIssueRegressions.java +++ b/jme3-core/src/test/java/com/jme3/test/PreventCoreIssueRegressions.java @@ -112,7 +112,7 @@ public void simpleInitApp() { } @Test public void testIssue1138() { AssetManager am = JmeSystem.newAssetManager(PreventCoreIssueRegressions.class.getResource("/com/jme3/asset/Desktop.cfg")); - Node cgModel = (Node)am.loadModel("Models/Elephant/Elephant.mesh.xml"); + Node cgModel = (Node)am.loadModel("Models/Elephant/Elephant.gltf"); cgModel.rotate(0f, -1f, 0f); cgModel.scale(0.04f); diff --git a/jme3-examples/src/main/java/jme3test/animation/TestCinematic.java b/jme3-examples/src/main/java/jme3test/animation/TestCinematic.java index 6bce59d798..20f8e81ebb 100644 --- a/jme3-examples/src/main/java/jme3test/animation/TestCinematic.java +++ b/jme3-examples/src/main/java/jme3test/animation/TestCinematic.java @@ -221,7 +221,7 @@ private void createCameraMotion() { private void createScene() { - model = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + model = assetManager.loadModel("Models/Oto/Oto.gltf"); model.center(); model.setShadowMode(ShadowMode.CastAndReceive); rootNode.attachChild(model); diff --git a/jme3-examples/src/main/java/jme3test/animation/TestIssue2076.java b/jme3-examples/src/main/java/jme3test/animation/TestIssue2076.java index 80fcac11b6..d5f2fe8b95 100644 --- a/jme3-examples/src/main/java/jme3test/animation/TestIssue2076.java +++ b/jme3-examples/src/main/java/jme3test/animation/TestIssue2076.java @@ -41,6 +41,7 @@ import com.jme3.scene.Mesh; import com.jme3.scene.Node; import com.jme3.scene.VertexBuffer; +import jme3test.app.SpatialUtils; /** * Test for JMonkeyEngine issue #2076: software skinning requires vertex @@ -100,7 +101,7 @@ private void testOldAnimationSystem(String assetPath) { skeletonControl.setHardwareSkinningPreferred(false); // remove its vertex normals: - Geometry oldGeometry = (Geometry) oldJaime.getChild(0); + Geometry oldGeometry = SpatialUtils.findFirstGeometry(oldJaime); Mesh oldMesh = oldGeometry.getMesh(); oldMesh.clearBuffer(VertexBuffer.Type.Normal); oldMesh.clearBuffer(VertexBuffer.Type.BindPoseNormal); @@ -124,7 +125,7 @@ private void testNewAnimationSystem(String assetPath) { skinningControl.setHardwareSkinningPreferred(false); // remove its vertex normals: - Geometry newGeometry = (Geometry) newJaime.getChild(0); + Geometry newGeometry = SpatialUtils.findFirstGeometry(newJaime); Mesh newMesh = newGeometry.getMesh(); newMesh.clearBuffer(VertexBuffer.Type.Normal); newMesh.clearBuffer(VertexBuffer.Type.BindPoseNormal); diff --git a/jme3-examples/src/main/java/jme3test/app/SpatialUtils.java b/jme3-examples/src/main/java/jme3test/app/SpatialUtils.java new file mode 100644 index 0000000000..48b73dfc8e --- /dev/null +++ b/jme3-examples/src/main/java/jme3test/app/SpatialUtils.java @@ -0,0 +1,86 @@ +package jme3test.app; + +import com.jme3.scene.Geometry; +import com.jme3.scene.Node; +import com.jme3.scene.Spatial; + +/** + * Utility class for working with spatial hierarchies. + * Provides helper methods for searching and manipulating spatial scene graphs. + */ +public class SpatialUtils { + + /** + * Recursively finds the first Geometry in a spatial hierarchy. + * This is useful for handling both simple flat structures (Ogre models) and + * complex nested node trees (glTF models). + * + * @param spatial The root spatial to search from + * @return The first Geometry found, or null if none exists + */ + public static Geometry findFirstGeometry(Spatial spatial) { + if (spatial instanceof Geometry) { + return (Geometry) spatial; + } + if (spatial instanceof Node) { + Node node = (Node) spatial; + for (Spatial child : node.getChildren()) { + Geometry geom = findFirstGeometry(child); + if (geom != null) { + return geom; + } + } + } + return null; + } + + /** + * Recursively finds a Geometry by name in a spatial hierarchy. + * Searches depth-first through the entire spatial tree. + * + * @param spatial The root spatial to search from + * @param name The name of the geometry to find + * @return The Geometry with the matching name, or null if not found + */ + public static Geometry findGeometryByName(Spatial spatial, String name) { + if (spatial.getName() != null && spatial.getName().equals(name) && spatial instanceof Geometry) { + return (Geometry) spatial; + } + if (spatial instanceof Node) { + Node node = (Node) spatial; + for (Spatial child : node.getChildren()) { + Geometry geom = findGeometryByName(child, name); + if (geom != null) { + return geom; + } + } + } + return null; + } + + /** + * Counts the total number of Geometries in a spatial hierarchy. + * Useful for debugging and understanding scene structure. + * + * @param spatial The root spatial to count from + * @return The total number of geometries in the hierarchy + */ + public static int countGeometries(Spatial spatial) { + if (spatial instanceof Geometry) { + return 1; + } + if (spatial instanceof Node) { + int count = 0; + Node node = (Node) spatial; + for (Spatial child : node.getChildren()) { + count += countGeometries(child); + } + return count; + } + return 0; + } + + private SpatialUtils() { + // Utility class, no instantiation + } +} diff --git a/jme3-examples/src/main/java/jme3test/bullet/TestBoneRagdoll.java b/jme3-examples/src/main/java/jme3test/bullet/TestBoneRagdoll.java index 538ec8b31c..5842fcf27e 100644 --- a/jme3-examples/src/main/java/jme3test/bullet/TestBoneRagdoll.java +++ b/jme3-examples/src/main/java/jme3test/bullet/TestBoneRagdoll.java @@ -170,7 +170,7 @@ public void simpleInitApp() { PhysicsTestHelper.createPhysicsTestWorld(rootNode, assetManager, physicsSpace); - model = (Node) assetManager.loadModel("Models/Sinbad/Sinbad.mesh.xml"); + model = (Node) assetManager.loadModel("Models/Sinbad/Sinbad.gltf"); rootNode.attachChild(model); composer = model.getControl(AnimComposer.class); diff --git a/jme3-examples/src/main/java/jme3test/bullet/TestHoveringTank.java b/jme3-examples/src/main/java/jme3test/bullet/TestHoveringTank.java index 3127ec4a68..ac0e025046 100644 --- a/jme3-examples/src/main/java/jme3test/bullet/TestHoveringTank.java +++ b/jme3-examples/src/main/java/jme3test/bullet/TestHoveringTank.java @@ -138,7 +138,7 @@ public void simpleInitApp() { } private void buildPlayer() { - spaceCraft = assetManager.loadModel("Models/HoverTank/Tank2.mesh.xml"); + spaceCraft = assetManager.loadModel("Models/HoverTank/Tank2.gltf"); CollisionShape colShape = CollisionShapeFactory.createDynamicMeshShape(spaceCraft); spaceCraft.setShadowMode(ShadowMode.CastAndReceive); spaceCraft.setLocalTranslation(startLocation); @@ -164,7 +164,7 @@ public void makeMissile() { Quaternion rot = spaceCraft.getWorldRotation(); Vector3f dir = rot.getRotationColumn(2); - Spatial missile = assetManager.loadModel("Models/SpaceCraft/Rocket.mesh.xml"); + Spatial missile = assetManager.loadModel("Models/SpaceCraft/Rocket.gltf"); missile.scale(0.5f); missile.rotate(0, FastMath.PI, 0); missile.updateGeometricState(); diff --git a/jme3-examples/src/main/java/jme3test/bullet/TestPhysicsRayCast.java b/jme3-examples/src/main/java/jme3test/bullet/TestPhysicsRayCast.java index 9d3a77350e..a13d796359 100644 --- a/jme3-examples/src/main/java/jme3test/bullet/TestPhysicsRayCast.java +++ b/jme3-examples/src/main/java/jme3test/bullet/TestPhysicsRayCast.java @@ -30,7 +30,7 @@ public void simpleInitApp() { stateManager.attach(bulletAppState); initCrossHair(); - Spatial s = assetManager.loadModel("Models/Elephant/Elephant.mesh.xml"); + Spatial s = assetManager.loadModel("Models/Elephant/Elephant.gltf"); s.setLocalScale(0.1f); CollisionShape collisionShape = CollisionShapeFactory.createMeshShape(s); diff --git a/jme3-examples/src/main/java/jme3test/bullet/TestRagdollCharacter.java b/jme3-examples/src/main/java/jme3test/bullet/TestRagdollCharacter.java index b457e3b15b..268b1b5f05 100644 --- a/jme3-examples/src/main/java/jme3test/bullet/TestRagdollCharacter.java +++ b/jme3-examples/src/main/java/jme3test/bullet/TestRagdollCharacter.java @@ -160,7 +160,7 @@ public void simpleInitApp() { physicsSpace); initWall(2f, 1f, 1f); - model = (Node) assetManager.loadModel("Models/Sinbad/Sinbad.mesh.xml"); + model = (Node) assetManager.loadModel("Models/Sinbad/Sinbad.gltf"); rootNode.attachChild(model); model.lookAt(new Vector3f(0f, 0f, -1f), Vector3f.UNIT_Y); model.setLocalTranslation(4f, 0f, -7f); diff --git a/jme3-examples/src/main/java/jme3test/bullet/TestWalkingChar.java b/jme3-examples/src/main/java/jme3test/bullet/TestWalkingChar.java index 61f08d25f2..28189a1102 100644 --- a/jme3-examples/src/main/java/jme3test/bullet/TestWalkingChar.java +++ b/jme3-examples/src/main/java/jme3test/bullet/TestWalkingChar.java @@ -294,7 +294,7 @@ private void createTerrain() { private void createCharacter() { CapsuleCollisionShape capsule = new CapsuleCollisionShape(3f, 4f); character = new CharacterControl(capsule, 0.01f); - model = (Node) assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + model = (Node) assetManager.loadModel("Models/Oto/Oto.gltf"); model.addControl(character); character.setPhysicsLocation(new Vector3f(-140, 40, -10)); rootNode.attachChild(model); diff --git a/jme3-examples/src/main/java/jme3test/bullet/shape/TestGimpactShape.java b/jme3-examples/src/main/java/jme3test/bullet/shape/TestGimpactShape.java index f564790411..cf8a3f479d 100644 --- a/jme3-examples/src/main/java/jme3test/bullet/shape/TestGimpactShape.java +++ b/jme3-examples/src/main/java/jme3test/bullet/shape/TestGimpactShape.java @@ -56,6 +56,7 @@ import com.jme3.system.AppSettings; import java.util.ArrayList; import java.util.List; +import jme3test.app.SpatialUtils; import jme3test.bullet.PhysicsTestHelper; /** @@ -262,19 +263,19 @@ private void dropTest2(Vector3f offset) { } private void dropPot(Vector3f offset) { - drop(offset.add(-12, 7, 15), "Models/Teapot/Teapot.mesh.xml", 1.0f, 2); + drop(offset.add(-12, 7, 15), "Models/Teapot/Teapot.gltf", 1.0f, 2); } private void dropSword(Vector3f offset) { - drop(offset.add(-10, 5, 3), "Models/Sinbad/Sword.mesh.xml", 1.0f, 2); + drop(offset.add(-10, 5, 3), "Models/Sinbad/Sword.gltf", 1.0f, 2); } private void dropSign(Vector3f offset) { - drop(offset.add(9, 15, 5), "Models/Sign Post/Sign Post.mesh.xml", 1.0f, 1); + drop(offset.add(9, 15, 5), "Models/Sign Post/SignPost.gltf", 1.0f, 1); } private void dropRocket(Vector3f offset) { - RigidBodyControl c = drop(offset.add(26, 4, 7), "Models/SpaceCraft/Rocket.mesh.xml", 4.0f, 3); + RigidBodyControl c = drop(offset.add(26, 4, 7), "Models/SpaceCraft/Rocket.gltf", 4.0f, 3); c.setAngularDamping(0.5f); c.setLinearDamping(0.5f); } @@ -285,7 +286,7 @@ private RigidBodyControl drop(Vector3f offset, String model, float scale, float n.setLocalTranslation(offset); n.rotate(0, 0, -FastMath.HALF_PI); - Geometry tp = ((Geometry) n.getChild(0)); + Geometry tp = SpatialUtils.findFirstGeometry(n); tp.scale(scale); Material mat = new Material(assetManager, "Common/MatDefs/Light/Lighting.j3md"); tp.setMaterial(mat); diff --git a/jme3-examples/src/main/java/jme3test/collision/TestMousePick.java b/jme3-examples/src/main/java/jme3test/collision/TestMousePick.java index 00f25e59ef..b25fc3deeb 100644 --- a/jme3-examples/src/main/java/jme3test/collision/TestMousePick.java +++ b/jme3-examples/src/main/java/jme3test/collision/TestMousePick.java @@ -119,7 +119,7 @@ private void setupScene() { shootables.attachChild(torus); // load a character from jme3-testdata - Spatial golem = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + Spatial golem = assetManager.loadModel("Models/Oto/Oto.gltf"); golem.scale(0.5f); golem.setLocalTranslation(-1.0f, -1.5f, -0.6f); shootables.attachChild(golem); diff --git a/jme3-examples/src/main/java/jme3test/collision/TestRayCasting.java b/jme3-examples/src/main/java/jme3test/collision/TestRayCasting.java index e3c1ba136b..82f8044673 100644 --- a/jme3-examples/src/main/java/jme3test/collision/TestRayCasting.java +++ b/jme3-examples/src/main/java/jme3test/collision/TestRayCasting.java @@ -71,7 +71,7 @@ public void simpleInitApp() { q.updateBound(); // Geometry teapot = new Geometry("MyGeom", q); - teapot = assetManager.loadModel("Models/Teapot/Teapot.mesh.xml"); + teapot = assetManager.loadModel("Models/Teapot/Teapot.gltf"); // teapot.scale(2f, 2f, 2f); // teapot.move(2f, 2f, -.5f); teapot.rotate(FastMath.HALF_PI, FastMath.HALF_PI, FastMath.HALF_PI); diff --git a/jme3-examples/src/main/java/jme3test/collision/TestTriangleCollision.java b/jme3-examples/src/main/java/jme3test/collision/TestTriangleCollision.java index 6d20ea1fc2..22580f858b 100644 --- a/jme3-examples/src/main/java/jme3test/collision/TestTriangleCollision.java +++ b/jme3-examples/src/main/java/jme3test/collision/TestTriangleCollision.java @@ -70,7 +70,7 @@ public void simpleInitApp() { rootNode.attachChild(geom1); // load a character from jme3-testdata - golem = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + golem = assetManager.loadModel("Models/Oto/Oto.gltf"); golem.scale(0.5f); golem.setLocalTranslation(-1.0f, -1.5f, -0.6f); diff --git a/jme3-examples/src/main/java/jme3test/effect/TestEverything.java b/jme3-examples/src/main/java/jme3test/effect/TestEverything.java index bb5ab62a1a..54b9ade71a 100644 --- a/jme3-examples/src/main/java/jme3test/effect/TestEverything.java +++ b/jme3-examples/src/main/java/jme3test/effect/TestEverything.java @@ -35,7 +35,11 @@ import com.jme3.app.SimpleApplication; import com.jme3.light.DirectionalLight; import com.jme3.material.Material; -import com.jme3.math.*; +import com.jme3.math.ColorRGBA; +import com.jme3.math.FastMath; +import com.jme3.math.Quaternion; +import com.jme3.math.Vector2f; +import com.jme3.math.Vector3f; import com.jme3.post.FilterPostProcessor; import com.jme3.post.filters.ToneMapFilter; import com.jme3.renderer.Caps; @@ -50,6 +54,8 @@ import com.jme3.util.SkyFactory; import com.jme3.util.mikktspace.MikktspaceTangentGenerator; +import jme3test.app.SpatialUtils; + public class TestEverything extends SimpleApplication { private DirectionalLightShadowRenderer dlsr; @@ -151,11 +157,12 @@ public void setupFloor(){ // // } - public void setupRobotGuy(){ - Node model = (Node) assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + public void setupRobotGuy() { + Node model = (Node) assetManager.loadModel("Models/Oto/Oto.gltf"); + Geometry otoGeometry = SpatialUtils.findFirstGeometry(model); Material mat = assetManager.loadMaterial("Models/Oto/Oto.j3m"); - model.getChild(0).setMaterial(mat); -// model.setAnimation("Walk"); + otoGeometry.setMaterial(mat); + model.setLocalTranslation(30, 10.5f, 30); model.setLocalScale(2); model.setShadowMode(ShadowMode.CastAndReceive); @@ -163,9 +170,10 @@ public void setupRobotGuy(){ } public void setupSignpost(){ - Spatial signpost = assetManager.loadModel("Models/Sign Post/Sign Post.mesh.xml"); + Spatial signpost = assetManager.loadModel("Models/Sign Post/SignPost.gltf"); Material mat = assetManager.loadMaterial("Models/Sign Post/Sign Post.j3m"); signpost.setMaterial(mat); + signpost.rotate(0, FastMath.HALF_PI, 0); signpost.setLocalTranslation(12, 3.5f, 30); signpost.setLocalScale(4); diff --git a/jme3-examples/src/main/java/jme3test/export/TestAssetLinkNode.java b/jme3-examples/src/main/java/jme3test/export/TestAssetLinkNode.java index 42e291da25..1cbb46659d 100644 --- a/jme3-examples/src/main/java/jme3test/export/TestAssetLinkNode.java +++ b/jme3-examples/src/main/java/jme3test/export/TestAssetLinkNode.java @@ -67,7 +67,7 @@ public static void main(String[] args){ @Override public void simpleInitApp() { AssetLinkNode loaderNode=new AssetLinkNode(); - loaderNode.addLinkedChild(new ModelKey("Models/MonkeyHead/MonkeyHead.mesh.xml")); + loaderNode.addLinkedChild(new ModelKey("Models/MonkeyHead/MonkeyHead.gltf")); //load/attach the children (happens automatically on load) // loaderNode.attachLinkedChildren(assetManager); // rootNode.attachChild(loaderNode); diff --git a/jme3-examples/src/main/java/jme3test/games/CubeField.java b/jme3-examples/src/main/java/jme3test/games/CubeField.java index 21d060ce0a..8677be9326 100644 --- a/jme3-examples/src/main/java/jme3test/games/CubeField.java +++ b/jme3-examples/src/main/java/jme3test/games/CubeField.java @@ -51,6 +51,7 @@ import java.util.ArrayList; import java.util.logging.Level; import java.util.logging.Logger; +import jme3test.app.SpatialUtils; /** * @author Kyle "bonechilla" Williams @@ -276,7 +277,7 @@ else if(difficulty>lowCap){ for (int i = 0; i < cubeField.size(); i++){ //better way to check collision - Geometry playerModel = (Geometry) player.getChild(0); + Geometry playerModel = SpatialUtils.findFirstGeometry(player); Geometry cubeModel = cubeField.get(i); BoundingVolume pVol = playerModel.getWorldBound(); diff --git a/jme3-examples/src/main/java/jme3test/helloworld/HelloAnimation.java b/jme3-examples/src/main/java/jme3test/helloworld/HelloAnimation.java index 5af191916d..a67508bde1 100644 --- a/jme3-examples/src/main/java/jme3test/helloworld/HelloAnimation.java +++ b/jme3-examples/src/main/java/jme3test/helloworld/HelloAnimation.java @@ -70,8 +70,8 @@ public void simpleInitApp() { dl.setDirection(new Vector3f(-0.1f, -1f, -1).normalizeLocal()); rootNode.addLight(dl); - /* Load a model that contains animation */ - Node player = (Node) assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + /* Load a gltf model that contains animation */ + Node player = (Node) assetManager.loadModel("Models/Oto/Oto.gltf"); player.setLocalScale(0.5f); rootNode.attachChild(player); diff --git a/jme3-examples/src/main/java/jme3test/helloworld/HelloAssets.java b/jme3-examples/src/main/java/jme3test/helloworld/HelloAssets.java index d062ed8e98..8d46711c01 100644 --- a/jme3-examples/src/main/java/jme3test/helloworld/HelloAssets.java +++ b/jme3-examples/src/main/java/jme3test/helloworld/HelloAssets.java @@ -77,8 +77,8 @@ public void simpleInitApp() { helloText.setLocalTranslation(300, helloText.getLineHeight(), 0); guiNode.attachChild(helloText); - /* Load a Ninja model (OgreXML + material + texture from test_data) */ - Spatial ninja = assetManager.loadModel("Models/Ninja/Ninja.mesh.xml"); + /* Load a Ninja model (glTF format from test_data) */ + Spatial ninja = assetManager.loadModel("Models/Ninja/Ninja.gltf"); ninja.scale(0.05f, 0.05f, 0.05f); ninja.rotate(0.0f, -3.0f, 0.0f); ninja.setLocalTranslation(0.0f, -5.0f, -2.0f); diff --git a/jme3-examples/src/main/java/jme3test/helloworld/HelloPicking.java b/jme3-examples/src/main/java/jme3test/helloworld/HelloPicking.java index 90e187a9a9..27d1392921 100644 --- a/jme3-examples/src/main/java/jme3test/helloworld/HelloPicking.java +++ b/jme3-examples/src/main/java/jme3test/helloworld/HelloPicking.java @@ -169,7 +169,7 @@ private void initCrossHairs() { private Spatial makeCharacter() { // load a character from jme3-testdata - Spatial golem = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + Spatial golem = assetManager.loadModel("Models/Oto/Oto.gltf"); golem.scale(0.5f); golem.setLocalTranslation(-1.0f, -1.5f, -0.6f); diff --git a/jme3-examples/src/main/java/jme3test/light/TestIssue2209.java b/jme3-examples/src/main/java/jme3test/light/TestIssue2209.java index 4b0699de88..d829348b64 100644 --- a/jme3-examples/src/main/java/jme3test/light/TestIssue2209.java +++ b/jme3-examples/src/main/java/jme3test/light/TestIssue2209.java @@ -31,12 +31,14 @@ */ package jme3test.light; +import java.util.logging.Logger; + import com.jme3.app.SimpleApplication; import com.jme3.light.DirectionalLight; import com.jme3.renderer.queue.RenderQueue; import com.jme3.scene.Node; import com.jme3.shadow.DirectionalLightShadowRenderer; -import java.util.logging.Logger; + import jme3test.bullet.TestIssue1125; /** @@ -81,7 +83,7 @@ public void simpleInitApp() { dlsr.setLight(dl); viewPort.addProcessor(dlsr); - Node player = (Node) assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + Node player = (Node) assetManager.loadModel("Models/Oto/Oto.gltf"); player.setShadowMode(RenderQueue.ShadowMode.Cast); rootNode.attachChild(player); } diff --git a/jme3-examples/src/main/java/jme3test/light/TestManyLightsSingle.java b/jme3-examples/src/main/java/jme3test/light/TestManyLightsSingle.java index ca9365cb88..a9b7c1ab38 100644 --- a/jme3-examples/src/main/java/jme3test/light/TestManyLightsSingle.java +++ b/jme3-examples/src/main/java/jme3test/light/TestManyLightsSingle.java @@ -57,6 +57,7 @@ import com.jme3.scene.control.AbstractControl; import com.jme3.scene.shape.Box; import com.jme3.util.MaterialDebugAppState; +import jme3test.app.SpatialUtils; public class TestManyLightsSingle extends SimpleApplication { @@ -81,7 +82,7 @@ public void simpleInitApp() { rootNode.attachChild(scene); Node n = (Node) rootNode.getChild(0); final LightList lightList = n.getWorldLightList(); - final Geometry g = (Geometry) n.getChild("Grid-geom-1"); + final Geometry g = SpatialUtils.findGeometryByName(n, "Grid-geom-1"); g.getMaterial().setColor("Ambient", new ColorRGBA(0.2f, 0.2f, 0.2f, 1f)); diff --git a/jme3-examples/src/main/java/jme3test/light/TestShadowBug.java b/jme3-examples/src/main/java/jme3test/light/TestShadowBug.java index acf2d6df13..7ef40405bb 100644 --- a/jme3-examples/src/main/java/jme3test/light/TestShadowBug.java +++ b/jme3-examples/src/main/java/jme3test/light/TestShadowBug.java @@ -69,7 +69,7 @@ public void simpleInitApp() { characters.setShadowMode(ShadowMode.Cast); rootNode.attachChild(characters); - Spatial golem = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + Spatial golem = assetManager.loadModel("Models/Oto/Oto.gltf"); golem.scale(0.5f); golem.setLocalTranslation(200.0f, -6f, 200f); golem.setShadowMode(ShadowMode.CastAndReceive); diff --git a/jme3-examples/src/main/java/jme3test/light/TestSpotLight.java b/jme3-examples/src/main/java/jme3test/light/TestSpotLight.java index ed53b0de35..be6bdef414 100644 --- a/jme3-examples/src/main/java/jme3test/light/TestSpotLight.java +++ b/jme3-examples/src/main/java/jme3test/light/TestSpotLight.java @@ -36,7 +36,11 @@ import com.jme3.light.AmbientLight; import com.jme3.light.SpotLight; import com.jme3.material.Material; -import com.jme3.math.*; +import com.jme3.math.ColorRGBA; +import com.jme3.math.FastMath; +import com.jme3.math.Quaternion; +import com.jme3.math.Vector2f; +import com.jme3.math.Vector3f; import com.jme3.renderer.queue.RenderQueue.ShadowMode; import com.jme3.scene.Geometry; import com.jme3.scene.Spatial; @@ -112,7 +116,7 @@ public void setupFloor(){ public void setupSignpost(){ - Spatial signpost = assetManager.loadModel("Models/Sign Post/Sign Post.mesh.xml"); + Spatial signpost = assetManager.loadModel("Models/Sign Post/SignPost.gltf"); Material mat = assetManager.loadMaterial("Models/Sign Post/Sign Post.j3m"); // mat.setBoolean("VertexLighting", true); signpost.setMaterial(mat); diff --git a/jme3-examples/src/main/java/jme3test/light/TestSpotLightShadows.java b/jme3-examples/src/main/java/jme3test/light/TestSpotLightShadows.java index 11dd519ef3..b7f8c6c5bf 100644 --- a/jme3-examples/src/main/java/jme3test/light/TestSpotLightShadows.java +++ b/jme3-examples/src/main/java/jme3test/light/TestSpotLightShadows.java @@ -38,7 +38,11 @@ import com.jme3.light.AmbientLight; import com.jme3.light.SpotLight; import com.jme3.material.Material; -import com.jme3.math.*; +import com.jme3.math.ColorRGBA; +import com.jme3.math.FastMath; +import com.jme3.math.Quaternion; +import com.jme3.math.Vector2f; +import com.jme3.math.Vector3f; import com.jme3.post.FilterPostProcessor; import com.jme3.renderer.queue.RenderQueue.ShadowMode; import com.jme3.scene.Geometry; @@ -158,7 +162,7 @@ public void setupFloor() { } public void setupSignpost() { - Spatial signpost = assetManager.loadModel("Models/Sign Post/Sign Post.mesh.xml"); + Spatial signpost = assetManager.loadModel("Models/Sign Post/SignPost.gltf"); Material mat = assetManager.loadMaterial("Models/Sign Post/Sign Post.j3m"); // mat.setBoolean("VertexLighting", true); signpost.setMaterial(mat); diff --git a/jme3-examples/src/main/java/jme3test/material/TestBumpModel.java b/jme3-examples/src/main/java/jme3test/material/TestBumpModel.java index 645dd074f5..e1f6a360f0 100644 --- a/jme3-examples/src/main/java/jme3test/material/TestBumpModel.java +++ b/jme3-examples/src/main/java/jme3test/material/TestBumpModel.java @@ -40,7 +40,6 @@ import com.jme3.math.Vector3f; import com.jme3.scene.Geometry; import com.jme3.scene.Spatial; -import com.jme3.scene.plugins.ogre.OgreMeshKey; import com.jme3.scene.shape.Sphere; import com.jme3.util.mikktspace.MikktspaceTangentGenerator; @@ -57,7 +56,7 @@ public static void main(String[] args){ @Override public void simpleInitApp() { - Spatial signpost = assetManager.loadAsset(new OgreMeshKey("Models/Sign Post/Sign Post.mesh.xml")); + Spatial signpost = assetManager.loadModel("Models/Sign Post/SignPost.gltf"); signpost.setMaterial(assetManager.loadMaterial("Models/Sign Post/Sign Post.j3m")); MikktspaceTangentGenerator.generate(signpost); rootNode.attachChild(signpost); diff --git a/jme3-examples/src/main/java/jme3test/material/TestParallax.java b/jme3-examples/src/main/java/jme3test/material/TestParallax.java index 3715806f6d..8672c4b6fa 100644 --- a/jme3-examples/src/main/java/jme3test/material/TestParallax.java +++ b/jme3-examples/src/main/java/jme3test/material/TestParallax.java @@ -38,7 +38,11 @@ import com.jme3.input.controls.KeyTrigger; import com.jme3.light.DirectionalLight; import com.jme3.material.Material; -import com.jme3.math.*; +import com.jme3.math.ColorRGBA; +import com.jme3.math.FastMath; +import com.jme3.math.Quaternion; +import com.jme3.math.Vector2f; +import com.jme3.math.Vector3f; import com.jme3.renderer.queue.RenderQueue.ShadowMode; import com.jme3.scene.Geometry; import com.jme3.scene.Spatial; @@ -84,7 +88,7 @@ public void setupFloor() { } public void setupSignpost() { - Spatial signpost = assetManager.loadModel("Models/Sign Post/Sign Post.mesh.xml"); + Spatial signpost = assetManager.loadModel("Models/Sign Post/SignPost.gltf"); Material matSp = assetManager.loadMaterial("Models/Sign Post/Sign Post.j3m"); MikktspaceTangentGenerator.generate(signpost); signpost.setMaterial(matSp); diff --git a/jme3-examples/src/main/java/jme3test/material/TestParallaxPBR.java b/jme3-examples/src/main/java/jme3test/material/TestParallaxPBR.java index 038066c68b..e6d750fd4b 100644 --- a/jme3-examples/src/main/java/jme3test/material/TestParallaxPBR.java +++ b/jme3-examples/src/main/java/jme3test/material/TestParallaxPBR.java @@ -38,7 +38,11 @@ import com.jme3.input.controls.KeyTrigger; import com.jme3.light.DirectionalLight; import com.jme3.material.Material; -import com.jme3.math.*; +import com.jme3.math.ColorRGBA; +import com.jme3.math.FastMath; +import com.jme3.math.Quaternion; +import com.jme3.math.Vector2f; +import com.jme3.math.Vector3f; import com.jme3.renderer.queue.RenderQueue.ShadowMode; import com.jme3.scene.Geometry; import com.jme3.scene.Spatial; @@ -88,7 +92,7 @@ public void setupFloor() { } public void setupSignpost() { - Spatial signpost = assetManager.loadModel("Models/Sign Post/Sign Post.mesh.xml"); + Spatial signpost = assetManager.loadModel("Models/Sign Post/SignPost.gltf"); Material mat = assetManager.loadMaterial("Models/Sign Post/Sign Post.j3m"); MikktspaceTangentGenerator.generate(signpost); signpost.setMaterial(mat); diff --git a/jme3-examples/src/main/java/jme3test/model/TestHoverTank.java b/jme3-examples/src/main/java/jme3test/model/TestHoverTank.java index 648f7390df..329db735e6 100644 --- a/jme3-examples/src/main/java/jme3test/model/TestHoverTank.java +++ b/jme3-examples/src/main/java/jme3test/model/TestHoverTank.java @@ -42,9 +42,18 @@ import com.jme3.scene.Geometry; import com.jme3.scene.Node; import com.jme3.scene.control.LodControl; +import jme3test.app.SpatialUtils; import jme3test.post.BloomUI; +import jme3tools.optimize.LodGenerator; /** + * Demonstrates loading a glTF tank model with chase camera and bloom + * post-processing. + * + * Note: glTF models do not include LOD (Level of Detail) metadata by default. + * The legacy Ogre format supported pre-baked LOD levels, but glTF does not. For + * performance optimization with glTF models, consider using viewport-based + * culling or shader-based LOD techniques instead of mesh LOD. * * @author Nehon */ @@ -57,7 +66,10 @@ public static void main(String[] args) { @Override public void simpleInitApp() { - Node tank = (Node) assetManager.loadModel("Models/HoverTank/Tank2.mesh.xml"); + Node tank = (Node) assetManager.loadModel("Models/HoverTank/Tank2.gltf"); + + Geometry tankGeom = SpatialUtils.findFirstGeometry(tank); + generateLOD(tankGeom, 0.5f, 0.25f); // Generate LOD levels at 50% and 25% of original triangle count flyCam.setEnabled(false); ChaseCamera chaseCam = new ChaseCamera(cam, tank, inputManager); @@ -66,9 +78,7 @@ public void simpleInitApp() { chaseCam.setMinVerticalRotation(-FastMath.PI / 2); viewPort.setBackgroundColor(ColorRGBA.DarkGray); - Geometry tankGeom = (Geometry) tank.getChild(0); - LodControl control = new LodControl(); - tankGeom.addControl(control); + //Attach Lod Generation Here rootNode.attachChild(tank); Vector3f lightDir = new Vector3f(-0.8719428f, -0.46824604f, 0.14304268f); @@ -83,7 +93,6 @@ public void simpleInitApp() { rootNode.addLight(dl); rootNode.addLight(dl2); - rootNode.attachChild(tank); FilterPostProcessor fpp = new FilterPostProcessor(assetManager); BloomFilter bf = new BloomFilter(BloomFilter.GlowMode.Objects); @@ -93,4 +102,10 @@ public void simpleInitApp() { BloomUI bui = new BloomUI(inputManager, bf); viewPort.addProcessor(fpp); } + + private void generateLOD(Geometry geometry, float... reductionLevels) { + LodGenerator lodGenerator = new LodGenerator(geometry); + lodGenerator.bakeLods(LodGenerator.TriangleReductionMethod.PROPORTIONAL, reductionLevels); + geometry.addControl(new LodControl()); + } } diff --git a/jme3-examples/src/main/java/jme3test/model/TestMonkeyHead.java b/jme3-examples/src/main/java/jme3test/model/TestMonkeyHead.java index f97a71b3c0..50e3bb4606 100644 --- a/jme3-examples/src/main/java/jme3test/model/TestMonkeyHead.java +++ b/jme3-examples/src/main/java/jme3test/model/TestMonkeyHead.java @@ -57,7 +57,7 @@ public static void main(String[] args){ public void simpleInitApp() { viewPort.setBackgroundColor(ColorRGBA.DarkGray); - Spatial bumpy = assetManager.loadModel("Models/MonkeyHead/MonkeyHead.mesh.xml"); + Spatial bumpy = assetManager.loadModel("Models/MonkeyHead/MonkeyHead.gltf"); rootNode.attachChild(bumpy); lightMdl = new Geometry("Light", new Sphere(10, 10, 0.1f)); diff --git a/jme3-examples/src/main/java/jme3test/model/anim/TestIssue1395.java b/jme3-examples/src/main/java/jme3test/model/anim/TestIssue1395.java index f0e8bd3a6b..0da37eaeec 100644 --- a/jme3-examples/src/main/java/jme3test/model/anim/TestIssue1395.java +++ b/jme3-examples/src/main/java/jme3test/model/anim/TestIssue1395.java @@ -69,7 +69,7 @@ public void simpleInitApp() { dl.setColor(new ColorRGBA(1f, 1f, 1f, 1f)); rootNode.addLight(dl); - Spatial model = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + Spatial model = assetManager.loadModel("Models/Oto/Oto.gltf"); rootNode.attachChild(model); model.center(); diff --git a/jme3-examples/src/main/java/jme3test/model/anim/TestModelExportingCloning.java b/jme3-examples/src/main/java/jme3test/model/anim/TestModelExportingCloning.java index 7795753b9d..e3ce1be9d1 100644 --- a/jme3-examples/src/main/java/jme3test/model/anim/TestModelExportingCloning.java +++ b/jme3-examples/src/main/java/jme3test/model/anim/TestModelExportingCloning.java @@ -58,7 +58,7 @@ public void simpleInitApp() { AnimComposer composer; - Spatial originalModel = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + Spatial originalModel = assetManager.loadModel("Models/Oto/Oto.gltf"); composer = originalModel.getControl(AnimComposer.class); composer.setCurrentAction("Walk"); composer.setGlobalSpeed(1.5f); diff --git a/jme3-examples/src/main/java/jme3test/model/anim/TestOgreAnim.java b/jme3-examples/src/main/java/jme3test/model/anim/TestOgreAnim.java index fbd9524d80..1844932fca 100644 --- a/jme3-examples/src/main/java/jme3test/model/anim/TestOgreAnim.java +++ b/jme3-examples/src/main/java/jme3test/model/anim/TestOgreAnim.java @@ -74,7 +74,7 @@ public void simpleInitApp() { dl.setColor(new ColorRGBA(1f, 1f, 1f, 1.0f)); rootNode.addLight(dl); - Spatial model = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + Spatial model = assetManager.loadModel("Models/Oto/Oto.gltf"); model.center(); animComposer = model.getControl(AnimComposer.class); diff --git a/jme3-examples/src/main/java/jme3test/model/anim/TestOgreComplexAnim.java b/jme3-examples/src/main/java/jme3test/model/anim/TestOgreComplexAnim.java index aac2c1f970..6907f1138b 100644 --- a/jme3-examples/src/main/java/jme3test/model/anim/TestOgreComplexAnim.java +++ b/jme3-examples/src/main/java/jme3test/model/anim/TestOgreComplexAnim.java @@ -70,7 +70,7 @@ public void simpleInitApp() { dl.setColor(new ColorRGBA(1f, 1f, 1f, 1.0f)); rootNode.addLight(dl); - Node model = (Node) assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + Node model = (Node) assetManager.loadModel("Models/Oto/Oto.gltf"); skinningControl = model.getControl(SkinningControl.class); AnimComposer ac = model.getControl(AnimComposer.class); diff --git a/jme3-examples/src/main/java/jme3test/model/anim/TestSkeletonControlRefresh.java b/jme3-examples/src/main/java/jme3test/model/anim/TestSkeletonControlRefresh.java index 3761858166..6f2c42aa33 100644 --- a/jme3-examples/src/main/java/jme3test/model/anim/TestSkeletonControlRefresh.java +++ b/jme3-examples/src/main/java/jme3test/model/anim/TestSkeletonControlRefresh.java @@ -90,7 +90,7 @@ public void simpleInitApp() { for (int i = 0; i < SIZE; i++) { for (int j = 0; j < SIZE; j++) { - Spatial model = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + Spatial model = assetManager.loadModel("Models/Oto/Oto.gltf"); //setting a different material model.setMaterial(m.clone()); model.setLocalScale(0.1f); diff --git a/jme3-examples/src/main/java/jme3test/post/TestCartoonEdge.java b/jme3-examples/src/main/java/jme3test/post/TestCartoonEdge.java index ff6ab497f3..57a44bdd1b 100644 --- a/jme3-examples/src/main/java/jme3test/post/TestCartoonEdge.java +++ b/jme3-examples/src/main/java/jme3test/post/TestCartoonEdge.java @@ -103,7 +103,7 @@ public void setupLighting(){ } public void setupModel(){ - Spatial model = assetManager.loadModel("Models/MonkeyHead/MonkeyHead.mesh.xml"); + Spatial model = assetManager.loadModel("Models/MonkeyHead/MonkeyHead.gltf"); makeToonish(model); model.rotate(0, FastMath.PI, 0); // signpost.setLocalTranslation(12, 3.5f, 30); diff --git a/jme3-examples/src/main/java/jme3test/post/TestIssue1798.java b/jme3-examples/src/main/java/jme3test/post/TestIssue1798.java index 79605f29a8..5c26c2c931 100644 --- a/jme3-examples/src/main/java/jme3test/post/TestIssue1798.java +++ b/jme3-examples/src/main/java/jme3test/post/TestIssue1798.java @@ -128,7 +128,7 @@ private void setupLighting() { } private void setupModel() { - Spatial model = assetManager.loadModel("Models/MonkeyHead/MonkeyHead.mesh.xml"); + Spatial model = assetManager.loadModel("Models/MonkeyHead/MonkeyHead.gltf"); makeToonish(model); rootNode.attachChild(model); } diff --git a/jme3-examples/src/main/java/jme3test/post/TestLightScattering.java b/jme3-examples/src/main/java/jme3test/post/TestLightScattering.java index 83e0d464e8..c126c6e916 100644 --- a/jme3-examples/src/main/java/jme3test/post/TestLightScattering.java +++ b/jme3-examples/src/main/java/jme3test/post/TestLightScattering.java @@ -65,8 +65,8 @@ public void simpleInitApp() { //cam.setFrustumFar(1000); flyCam.setMoveSpeed(10); Material mat = assetManager.loadMaterial("Textures/Terrain/Rocky/Rocky.j3m"); - Spatial scene = assetManager.loadModel("Models/Terrain/Terrain.mesh.xml"); - MikktspaceTangentGenerator.generate(((Geometry) ((Node) scene).getChild(0)).getMesh()); + Spatial scene = assetManager.loadModel("Models/Terrain/Terrain.gltf"); + MikktspaceTangentGenerator.generate(scene); scene.setMaterial(mat); scene.setShadowMode(ShadowMode.CastAndReceive); scene.setLocalScale(400); diff --git a/jme3-examples/src/main/java/jme3test/post/TestPostFilters.java b/jme3-examples/src/main/java/jme3test/post/TestPostFilters.java index a46b14655c..1d54a94d6c 100644 --- a/jme3-examples/src/main/java/jme3test/post/TestPostFilters.java +++ b/jme3-examples/src/main/java/jme3test/post/TestPostFilters.java @@ -37,9 +37,14 @@ import com.jme3.input.controls.KeyTrigger; import com.jme3.light.DirectionalLight; import com.jme3.material.Material; -import com.jme3.math.*; +import com.jme3.math.ColorRGBA; +import com.jme3.math.FastMath; +import com.jme3.math.Quaternion; +import com.jme3.math.Vector2f; +import com.jme3.math.Vector3f; import com.jme3.post.FilterPostProcessor; -import com.jme3.post.filters.*; +import com.jme3.post.filters.FadeFilter; +import com.jme3.post.filters.RadialBlurFilter; import com.jme3.renderer.Caps; import com.jme3.renderer.queue.RenderQueue.ShadowMode; import com.jme3.scene.Geometry; @@ -120,7 +125,7 @@ public void setupFloor() { } public void setupSignpost() { - Spatial signpost = assetManager.loadModel("Models/Sign Post/Sign Post.mesh.xml"); + Spatial signpost = assetManager.loadModel("Models/Sign Post/SignPost.gltf"); Material mat = assetManager.loadMaterial("Models/Sign Post/Sign Post.j3m"); signpost.setMaterial(mat); signpost.rotate(0, FastMath.HALF_PI, 0); diff --git a/jme3-examples/src/main/java/jme3test/post/TestSSAO2.java b/jme3-examples/src/main/java/jme3test/post/TestSSAO2.java index 34fe62e27c..9bf1faa148 100644 --- a/jme3-examples/src/main/java/jme3test/post/TestSSAO2.java +++ b/jme3-examples/src/main/java/jme3test/post/TestSSAO2.java @@ -40,6 +40,7 @@ import com.jme3.post.ssao.SSAOFilter; import com.jme3.scene.*; import com.jme3.scene.shape.Box; +import jme3test.app.SpatialUtils; public class TestSSAO2 extends SimpleApplication { @@ -68,8 +69,8 @@ public void simpleInitApp() { floor.setMaterial(mat); rootNode.attachChild(floor); - Node teapotNode = (Node) assetManager.loadModel("Models/Teapot/Teapot.mesh.xml"); - Geometry teapot = (Geometry) teapotNode.getChild(0); + Node teapotNode = (Node) assetManager.loadModel("Models/Teapot/Teapot.gltf"); + Geometry teapot = SpatialUtils.findFirstGeometry(teapotNode); teapot.setMaterial(mat); // Sphere sph = new Sphere(16, 16, 4); // Geometry teapot = new Geometry("teapot", sph); diff --git a/jme3-examples/src/main/java/jme3test/post/TestSoftBloom.java b/jme3-examples/src/main/java/jme3test/post/TestSoftBloom.java index e277e8f943..034a07733d 100644 --- a/jme3-examples/src/main/java/jme3test/post/TestSoftBloom.java +++ b/jme3-examples/src/main/java/jme3test/post/TestSoftBloom.java @@ -120,7 +120,7 @@ public void simpleInitApp() { tankMat.setFloat("EmissivePower", emissionPower); tankMat.setFloat("EmissiveIntensity", 50); tankMat.setFloat("Metallic", .5f); - Spatial tank = assetManager.loadModel("Models/HoverTank/Tank2.mesh.xml"); + Spatial tank = assetManager.loadModel("Models/HoverTank/Tank2.gltf"); tank.setLocalTranslation(-10, 5, -10); tank.setMaterial(tankMat); rootNode.attachChild(tank); diff --git a/jme3-examples/src/main/java/jme3test/post/TestTransparentCartoonEdge.java b/jme3-examples/src/main/java/jme3test/post/TestTransparentCartoonEdge.java index 2e2c9874f7..e881cb7482 100644 --- a/jme3-examples/src/main/java/jme3test/post/TestTransparentCartoonEdge.java +++ b/jme3-examples/src/main/java/jme3test/post/TestTransparentCartoonEdge.java @@ -45,7 +45,7 @@ public void simpleInitApp() { rootNode.attachChild(geom); // create the geometry and attach it - Spatial teaGeom = assetManager.loadModel("Models/Tree/Tree.mesh.j3o"); + Spatial teaGeom = assetManager.loadModel("Models/Tree/Tree.gltf"); teaGeom.setQueueBucket(Bucket.Transparent); teaGeom.setShadowMode(ShadowMode.Cast); makeToonish(teaGeom); diff --git a/jme3-examples/src/main/java/jme3test/post/TestTransparentSSAO.java b/jme3-examples/src/main/java/jme3test/post/TestTransparentSSAO.java index 241796d444..8c5ac99fa7 100644 --- a/jme3-examples/src/main/java/jme3test/post/TestTransparentSSAO.java +++ b/jme3-examples/src/main/java/jme3test/post/TestTransparentSSAO.java @@ -46,7 +46,7 @@ public void simpleInitApp() { rootNode.attachChild(geom); // create the geometry and attach it - Spatial teaGeom = assetManager.loadModel("Models/Tree/Tree.mesh.j3o"); + Spatial teaGeom = assetManager.loadModel("Models/Tree/Tree.gltf"); teaGeom.setQueueBucket(Bucket.Transparent); teaGeom.setShadowMode(ShadowMode.Cast); diff --git a/jme3-examples/src/main/java/jme3test/renderer/TestInconsistentCompareDetection.java b/jme3-examples/src/main/java/jme3test/renderer/TestInconsistentCompareDetection.java index dbb2eaad8d..16bcb5914d 100644 --- a/jme3-examples/src/main/java/jme3test/renderer/TestInconsistentCompareDetection.java +++ b/jme3-examples/src/main/java/jme3test/renderer/TestInconsistentCompareDetection.java @@ -42,10 +42,12 @@ import com.jme3.scene.Spatial; import com.jme3.scene.shape.Box; import com.jme3.texture.Texture; +import jme3test.app.SpatialUtils; /** - * Changes a material's texture from another thread while it is rendered. - * This should trigger the sorting function's inconsistent compare detection. + * Demonstrates thread-safe scene modifications using enqueue(). + * Changes a material's texture from another thread while it is rendered, + * properly synchronizing via the render thread callback. * * @author Kirill Vainer */ @@ -99,17 +101,27 @@ public void run() { } catch (InterruptedException ex) { } - // begin randomly changing textures after 1 sec. + // Begin safely changing textures after 1 sec using enqueue() while (true) { for (Spatial child : rootNode.getChildren()) { - Geometry g = (Geometry) (((Node)child).getChild(0)); - Material m = g.getMaterial(); - Texture curTex = m.getTextureParam("ColorMap").getTextureValue(); - if (curTex == t1) { - m.setTexture("ColorMap", t2); - } else { - m.setTexture("ColorMap", t1); - } + Geometry g = SpatialUtils.findFirstGeometry((Node) child); + + // Enqueue the material modification to run on the render thread + enqueue(() -> { + Material mat = g.getMaterial(); + Texture curTex = mat.getTextureParam("ColorMap").getTextureValue(); + if (curTex == t1) { + mat.setTexture("ColorMap", t2); + } else { + mat.setTexture("ColorMap", t1); + } + }); + } + + // Prevent queueing too many tasks too quickly + try { + Thread.sleep(100); + } catch (InterruptedException ex) { } } } @@ -117,5 +129,4 @@ public void run() { evilThread.setDaemon(true); evilThread.start(); } -} - +} \ No newline at end of file diff --git a/jme3-examples/src/main/java/jme3test/stress/TestBatchLod.java b/jme3-examples/src/main/java/jme3test/stress/TestBatchLod.java index 717ed6d8f6..256a47840a 100644 --- a/jme3-examples/src/main/java/jme3test/stress/TestBatchLod.java +++ b/jme3-examples/src/main/java/jme3test/stress/TestBatchLod.java @@ -38,8 +38,11 @@ import com.jme3.math.Vector3f; import com.jme3.scene.Geometry; import com.jme3.scene.Node; +import com.jme3.scene.Spatial; import com.jme3.scene.control.LodControl; +import jme3test.app.SpatialUtils; import jme3tools.optimize.GeometryBatchFactory; +import jme3tools.optimize.LodGenerator; public class TestBatchLod extends SimpleApplication { @@ -56,8 +59,13 @@ public void simpleInitApp() { dl.setDirection(new Vector3f(-1, -1, -1).normalizeLocal()); rootNode.addLight(dl); - Node teapotNode = (Node) assetManager.loadModel("Models/Teapot/Teapot.mesh.xml"); - Geometry teapot = (Geometry) teapotNode.getChild(0); + Node teapotNode = (Node) assetManager.loadModel("Models/Teapot/Teapot.gltf"); + Geometry teapot = SpatialUtils.findFirstGeometry(teapotNode); + + // Generate LOD if not already present (glTF models typically don't have LOD data) + if (teapot.getMesh().getNumLodLevels() == 0) { + generateLOD(teapot, 0.75f, 0.5f, 0.25f); + } Material mat = new Material(assetManager, "Common/MatDefs/Light/Lighting.j3md"); mat.setFloat("Shininess", 16f); @@ -79,10 +87,25 @@ public void simpleInitApp() { } } GeometryBatchFactory.optimize(rootNode, true); - LodControl control = new LodControl(); - rootNode.getChild(0).addControl(control); + Geometry batched = (Geometry) rootNode.getChild(0); + if (batched.getMesh().getNumLodLevels() > 0) { + batched.addControl(new LodControl()); + } cam.setLocation(new Vector3f(-1.0748308f, 1.35778f, -1.5380064f)); cam.setRotation(new Quaternion(0.18343268f, 0.34531063f, -0.069015436f, 0.9177962f)); } -} + + /** + * Generate LOD levels for a geometry if it doesn't already have them. + * glTF models typically don't include LOD data, so this generates them on-the-fly. + * + * @param geometry the geometry to generate LODs for + * @param reductionLevels proportional reduction values (0-1): higher % keeps more vertices + */ + private void generateLOD(Geometry geometry, float... reductionLevels) { + LodGenerator lodGenerator = new LodGenerator(geometry); + lodGenerator.bakeLods(LodGenerator.TriangleReductionMethod.PROPORTIONAL, reductionLevels); + geometry.addControl(new LodControl()); + } +} \ No newline at end of file diff --git a/jme3-examples/src/main/java/jme3test/stress/TestLodStress.java b/jme3-examples/src/main/java/jme3test/stress/TestLodStress.java index a02616680f..c91bbcae6e 100644 --- a/jme3-examples/src/main/java/jme3test/stress/TestLodStress.java +++ b/jme3-examples/src/main/java/jme3test/stress/TestLodStress.java @@ -40,7 +40,15 @@ import com.jme3.scene.Geometry; import com.jme3.scene.Node; import com.jme3.scene.control.LodControl; +import jme3test.app.SpatialUtils; +import jme3tools.optimize.LodGenerator; +/** + * Stress test that clones many geometries with LOD support. + * LOD (Level of Detail) is generated programmatically on model load for performance optimization. + * glTF meshes typically do not include LOD data by default, so LOD levels are created dynamically + * using the LodGenerator class. + */ public class TestLodStress extends SimpleApplication { public static void main(String[] args){ @@ -56,8 +64,13 @@ public void simpleInitApp() { dl.setDirection(new Vector3f(-1,-1,-1).normalizeLocal()); rootNode.addLight(dl); - Node teapotNode = (Node) assetManager.loadModel("Models/Teapot/Teapot.mesh.xml"); - Geometry teapot = (Geometry) teapotNode.getChild(0); + Node teapotNode = (Node) assetManager.loadModel("Models/Teapot/Teapot.gltf"); + Geometry teapot = SpatialUtils.findFirstGeometry(teapotNode); + + // Generate LOD if not already present (glTF models typically don't have LOD data) + if (teapot.getMesh().getNumLodLevels() == 0) { + generateLOD(teapot, 0.75f, 0.5f, 0.25f); + } // Sphere sph = new Sphere(16, 16, 4); // Geometry teapot = new Geometry("teapot", sph); @@ -78,8 +91,6 @@ public void simpleInitApp() { clonePot.setLocalTranslation(x * .5f, 0, y * .5f); clonePot.setLocalScale(.15f); - LodControl control = new LodControl(); - clonePot.addControl(control); rootNode.attachChild(clonePot); } } @@ -88,4 +99,17 @@ public void simpleInitApp() { cam.setRotation(new Quaternion(-0.083419204f, 0.90370524f, -0.20599906f, -0.36595422f)); } -} + /** + * Generate LOD levels for a geometry if it doesn't already have them. + * glTF models typically don't include LOD data, so this generates them on-the-fly. + * + * @param geometry the geometry to generate LODs for + * @param reductionLevels proportional reduction values (0-1): higher % keeps more vertices + */ + private void generateLOD(Geometry geometry, float... reductionLevels) { + LodGenerator lodGenerator = new LodGenerator(geometry); + lodGenerator.bakeLods(LodGenerator.TriangleReductionMethod.PROPORTIONAL, reductionLevels); + geometry.addControl(new LodControl()); + } + +} \ No newline at end of file diff --git a/jme3-examples/src/main/java/jme3test/tools/TestSaveGame.java b/jme3-examples/src/main/java/jme3test/tools/TestSaveGame.java index 2c54a5bdc9..1e7bcdbcf7 100644 --- a/jme3-examples/src/main/java/jme3test/tools/TestSaveGame.java +++ b/jme3-examples/src/main/java/jme3test/tools/TestSaveGame.java @@ -60,7 +60,7 @@ public void simpleInitApp() { myPlayer.setUserData("points", 0); // Attach the model to the Node. - Spatial model = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + Spatial model = assetManager.loadModel("Models/Oto/Oto.gltf"); myPlayer.attachChild(model); // Before saving the game, detach the model since it doesn't need to be saved. diff --git a/jme3-examples/src/main/java/jme3test/tools/TestTextureAtlas.java b/jme3-examples/src/main/java/jme3test/tools/TestTextureAtlas.java index 5c3d6c98cb..c98c1e9dc0 100644 --- a/jme3-examples/src/main/java/jme3test/tools/TestTextureAtlas.java +++ b/jme3-examples/src/main/java/jme3test/tools/TestTextureAtlas.java @@ -42,8 +42,11 @@ import com.jme3.scene.shape.Quad; import jme3tools.optimize.TextureAtlas; +/** + * Demonstrates creating a texture atlas from multiple glTF models. + * All models have been converted from legacy formats to glTF. + */ public class TestTextureAtlas extends SimpleApplication { - public static void main(String[] args) { TestTextureAtlas app = new TestTextureAtlas(); app.start(); @@ -53,38 +56,44 @@ public static void main(String[] args) { public void simpleInitApp() { flyCam.setMoveSpeed(50); Node scene = new Node("Scene"); - Spatial obj1 = assetManager.loadModel("Models/Ferrari/Car.scene"); + + Spatial obj1 = assetManager.loadModel("Models/Ferrari/CarScene.gltf"); obj1.setLocalTranslation(-4, 0, 0); - Spatial obj2 = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + + Spatial obj2 = assetManager.loadModel("Models/Oto/Oto.gltf"); obj2.setLocalTranslation(-2, 0, 0); - Spatial obj3 = assetManager.loadModel("Models/Ninja/Ninja.mesh.xml"); - obj3.setLocalTranslation(-0, 0, 0); - Spatial obj4 = assetManager.loadModel("Models/Sinbad/Sinbad.mesh.xml"); + + Spatial obj3 = assetManager.loadModel("Models/Ninja/Ninja.gltf"); + obj3.setLocalTranslation(0, 0, 0); + +Spatial obj4 = assetManager.loadModel("Models/Sinbad/Sinbad.gltf"); obj4.setLocalTranslation(2, 0, 0); - Spatial obj5 = assetManager.loadModel("Models/Tree/Tree.mesh.j3o"); + + Spatial obj5 = assetManager.loadModel("Models/Tree/Tree.gltf"); obj5.setLocalTranslation(4, 0, 0); + scene.attachChild(obj1); scene.attachChild(obj2); scene.attachChild(obj3); scene.attachChild(obj4); scene.attachChild(obj5); - + Geometry geom = TextureAtlas.makeAtlasBatch(scene, assetManager, 2048); - + AmbientLight al = new AmbientLight(); rootNode.addLight(al); - + DirectionalLight sun = new DirectionalLight(); sun.setDirection(new Vector3f(0.69077975f, -0.6277887f, -0.35875428f).normalizeLocal()); sun.setColor(ColorRGBA.White.clone().multLocal(2)); rootNode.addLight(sun); - + rootNode.attachChild(geom); - - //quad to display material + + // Quad to display atlased material Geometry box = new Geometry("displayquad", new Quad(4, 4)); box.setMaterial(geom.getMaterial()); box.setLocalTranslation(0, 1, 3); rootNode.attachChild(box); } -} +} \ No newline at end of file diff --git a/jme3-examples/src/main/java/jme3test/water/TestSimpleWater.java b/jme3-examples/src/main/java/jme3test/water/TestSimpleWater.java index 5bc6604a91..249c4122d4 100644 --- a/jme3-examples/src/main/java/jme3test/water/TestSimpleWater.java +++ b/jme3-examples/src/main/java/jme3test/water/TestSimpleWater.java @@ -81,7 +81,7 @@ public void simpleInitApp() { //create water quad //waterPlane = waterProcessor.createWaterGeometry(100, 100); - waterPlane = assetManager.loadModel("Models/WaterTest/WaterTest.mesh.xml"); + waterPlane = assetManager.loadModel("Models/WaterTest/WaterTest.gltf"); waterPlane.setMaterial(waterProcessor.getMaterial()); waterPlane.setLocalScale(40); waterPlane.setLocalTranslation(-5, 0, 5); diff --git a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MaterialLoader.java b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MaterialLoader.java index 5c0b33ed63..5cedeeb47a 100644 --- a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MaterialLoader.java +++ b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MaterialLoader.java @@ -53,6 +53,15 @@ import java.util.logging.Level; import java.util.logging.Logger; +/** + * Loads Ogre3D .material material files into jMonkey. + * + * @deprecated The Ogre format is outdated and no longer maintained. + * Use glTF (.gltf/.glb) or J3O format instead. + * See the jMonkeyEngine Wiki + * for migration guidance. + */ +@Deprecated public class MaterialLoader implements AssetLoader { private static final Logger logger = Logger.getLogger(MaterialLoader.class.getName()); diff --git a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MeshAnimationLoader.java b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MeshAnimationLoader.java index 3d198fd857..63b723d619 100644 --- a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MeshAnimationLoader.java +++ b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MeshAnimationLoader.java @@ -46,7 +46,13 @@ /** * Utility class used by OgreLoader to load poses and mesh animations. + * + * @deprecated The Ogre format is outdated and no longer maintained. + * Use glTF (.gltf/.glb) or J3O format instead. + * See the jMonkeyEngine Wiki + * for migration guidance. */ +@Deprecated public class MeshAnimationLoader { // public static void loadMeshAnimations(Node animationsNode, List poseList, OgreMesh sharedgeom, List submeshes, Map animations){ diff --git a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MeshLoader.java b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MeshLoader.java index 4cb7967d94..ae2933f4c9 100644 --- a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MeshLoader.java +++ b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/MeshLoader.java @@ -59,7 +59,13 @@ /** * Loads Ogre3D mesh.xml files. + * + * @deprecated The Ogre format is outdated and no longer maintained. + * Use glTF (.gltf/.glb) or J3O format instead. + * See the jMonkeyEngine Wiki + * for migration guidance. */ +@Deprecated public class MeshLoader extends DefaultHandler implements AssetLoader { private static final Logger logger = Logger.getLogger(MeshLoader.class.getName()); diff --git a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/OgreMeshKey.java b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/OgreMeshKey.java index d0458899b2..59bdd8c2ae 100644 --- a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/OgreMeshKey.java +++ b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/OgreMeshKey.java @@ -40,8 +40,14 @@ * are retrieved, instead of loading the material file as the same * name as the model (the default). * + * @deprecated The Ogre format is outdated and no longer maintained. + * Use glTF (.gltf/.glb) or J3O format instead. + * See the jMonkeyEngine Wiki + * for migration guidance. + * * @author Kirill Vainer */ +@Deprecated public class OgreMeshKey extends ModelKey { private MaterialList materialList; diff --git a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneLoader.java b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneLoader.java index 01b2f52b98..fad1aeec6b 100644 --- a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneLoader.java +++ b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneLoader.java @@ -63,6 +63,15 @@ import org.xml.sax.XMLReader; import org.xml.sax.helpers.DefaultHandler; +/** + * Loads Ogre3D .scene.xml scene files into jMonkey. + * + * @deprecated The Ogre format is outdated and no longer maintained. + * Use glTF (.gltf/.glb) or J3O format instead. + * See the jMonkeyEngine Wiki + * for migration guidance. + */ +@Deprecated public class SceneLoader extends DefaultHandler implements AssetLoader { private static final int DEFAULT_CAM_WIDTH = 640; diff --git a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneMaterialLoader.java b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneMaterialLoader.java index 542e99c740..35db4767a5 100644 --- a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneMaterialLoader.java +++ b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneMaterialLoader.java @@ -56,8 +56,14 @@ * used by the SceneLoader doesn't support reading bottom XML nodes * before reading the top nodes. * + * @deprecated The Ogre format is outdated and no longer maintained. + * Use glTF (.gltf/.glb) or J3O format instead. + * See the jMonkeyEngine Wiki + * for migration guidance. + * * @author Kirill Vainer */ +@Deprecated class SceneMaterialLoader extends DefaultHandler { private static final Logger logger = Logger.getLogger(SceneMaterialLoader.class.getName()); diff --git a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneMeshLoader.java b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneMeshLoader.java index 5ea589d249..72ea371882 100644 --- a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneMeshLoader.java +++ b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SceneMeshLoader.java @@ -8,6 +8,15 @@ import com.jme3.asset.AssetKey; import com.jme3.scene.Spatial; +/** + * Caches loaded Ogre scene mesh data to avoid re-parsing. + * + * @deprecated The Ogre format is outdated and no longer maintained. + * Use glTF (.gltf/.glb) or J3O format instead. + * See the jMonkeyEngine Wiki + * for migration guidance. + */ +@Deprecated public class SceneMeshLoader extends MeshLoader{ private Map cache=new HashMap<>(); @Override diff --git a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SkeletonLoader.java b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SkeletonLoader.java index 728580523a..3abcd49f2b 100644 --- a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SkeletonLoader.java +++ b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/SkeletonLoader.java @@ -47,6 +47,15 @@ import java.util.*; import java.util.logging.Logger; +/** + * Loads Ogre3D .skeleton.xml skeleton animations into jMonkey. + * + * @deprecated The Ogre format is outdated and no longer maintained. + * Use glTF (.gltf/.glb) or J3O format instead. + * See the jMonkeyEngine Wiki + * for migration guidance. + */ +@Deprecated public class SkeletonLoader extends DefaultHandler implements AssetLoader { private static final Logger logger = Logger.getLogger(SceneLoader.class.getName()); diff --git a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/matext/OgreMaterialKey.java b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/matext/OgreMaterialKey.java index c300783eff..55b0a9d4f1 100644 --- a/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/matext/OgreMaterialKey.java +++ b/jme3-plugins/src/ogre/java/com/jme3/scene/plugins/ogre/matext/OgreMaterialKey.java @@ -36,8 +36,14 @@ /** * OgreMaterialKey allows specifying material extensions, which map - * from Ogre3D base materials to jME3 materials + * from Ogre3D base materials to jME3 materials. + * + * @deprecated The Ogre format is outdated and no longer maintained. + * Use glTF (.gltf/.glb) or J3O format instead. + * See the jMonkeyEngine Wiki + * for migration guidance. */ +@Deprecated public class OgreMaterialKey extends AssetKey { private MaterialExtensionSet matExts; diff --git a/jme3-screenshot-tests/src/test/java/org/jmonkeyengine/screenshottests/export/TestOgreConvert.java b/jme3-screenshot-tests/src/test/java/org/jmonkeyengine/screenshottests/export/TestOgreConvert.java index f076902f2d..8ab72ce397 100644 --- a/jme3-screenshot-tests/src/test/java/org/jmonkeyengine/screenshottests/export/TestOgreConvert.java +++ b/jme3-screenshot-tests/src/test/java/org/jmonkeyengine/screenshottests/export/TestOgreConvert.java @@ -52,15 +52,27 @@ import java.io.IOException; /** + * Tests binary export/import of glTF models with animations. + * + * This test loads a glTF model (which has replaced the legacy Ogre mesh.xml + * format), converts it to jME3's binary format, and then reloads it. The model + * is animated, and the animation is played back to verify the serialization + * preserves animation data. + * + * Note: This test now uses glTF format models as the Ogre mesh.xml loader is + * deprecated. + * * @author Richard Tingle (aka richtea) */ public class TestOgreConvert extends ScreenshotTestBase{ /** - * This tests loads an Ogre model, converts it to binary, and then reloads it. + * This test loads a glTF model, converts it to binary jME3 format, and then + * reloads it. *

* Note that the model is animated and the animation is played back. That is why - * two screenshots are taken + * two screenshots are taken (frame 1 and frame 5 to show animation + * progression). *

*/ @Test @@ -73,7 +85,9 @@ protected void initialize(Application app){ AssetManager assetManager = app.getAssetManager(); Node rootNode = ((SimpleApplication)app).getRootNode(); Camera cam = app.getCamera(); - Spatial ogreModel = assetManager.loadModel("Models/Oto/Oto.mesh.xml"); + + // Load glTF model (Ogre mesh.xml format is deprecated) + Spatial ogreModel = assetManager.loadModel("Models/Oto/Oto.gltf"); DirectionalLight dl = new DirectionalLight(); dl.setColor(ColorRGBA.White); @@ -92,6 +106,7 @@ protected void initialize(Application app){ imp.setAssetManager(assetManager); Node ogreModelReloaded = (Node) imp.load(bais, null, null); + // Verify AnimComposer is preserved through serialization AnimComposer composer = ogreModelReloaded.getControl(AnimComposer.class); composer.setCurrentAction("Walk"); diff --git a/jme3-screenshot-tests/src/test/java/org/jmonkeyengine/screenshottests/post/TestLightScattering.java b/jme3-screenshot-tests/src/test/java/org/jmonkeyengine/screenshottests/post/TestLightScattering.java index 5353226f90..988fe13a14 100644 --- a/jme3-screenshot-tests/src/test/java/org/jmonkeyengine/screenshottests/post/TestLightScattering.java +++ b/jme3-screenshot-tests/src/test/java/org/jmonkeyengine/screenshottests/post/TestLightScattering.java @@ -45,18 +45,23 @@ import com.jme3.scene.Geometry; import com.jme3.scene.Node; import com.jme3.scene.Spatial; +import com.jme3.scene.shape.Box; import com.jme3.util.SkyFactory; -import com.jme3.util.mikktspace.MikktspaceTangentGenerator; import org.jmonkeyengine.screenshottests.testframework.ScreenshotTestBase; import org.junit.jupiter.api.Test; /** * Screenshot test for the LightScattering filter. - * - *

This test creates a scene with a terrain model and a sky, with a light scattering - * (god rays) effect applied. The effect simulates light rays scattering through the atmosphere - * from a bright light source (like the sun). - * + * + *

+ * This test creates a scene with geometric models and a sky, with a light + * scattering (god rays) effect applied. The effect simulates light rays + * scattering through the atmosphere from a bright light source (like the sun). + * + *

+ * Note: The terrain model has been replaced with glTF-compatible models as the + * Ogre mesh.xml loader is deprecated. + * * @author Richard Tingle (screenshot test adaptation) */ public class TestLightScattering extends ScreenshotTestBase { @@ -75,24 +80,37 @@ protected void initialize(Application app) { simpleApplication.getCamera().setLocation(new Vector3f(55.35316f, -0.27061665f, 27.092093f)); simpleApplication.getCamera().setRotation(new Quaternion(0.010414706f, 0.9874893f, 0.13880467f, -0.07409228f)); + // Create a simple ground plane to replace the terrain mesh + // (Ogre terrain.mesh.xml is deprecated) Material mat = simpleApplication.getAssetManager().loadMaterial("Textures/Terrain/Rocky/Rocky.j3m"); - Spatial scene = simpleApplication.getAssetManager().loadModel("Models/Terrain/Terrain.mesh.xml"); - MikktspaceTangentGenerator.generate(((Geometry) ((Node) scene).getChild(0)).getMesh()); - scene.setMaterial(mat); - scene.setShadowMode(ShadowMode.CastAndReceive); - scene.setLocalScale(400); - scene.setLocalTranslation(0, -10, -120); - rootNode.attachChild(scene); + Box groundBox = new Box(200, 10, 200); + Geometry ground = new Geometry("ground", groundBox); + ground.setMaterial(mat); + ground.setShadowMode(ShadowMode.CastAndReceive); + ground.setLocalTranslation(0, -10, -120); + rootNode.attachChild(ground); + + // Load a glTF model to add visual interest to the scene + try { + Spatial model = simpleApplication.getAssetManager().loadModel("Models/Teapot/Teapot.gltf"); + model.setLocalScale(5); + model.setLocalTranslation(10, 5, 0); + model.setShadowMode(ShadowMode.CastAndReceive); + rootNode.attachChild(model); + } catch (Exception e) { + // If model fails to load, continue with just the ground + System.err.println("Warning: Could not load Teapot model: " + e.getMessage()); + } rootNode.attachChild(SkyFactory.createSky(simpleApplication.getAssetManager(), - "Textures/Sky/Bright/FullskiesBlueClear03.dds", + "Textures/Sky/Bright/FullskiesBlueClear03.dds", SkyFactory.EnvMapType.CubeMap)); DirectionalLight sun = new DirectionalLight(); Vector3f lightDir = new Vector3f(-0.12f, -0.3729129f, 0.74847335f); sun.setDirection(lightDir); sun.setColor(ColorRGBA.White.clone().multLocal(2)); - scene.addLight(sun); + rootNode.addLight(sun); FilterPostProcessor fpp = new FilterPostProcessor(simpleApplication.getAssetManager()); @@ -103,7 +121,7 @@ protected void initialize(Application app) { filter.setBlurStart(0.02f); filter.setBlurWidth(0.9f); filter.setLightPosition(lightPos); - + fpp.addFilter(filter); simpleApplication.getViewPort().addProcessor(fpp); } @@ -120,7 +138,7 @@ protected void onEnable() { protected void onDisable() { } }) - .setFramesToTakeScreenshotsOn(1) - .run(); + .setFramesToTakeScreenshotsOn(1) + .run(); } -} \ No newline at end of file +} diff --git a/jme3-testdata/src/main/resources/Models/Elephant/Elephant.bin b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.bin new file mode 100644 index 0000000000..f17ce3bd4a Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Elephant/Elephant.gltf b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.gltf new file mode 100644 index 0000000000..70a0f23f10 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.gltf @@ -0,0 +1,10571 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 63, + 64 + ] + } + ], + "nodes":[ + { + "name":"joint6", + "rotation":[ + 0.20124821364879608, + 0.20124763250350952, + -0.6778655648231506, + 0.6778619289398193 + ], + "scale":[ + 0.9999998807907104, + 1, + 0.9999998807907104 + ], + "translation":[ + 0.1096099317073822, + -11.030462265014648, + 8.436136245727539 + ] + }, + { + "name":"joint16", + "rotation":[ + 0.08639717847108841, + -0.08639699220657349, + 0.7018104195594788, + 0.7018071413040161 + ], + "scale":[ + 0.9999999403953552, + 1, + 1 + ], + "translation":[ + -1.7927486896514893, + 2.405350685119629, + -3.304959535598755 + ] + }, + { + "children":[ + 1 + ], + "name":"joint15", + "rotation":[ + 0.24593396484851837, + -9.354898793390021e-07, + -2.9246717758724117e-07, + 0.9692866206169128 + ], + "translation":[ + 2.4628443717956543, + -3.1253538131713867, + 1.8910939693450928 + ] + }, + { + "children":[ + 2 + ], + "name":"joint14", + "rotation":[ + 0.22698377072811127, + 3.177296719059086e-07, + 3.5188773495065107e-07, + 0.9738985300064087 + ], + "translation":[ + 4.752876281738281, + 0.5634863972663879, + 2.1006503105163574 + ] + }, + { + "children":[ + 3 + ], + "name":"joint13", + "rotation":[ + 0.10038621723651886, + -2.6240174477720757e-09, + -9.19561387036083e-08, + 0.9949485659599304 + ], + "translation":[ + 5.806469440460205, + -7.634252548217773, + -0.6029475331306458 + ] + }, + { + "children":[ + 4 + ], + "name":"joint12", + "rotation":[ + 0.0709444135427475, + -1.3381830399339378e-07, + 6.5095129286874e-08, + 0.9974802732467651 + ], + "translation":[ + 4.914907455444336, + 5.985100746154785, + 5.9177374839782715 + ] + }, + { + "children":[ + 5 + ], + "name":"joint11", + "rotation":[ + -3.285369842842556e-08, + 0.9959338307380676, + -0.09008780121803284, + 9.062629260370159e-07 + ], + "scale":[ + 1, + 1, + 0.9999999403953552 + ], + "translation":[ + -4.420222282409668, + 6.6378583908081055, + -7.102221965789795 + ] + }, + { + "children":[ + 6 + ], + "name":"joint10", + "rotation":[ + -0.0627831369638443, + 5.3426703061632e-09, + 4.160777677952865e-08, + 0.9980272054672241 + ], + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + -0.7383284568786621, + 9.803300857543945, + -0.6311218738555908 + ] + }, + { + "children":[ + 7 + ], + "name":"joint9", + "rotation":[ + -0.15096084773540497, + 4.102896244972953e-09, + 2.3855731612343334e-08, + 0.9885396957397461 + ], + "scale":[ + 1, + 1.0000001192092896, + 1 + ], + "translation":[ + -5.3164567947387695, + -3.0462722778320312, + -9.535523414611816 + ] + }, + { + "children":[ + 8 + ], + "name":"joint8", + "rotation":[ + -0.06752945482730865, + -3.6983333728812795e-08, + -3.4391881342799024e-08, + 0.9977172613143921 + ], + "translation":[ + -0.9541000723838806, + 9.601665496826172, + -5.539040565490723 + ] + }, + { + "children":[ + 9 + ], + "name":"Ruessel", + "rotation":[ + -0.13808898627758026, + 1.4996245356613258e-09, + 2.142751931444309e-08, + 0.990419864654541 + ], + "scale":[ + 1, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation":[ + -4.841660976409912, + -16.134361267089844, + 0.6549422740936279 + ] + }, + { + "name":"Ear_M5_R", + "rotation":[ + 1.9597770517520985e-07, + 5.619573784088061e-08, + 0.5569758415222168, + 0.8305286765098572 + ], + "scale":[ + 1, + 1.0000001192092896, + 1 + ], + "translation":[ + -4.649838447570801, + 4.110822677612305, + -3.437661647796631 + ] + }, + { + "children":[ + 11 + ], + "name":"Ear_M4_R", + "rotation":[ + 8.438204801564098e-09, + 2.6546365461399546e-07, + -0.1422274261713028, + 0.9898340106010437 + ], + "translation":[ + 2.6033833026885986, + -7.033299446105957, + -0.8150521516799927 + ] + }, + { + "children":[ + 12 + ], + "name":"Ear_M3_R", + "rotation":[ + -3.4640873991520493e-07, + -9.373860621053609e-07, + -0.02594597078859806, + 0.9996633529663086 + ], + "translation":[ + -2.0972540378570557, + 5.698035717010498, + -0.3174649775028229 + ] + }, + { + "children":[ + 13 + ], + "name":"Ear_M2_R", + "rotation":[ + 1.913555252031074e-07, + 4.2286981738470786e-07, + -0.08013544976711273, + 0.996783971786499 + ], + "scale":[ + 0.9999999403953552, + 1, + 1 + ], + "translation":[ + 1.4690767526626587, + -5.449380874633789, + 1.5833076238632202 + ] + }, + { + "children":[ + 14 + ], + "name":"Ear_M1_R", + "rotation":[ + 1.6843264916133194e-07, + 2.9453539696078224e-07, + -0.15102143585681915, + 0.9885304570198059 + ], + "translation":[ + 1.9886164665222168, + 0.9742512702941895, + 5.945512771606445 + ] + }, + { + "name":"Ear_T3_R", + "rotation":[ + 1.672585909773261e-07, + 1.993406044675794e-07, + -0.058781567960977554, + 0.9982709288597107 + ], + "scale":[ + 0.9999999403953552, + 0.9999999403953552, + 1 + ], + "translation":[ + 4.203305244445801, + 1.8560267686843872, + 7.053654193878174 + ] + }, + { + "children":[ + 16 + ], + "name":"Ear_T2_R", + "rotation":[ + 4.574109091493028e-09, + -1.0381428694472561e-07, + -0.29517754912376404, + 0.9554424285888672 + ], + "scale":[ + 0.9999998807907104, + 0.9999999403953552, + 1 + ], + "translation":[ + -5.134706020355225, + -4.826007843017578, + -5.5213117599487305 + ] + }, + { + "children":[ + 17 + ], + "name":"Ear_T1_R", + "rotation":[ + 5.426790039564366e-07, + 4.882753614765534e-07, + 0.35083022713661194, + 0.9364390969276428 + ], + "scale":[ + 1, + 1.0000001192092896, + 1 + ], + "translation":[ + 6.813630104064941, + -3.4125821590423584, + 5.702282905578613 + ] + }, + { + "name":"Ear_B3_R", + "rotation":[ + 2.811218848819408e-07, + 6.862858867862087e-07, + 0.16128605604171753, + 0.9869077205657959 + ], + "translation":[ + 1.3969677686691284, + 0.9049617648124695, + 4.974388122558594 + ] + }, + { + "children":[ + 19 + ], + "name":"Ear_B2_R", + "rotation":[ + -5.058880105934804e-07, + -1.2205373423057608e-06, + 0.16222156584262848, + 0.9867543578147888 + ], + "translation":[ + -2.812021017074585, + -4.296492099761963, + 7.409326553344727 + ] + }, + { + "children":[ + 20 + ], + "name":"Ear_B1_R", + "rotation":[ + 7.608650207657774e-07, + 1.2834805147576844e-06, + -0.3192474842071533, + 0.9476714134216309 + ], + "translation":[ + -8.717901229858398, + 5.850585460662842, + 8.585454940795898 + ] + }, + { + "children":[ + 15, + 18, + 21 + ], + "name":"Ear_R", + "rotation":[ + 0.15955865383148193, + 0.23567351698875427, + -0.7938214540481567, + 0.537444531917572 + ], + "scale":[ + 0.9999998807907104, + 1, + 0.9999998807907104 + ], + "translation":[ + 5.162622451782227, + -9.014198303222656, + -6.766792297363281 + ] + }, + { + "name":"Ear_M5_L", + "rotation":[ + 4.70910720196116e-07, + -2.840826027750154e-07, + 0.5569757223129272, + 0.8305287957191467 + ], + "scale":[ + 0.9999999403953552, + 0.9999998807907104, + 1 + ], + "translation":[ + -4.286734104156494, + 4.395549297332764, + 3.5551974773406982 + ] + }, + { + "children":[ + 23 + ], + "name":"Ear_M4_L", + "rotation":[ + 8.486419744713203e-08, + 4.482646076553465e-08, + -0.14222748577594757, + 0.9898340106010437 + ], + "translation":[ + -1.6882925033569336, + -5.903735160827637, + -4.382546901702881 + ] + }, + { + "children":[ + 24 + ], + "name":"Ear_M3_L", + "rotation":[ + 6.607287494908576e-10, + 2.5457511654281006e-08, + -0.02594556100666523, + 0.9996633529663086 + ], + "translation":[ + 0.6090877056121826, + 4.901920318603516, + 3.54500675201416 + ] + }, + { + "children":[ + 25 + ], + "name":"Ear_M2_L", + "rotation":[ + 1.5209953119210695e-07, + -4.544176945842082e-08, + -0.08013573288917542, + 0.996783971786499 + ], + "scale":[ + 0.9999999403953552, + 1, + 1 + ], + "translation":[ + -0.015945235267281532, + -4.860222816467285, + -3.2770042419433594 + ] + }, + { + "children":[ + 26 + ], + "name":"Ear_M1_L", + "rotation":[ + -1.0651610864442773e-06, + 4.809384108739323e-07, + -0.15102098882198334, + 0.9885305166244507 + ], + "translation":[ + 5.52906608581543, + -3.022301435470581, + 0.7400409579277039 + ] + }, + { + "name":"Ear_T3_L", + "rotation":[ + 3.8620282083456914e-08, + -4.414070442493312e-09, + -0.05878189951181412, + 0.9982708692550659 + ], + "translation":[ + 6.611800193786621, + -4.398059368133545, + 2.7941017150878906 + ] + }, + { + "children":[ + 28 + ], + "name":"Ear_T2_L", + "rotation":[ + 5.529635700440849e-07, + -7.084630624376587e-07, + -0.29517680406570435, + 0.9554426670074463 + ], + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + -7.667289733886719, + 3.781341552734375, + -2.656338691711426 + ] + }, + { + "children":[ + 29 + ], + "name":"Ear_T1_L", + "rotation":[ + -7.127952130758786e-07, + 6.856484446871036e-07, + 0.35083046555519104, + 0.9364389777183533 + ], + "scale":[ + 1.0000001192092896, + 1.0000001192092896, + 1 + ], + "translation":[ + 2.889892101287842, + -8.637807846069336, + 2.7609050273895264 + ] + }, + { + "name":"Ear_B3_L", + "rotation":[ + 1.0249685828966904e-06, + -5.263289608592459e-07, + 0.16128626465797424, + 0.9869076609611511 + ], + "translation":[ + 5.083557605743408, + -1.235504388809204, + 0.38243624567985535 + ] + }, + { + "children":[ + 31 + ], + "name":"Ear_B2_L", + "rotation":[ + -2.4679798116267193e-07, + 6.565827703752802e-08, + 0.16222114861011505, + 0.9867544174194336 + ], + "scale":[ + 0.9999998807907104, + 0.9999998807907104, + 1 + ], + "translation":[ + 5.760296821594238, + 1.912614345550537, + -6.665428161621094 + ] + }, + { + "children":[ + 32 + ], + "name":"Ear_B1_L", + "rotation":[ + -9.172962904813176e-07, + 1.9488423674829392e-07, + -0.31924673914909363, + 0.94767165184021 + ], + "scale":[ + 1.0000001192092896, + 1.0000001192092896, + 1 + ], + "translation":[ + 10.748581886291504, + 5.013974189758301, + -6.5779242515563965 + ] + }, + { + "children":[ + 27, + 30, + 33 + ], + "name":"Ear_L", + "rotation":[ + -0.5374435186386108, + -0.7938222289085388, + -0.23567290604114532, + 0.15955880284309387 + ], + "scale":[ + 1, + 1.0000003576278687, + 0.9999999403953552 + ], + "translation":[ + -11.847891807556152, + -3.6140849590301514, + 0.5149423480033875 + ] + }, + { + "children":[ + 0, + 10, + 22, + 34 + ], + "name":"joint5", + "rotation":[ + -0.12071479111909866, + 9.454376836970368e-09, + -1.1496900098606488e-09, + 0.9926872253417969 + ], + "translation":[ + -11.50464153289795, + -21.242570877075195, + -8.18245792388916 + ] + }, + { + "name":"FootEnd_F_R", + "rotation":[ + 0.43273472785949707, + 0.43273431062698364, + -0.5592312812805176, + 0.5592333674430847 + ], + "translation":[ + -10.204755783081055, + -2.223055124282837, + 2.8432915210723877 + ] + }, + { + "children":[ + 36 + ], + "name":"Foot_F_R", + "rotation":[ + 0.10082592070102692, + -1.1667150090488576e-07, + -1.1823678924827163e-08, + 0.9949040412902832 + ], + "scale":[ + 1, + 1.0000001192092896, + 1 + ], + "translation":[ + -9.096662521362305, + -19.752046585083008, + -5.921226978302002 + ] + }, + { + "children":[ + 37 + ], + "name":"Knee_F_R", + "rotation":[ + 1.0341994283180611e-07, + 0.9954758286476135, + -0.09501522779464722, + 1.143186182162026e-06 + ], + "scale":[ + 1, + 0.9999996423721313, + 0.9999999403953552 + ], + "translation":[ + 17.013696670532227, + -27.426706314086914, + 9.684623718261719 + ] + }, + { + "children":[ + 38 + ], + "name":"Oberschenkel_F_R", + "rotation":[ + 4.68859013835754e-08, + 0.7730690240859985, + -0.634321928024292, + 1.164249283647223e-06 + ], + "scale":[ + 1, + 0.9999996423721313, + 0.9999999403953552 + ], + "translation":[ + 3.1424050331115723, + -19.530258178710938, + -1.199510931968689 + ] + }, + { + "name":"FootEnd_F_L", + "rotation":[ + 0.4327343702316284, + 0.43273472785949707, + -0.5592309832572937, + 0.5592337250709534 + ], + "translation":[ + 2.8494293689727783, + 10.435468673706055, + -0.3806503713130951 + ] + }, + { + "children":[ + 40 + ], + "name":"Foot_F_L", + "rotation":[ + 0.10082593560218811, + -8.141785912130217e-08, + -3.2034557762017357e-07, + 0.994904100894928 + ], + "scale":[ + 1, + 1, + 0.9999999403953552 + ], + "translation":[ + -12.810282707214355, + 17.504552841186523, + -6.118725776672363 + ] + }, + { + "children":[ + 41 + ], + "name":"Knee_F_L", + "rotation":[ + 4.684449805836266e-08, + 0.9954758882522583, + -0.09501476585865021, + 1.1431859547883505e-06 + ], + "scale":[ + 1, + 0.9999998807907104, + 0.9999999403953552 + ], + "translation":[ + 14.217717170715332, + 30.318269729614258, + 3.7620112895965576 + ] + }, + { + "children":[ + 42 + ], + "name":"Oberschenkel_F_L", + "rotation":[ + -1.8039061444596882e-07, + 0.6343216300010681, + 0.7730692625045776, + 1.2577622783283005e-06 + ], + "scale":[ + 1, + 1.0000004768371582, + 1.0000001192092896 + ], + "translation":[ + -14.883162498474121, + -12.125242233276367, + 4.920429706573486 + ] + }, + { + "children":[ + 35, + 39, + 43 + ], + "name":"joint4", + "rotation":[ + -0.14462055265903473, + 5.0309858501407234e-09, + -7.353049280567348e-10, + 0.9894872307777405 + ], + "translation":[ + 9.12662410736084, + 10.191919326782227, + 19.853700637817383 + ] + }, + { + "children":[ + 44 + ], + "name":"joint3", + "rotation":[ + -0.11487579345703125, + 4.309926637802164e-09, + -3.036122819821685e-08, + 0.9933798313140869 + ], + "scale":[ + 1, + 1, + 1.0000001192092896 + ], + "translation":[ + 2.519071340560913, + 1.8153742551803589, + 17.346904754638672 + ] + }, + { + "children":[ + 45 + ], + "name":"joint2", + "rotation":[ + -0.367116779088974, + -6.241913297344581e-08, + -1.8998882467258227e-08, + 0.9301748871803284 + ], + "translation":[ + 7.255468368530273, + 14.52187728881836, + -2.6938254833221436 + ] + }, + { + "name":"FootEnd_B_R", + "rotation":[ + 0.4515834152698517, + 0.4515836834907532, + -0.5441251397132874, + 0.5441254377365112 + ], + "translation":[ + -3.961215019226074, + 1.0793973207473755, + -8.771247863769531 + ] + }, + { + "children":[ + 47 + ], + "name":"Foot_B_R", + "rotation":[ + -6.544630082316871e-08, + 0.9949793219566345, + -0.10008124262094498, + 1.1426155879235012e-06 + ], + "scale":[ + 1, + 0.9999995827674866, + 1 + ], + "translation":[ + 11.031207084655762, + 4.48600959777832, + 15.611071586608887 + ] + }, + { + "children":[ + 48 + ], + "name":"Knee_B_R", + "rotation":[ + 1.6273729031013318e-08, + 0.9908136129379272, + -0.13523492217063904, + 1.1378321005395264e-06 + ], + "scale":[ + 1, + 1.000000238418579, + 0.9999999403953552 + ], + "translation":[ + -12.026575088500977, + 5.865947723388672, + -22.093212127685547 + ] + }, + { + "children":[ + 49 + ], + "name":"Oberschenkel_B_R", + "rotation":[ + -0.9026575088500977, + 5.336938357913823e-08, + -9.049115590187284e-08, + 0.43035969138145447 + ], + "scale":[ + 1, + 1, + 1.0000001192092896 + ], + "translation":[ + 4.7399444580078125, + -11.179091453552246, + -2.556751251220703 + ] + }, + { + "name":"FootEnd_B_L", + "rotation":[ + 0.4515833556652069, + 0.4515840411186218, + -0.5441250205039978, + 0.5441253185272217 + ], + "translation":[ + -2.296755790710449, + -8.339694023132324, + 4.354962348937988 + ] + }, + { + "children":[ + 51 + ], + "name":"Foot_B_L", + "rotation":[ + 2.8708745958283544e-07, + -0.9949793219566345, + 0.10008107870817184, + 1.0240048595733242e-06 + ], + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + 7.910208225250244, + -17.451169967651367, + -4.289830207824707 + ] + }, + { + "children":[ + 52 + ], + "name":"Knee_B_L", + "rotation":[ + -6.083454451299986e-08, + -0.9908135533332825, + 0.13523517549037933, + 1.019717728922842e-06 + ], + "scale":[ + 1, + 0.9999995827674866, + 1 + ], + "translation":[ + -5.823136806488037, + -23.64073371887207, + 8.62380599975586 + ] + }, + { + "children":[ + 53 + ], + "name":"Oberschenkel_B_L", + "rotation":[ + 0.43036097288131714, + -7.795109979724657e-08, + 1.348295910474917e-07, + 0.9026569128036499 + ], + "translation":[ + -9.230710983276367, + -4.95769739151001, + -6.6474761962890625 + ] + }, + { + "name":"joint23", + "rotation":[ + 0.45705646276474, + 0.45705586671829224, + -0.5395368933677673, + 0.53953617811203 + ], + "scale":[ + 1.0000001192092896, + 1, + 1.0000001192092896 + ], + "translation":[ + 4.19873571395874, + 1.8701189756393433, + -1.8065274953842163 + ] + }, + { + "children":[ + 55 + ], + "name":"joint22", + "rotation":[ + -0.034291382879018784, + 3.445380158950684e-08, + -1.32582824718952e-08, + 0.9994118809700012 + ], + "scale":[ + 1, + 0.9999999403953552, + 0.9999998807907104 + ], + "translation":[ + -1.9508668184280396, + -5.294985771179199, + 1.5129259824752808 + ] + }, + { + "children":[ + 56 + ], + "name":"joint21", + "rotation":[ + 3.045061092166179e-08, + 0.9931783080101013, + -0.11660603433847427, + 1.140547624345345e-06 + ], + "scale":[ + 1, + 1.000000238418579, + 0.9999999403953552 + ], + "translation":[ + 3.061551094055176, + -5.883590221405029, + -1.3370778560638428 + ] + }, + { + "children":[ + 57 + ], + "name":"joint20", + "rotation":[ + -0.04531314969062805, + -4.0080220031768476e-08, + 3.9297148646255664e-08, + 0.9989728331565857 + ], + "scale":[ + 1, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation":[ + 0.4948939085006714, + -3.523200511932373, + 4.804718017578125 + ] + }, + { + "children":[ + 58 + ], + "name":"joint19", + "rotation":[ + 0.001337225898168981, + 7.992402295542433e-09, + -8.7128801951053e-09, + 0.9999991059303284 + ], + "translation":[ + 0.09674988687038422, + -4.429688453674316, + 8.10542106628418 + ] + }, + { + "children":[ + 59 + ], + "name":"joint18", + "rotation":[ + -0.26029467582702637, + -4.4133077636843154e-08, + 2.5263569014555287e-08, + 0.965529203414917 + ], + "scale":[ + 1, + 1.0000001192092896, + 1 + ], + "translation":[ + -2.508981943130493, + 4.737064838409424, + 1.7262307405471802 + ] + }, + { + "children":[ + 60 + ], + "name":"Tail", + "rotation":[ + -1.0311224940551256e-07, + -0.009485210292041302, + 0.9999549984931946, + 1.1970241757808253e-06 + ], + "scale":[ + 0.9999999403953552, + 1, + 1.0000001192092896 + ], + "translation":[ + -1.6317477226257324, + -1.1269465684890747, + 3.8588974475860596 + ] + }, + { + "children":[ + 46, + 50, + 54, + 61 + ], + "name":"Root", + "rotation":[ + -0.31154313683509827, + 2.803200231937808e-07, + 1.9422812158609304e-07, + 0.9502320289611816 + ], + "translation":[ + 0, + 64.55599975585938, + 42.55030059814453 + ] + }, + { + "children":[ + 62 + ], + "name":"Elephant" + }, + { + "mesh":0, + "name":"Elephant.001", + "skin":0 + } + ], + "animations":[ + { + "channels":[ + { + "sampler":0, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":55, + "path":"scale" + } + } + ], + "name":"", + "samplers":[ + { + "input":25, + "interpolation":"STEP", + "output":26 + }, + { + "input":25, + "interpolation":"STEP", + "output":27 + }, + { + "input":25, + "interpolation":"STEP", + "output":28 + }, + { + "input":25, + "interpolation":"STEP", + "output":29 + }, + { + "input":25, + "interpolation":"STEP", + "output":30 + }, + { + "input":25, + "interpolation":"STEP", + "output":31 + }, + { + "input":25, + "interpolation":"STEP", + "output":32 + }, + { + "input":25, + "interpolation":"STEP", + "output":33 + }, + { + "input":25, + "interpolation":"STEP", + "output":34 + }, + { + "input":25, + "interpolation":"STEP", + "output":35 + }, + { + "input":25, + "interpolation":"STEP", + "output":36 + }, + { + "input":25, + "interpolation":"STEP", + "output":37 + }, + { + "input":25, + "interpolation":"STEP", + "output":38 + }, + { + "input":25, + "interpolation":"STEP", + "output":39 + }, + { + "input":25, + "interpolation":"STEP", + "output":40 + }, + { + "input":25, + "interpolation":"STEP", + "output":41 + }, + { + "input":25, + "interpolation":"STEP", + "output":42 + }, + { + "input":25, + "interpolation":"STEP", + "output":43 + }, + { + "input":25, + "interpolation":"STEP", + "output":44 + }, + { + "input":25, + "interpolation":"STEP", + "output":45 + }, + { + "input":25, + "interpolation":"STEP", + "output":46 + }, + { + "input":25, + "interpolation":"STEP", + "output":47 + }, + { + "input":25, + "interpolation":"STEP", + "output":48 + }, + { + "input":25, + "interpolation":"STEP", + "output":49 + }, + { + "input":25, + "interpolation":"STEP", + "output":50 + }, + { + "input":25, + "interpolation":"STEP", + "output":51 + }, + { + "input":25, + "interpolation":"STEP", + "output":52 + }, + { + "input":25, + "interpolation":"STEP", + "output":53 + }, + { + "input":25, + "interpolation":"STEP", + "output":54 + }, + { + "input":25, + "interpolation":"STEP", + "output":55 + }, + { + "input":25, + "interpolation":"STEP", + "output":56 + }, + { + "input":25, + "interpolation":"STEP", + "output":57 + }, + { + "input":25, + "interpolation":"STEP", + "output":58 + }, + { + "input":25, + "interpolation":"STEP", + "output":59 + }, + { + "input":25, + "interpolation":"STEP", + "output":60 + }, + { + "input":25, + "interpolation":"STEP", + "output":61 + }, + { + "input":25, + "interpolation":"STEP", + "output":62 + }, + { + "input":25, + "interpolation":"STEP", + "output":63 + }, + { + "input":25, + "interpolation":"STEP", + "output":64 + }, + { + "input":25, + "interpolation":"STEP", + "output":65 + }, + { + "input":25, + "interpolation":"STEP", + "output":66 + }, + { + "input":25, + "interpolation":"STEP", + "output":67 + }, + { + "input":25, + "interpolation":"STEP", + "output":68 + }, + { + "input":25, + "interpolation":"STEP", + "output":69 + }, + { + "input":25, + "interpolation":"STEP", + "output":70 + }, + { + "input":25, + "interpolation":"STEP", + "output":71 + }, + { + "input":25, + "interpolation":"STEP", + "output":72 + }, + { + "input":25, + "interpolation":"STEP", + "output":73 + }, + { + "input":25, + "interpolation":"STEP", + "output":74 + }, + { + "input":25, + "interpolation":"STEP", + "output":75 + }, + { + "input":25, + "interpolation":"STEP", + "output":76 + }, + { + "input":25, + "interpolation":"STEP", + "output":77 + }, + { + "input":25, + "interpolation":"STEP", + "output":78 + }, + { + "input":25, + "interpolation":"STEP", + "output":79 + }, + { + "input":25, + "interpolation":"STEP", + "output":80 + }, + { + "input":25, + "interpolation":"STEP", + "output":81 + }, + { + "input":25, + "interpolation":"STEP", + "output":82 + }, + { + "input":25, + "interpolation":"STEP", + "output":83 + }, + { + "input":25, + "interpolation":"STEP", + "output":84 + }, + { + "input":25, + "interpolation":"STEP", + "output":85 + }, + { + "input":25, + "interpolation":"STEP", + "output":86 + }, + { + "input":25, + "interpolation":"STEP", + "output":87 + }, + { + "input":25, + "interpolation":"STEP", + "output":88 + }, + { + "input":25, + "interpolation":"STEP", + "output":89 + }, + { + "input":25, + "interpolation":"STEP", + "output":90 + }, + { + "input":25, + "interpolation":"STEP", + "output":91 + }, + { + "input":25, + "interpolation":"STEP", + "output":92 + }, + { + "input":25, + "interpolation":"STEP", + "output":93 + }, + { + "input":25, + "interpolation":"STEP", + "output":94 + }, + { + "input":25, + "interpolation":"STEP", + "output":95 + }, + { + "input":25, + "interpolation":"STEP", + "output":96 + }, + { + "input":25, + "interpolation":"STEP", + "output":97 + }, + { + "input":25, + "interpolation":"STEP", + "output":98 + }, + { + "input":25, + "interpolation":"STEP", + "output":99 + }, + { + "input":25, + "interpolation":"STEP", + "output":100 + }, + { + "input":25, + "interpolation":"STEP", + "output":101 + }, + { + "input":25, + "interpolation":"STEP", + "output":102 + }, + { + "input":25, + "interpolation":"STEP", + "output":103 + }, + { + "input":25, + "interpolation":"STEP", + "output":104 + }, + { + "input":25, + "interpolation":"STEP", + "output":105 + }, + { + "input":25, + "interpolation":"STEP", + "output":106 + }, + { + "input":25, + "interpolation":"STEP", + "output":107 + }, + { + "input":25, + "interpolation":"STEP", + "output":108 + }, + { + "input":25, + "interpolation":"STEP", + "output":109 + }, + { + "input":25, + "interpolation":"STEP", + "output":110 + }, + { + "input":25, + "interpolation":"STEP", + "output":111 + }, + { + "input":25, + "interpolation":"STEP", + "output":112 + }, + { + "input":25, + "interpolation":"STEP", + "output":113 + }, + { + "input":25, + "interpolation":"STEP", + "output":114 + }, + { + "input":25, + "interpolation":"STEP", + "output":115 + }, + { + "input":25, + "interpolation":"STEP", + "output":116 + }, + { + "input":25, + "interpolation":"STEP", + "output":117 + }, + { + "input":25, + "interpolation":"STEP", + "output":118 + }, + { + "input":25, + "interpolation":"STEP", + "output":119 + }, + { + "input":25, + "interpolation":"STEP", + "output":120 + }, + { + "input":25, + "interpolation":"STEP", + "output":121 + }, + { + "input":25, + "interpolation":"STEP", + "output":122 + }, + { + "input":25, + "interpolation":"STEP", + "output":123 + }, + { + "input":25, + "interpolation":"STEP", + "output":124 + }, + { + "input":25, + "interpolation":"STEP", + "output":125 + }, + { + "input":25, + "interpolation":"STEP", + "output":126 + }, + { + "input":25, + "interpolation":"STEP", + "output":127 + }, + { + "input":25, + "interpolation":"STEP", + "output":128 + }, + { + "input":25, + "interpolation":"STEP", + "output":129 + }, + { + "input":25, + "interpolation":"STEP", + "output":130 + }, + { + "input":25, + "interpolation":"STEP", + "output":131 + }, + { + "input":25, + "interpolation":"STEP", + "output":132 + }, + { + "input":25, + "interpolation":"STEP", + "output":133 + }, + { + "input":25, + "interpolation":"STEP", + "output":134 + }, + { + "input":25, + "interpolation":"STEP", + "output":135 + }, + { + "input":25, + "interpolation":"STEP", + "output":136 + }, + { + "input":25, + "interpolation":"STEP", + "output":137 + }, + { + "input":25, + "interpolation":"STEP", + "output":138 + }, + { + "input":25, + "interpolation":"STEP", + "output":139 + }, + { + "input":25, + "interpolation":"STEP", + "output":140 + }, + { + "input":25, + "interpolation":"STEP", + "output":141 + }, + { + "input":25, + "interpolation":"STEP", + "output":142 + }, + { + "input":25, + "interpolation":"STEP", + "output":143 + }, + { + "input":25, + "interpolation":"STEP", + "output":144 + }, + { + "input":25, + "interpolation":"STEP", + "output":145 + }, + { + "input":25, + "interpolation":"STEP", + "output":146 + }, + { + "input":25, + "interpolation":"STEP", + "output":147 + }, + { + "input":25, + "interpolation":"STEP", + "output":148 + }, + { + "input":25, + "interpolation":"STEP", + "output":149 + }, + { + "input":25, + "interpolation":"STEP", + "output":150 + }, + { + "input":25, + "interpolation":"STEP", + "output":151 + }, + { + "input":25, + "interpolation":"STEP", + "output":152 + }, + { + "input":25, + "interpolation":"STEP", + "output":153 + }, + { + "input":25, + "interpolation":"STEP", + "output":154 + }, + { + "input":25, + "interpolation":"STEP", + "output":155 + }, + { + "input":25, + "interpolation":"STEP", + "output":156 + }, + { + "input":25, + "interpolation":"STEP", + "output":157 + }, + { + "input":25, + "interpolation":"STEP", + "output":158 + }, + { + "input":25, + "interpolation":"STEP", + "output":159 + }, + { + "input":25, + "interpolation":"STEP", + "output":160 + }, + { + "input":25, + "interpolation":"STEP", + "output":161 + }, + { + "input":25, + "interpolation":"STEP", + "output":162 + }, + { + "input":25, + "interpolation":"STEP", + "output":163 + }, + { + "input":25, + "interpolation":"STEP", + "output":164 + }, + { + "input":25, + "interpolation":"STEP", + "output":165 + }, + { + "input":25, + "interpolation":"STEP", + "output":166 + }, + { + "input":25, + "interpolation":"STEP", + "output":167 + }, + { + "input":25, + "interpolation":"STEP", + "output":168 + }, + { + "input":25, + "interpolation":"STEP", + "output":169 + }, + { + "input":25, + "interpolation":"LINEAR", + "output":170 + }, + { + "input":25, + "interpolation":"LINEAR", + "output":171 + }, + { + "input":25, + "interpolation":"STEP", + "output":172 + }, + { + "input":25, + "interpolation":"LINEAR", + "output":173 + }, + { + "input":25, + "interpolation":"LINEAR", + "output":174 + }, + { + "input":25, + "interpolation":"STEP", + "output":175 + }, + { + "input":25, + "interpolation":"LINEAR", + "output":176 + }, + { + "input":25, + "interpolation":"LINEAR", + "output":177 + }, + { + "input":25, + "interpolation":"STEP", + "output":178 + }, + { + "input":25, + "interpolation":"STEP", + "output":179 + }, + { + "input":25, + "interpolation":"STEP", + "output":180 + }, + { + "input":25, + "interpolation":"STEP", + "output":181 + }, + { + "input":25, + "interpolation":"STEP", + "output":182 + }, + { + "input":25, + "interpolation":"STEP", + "output":183 + }, + { + "input":25, + "interpolation":"STEP", + "output":184 + }, + { + "input":25, + "interpolation":"STEP", + "output":185 + }, + { + "input":25, + "interpolation":"STEP", + "output":186 + }, + { + "input":25, + "interpolation":"STEP", + "output":187 + }, + { + "input":25, + "interpolation":"STEP", + "output":188 + }, + { + "input":25, + "interpolation":"STEP", + "output":189 + }, + { + "input":25, + "interpolation":"STEP", + "output":190 + }, + { + "input":25, + "interpolation":"STEP", + "output":191 + }, + { + "input":25, + "interpolation":"STEP", + "output":192 + }, + { + "input":25, + "interpolation":"STEP", + "output":193 + }, + { + "input":25, + "interpolation":"STEP", + "output":194 + }, + { + "input":25, + "interpolation":"STEP", + "output":195 + }, + { + "input":25, + "interpolation":"STEP", + "output":196 + }, + { + "input":25, + "interpolation":"STEP", + "output":197 + }, + { + "input":25, + "interpolation":"STEP", + "output":198 + }, + { + "input":25, + "interpolation":"STEP", + "output":199 + }, + { + "input":25, + "interpolation":"STEP", + "output":200 + }, + { + "input":25, + "interpolation":"STEP", + "output":201 + }, + { + "input":25, + "interpolation":"STEP", + "output":202 + }, + { + "input":25, + "interpolation":"STEP", + "output":203 + }, + { + "input":25, + "interpolation":"STEP", + "output":204 + }, + { + "input":25, + "interpolation":"STEP", + "output":205 + }, + { + "input":25, + "interpolation":"STEP", + "output":206 + }, + { + "input":25, + "interpolation":"STEP", + "output":207 + }, + { + "input":25, + "interpolation":"STEP", + "output":208 + }, + { + "input":25, + "interpolation":"STEP", + "output":209 + }, + { + "input":25, + "interpolation":"STEP", + "output":210 + }, + { + "input":25, + "interpolation":"STEP", + "output":211 + }, + { + "input":25, + "interpolation":"STEP", + "output":212 + }, + { + "input":25, + "interpolation":"STEP", + "output":213 + }, + { + "input":25, + "interpolation":"STEP", + "output":214 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":55, + "path":"scale" + } + } + ], + "name":"legUp", + "samplers":[ + { + "input":215, + "interpolation":"STEP", + "output":216 + }, + { + "input":215, + "interpolation":"STEP", + "output":217 + }, + { + "input":215, + "interpolation":"STEP", + "output":218 + }, + { + "input":215, + "interpolation":"STEP", + "output":219 + }, + { + "input":215, + "interpolation":"STEP", + "output":220 + }, + { + "input":215, + "interpolation":"STEP", + "output":221 + }, + { + "input":215, + "interpolation":"STEP", + "output":222 + }, + { + "input":215, + "interpolation":"STEP", + "output":223 + }, + { + "input":215, + "interpolation":"STEP", + "output":224 + }, + { + "input":215, + "interpolation":"STEP", + "output":225 + }, + { + "input":215, + "interpolation":"STEP", + "output":226 + }, + { + "input":215, + "interpolation":"STEP", + "output":227 + }, + { + "input":215, + "interpolation":"STEP", + "output":228 + }, + { + "input":215, + "interpolation":"STEP", + "output":229 + }, + { + "input":215, + "interpolation":"STEP", + "output":230 + }, + { + "input":215, + "interpolation":"STEP", + "output":231 + }, + { + "input":215, + "interpolation":"STEP", + "output":232 + }, + { + "input":215, + "interpolation":"STEP", + "output":233 + }, + { + "input":215, + "interpolation":"STEP", + "output":234 + }, + { + "input":215, + "interpolation":"STEP", + "output":235 + }, + { + "input":215, + "interpolation":"STEP", + "output":236 + }, + { + "input":215, + "interpolation":"STEP", + "output":237 + }, + { + "input":215, + "interpolation":"STEP", + "output":238 + }, + { + "input":215, + "interpolation":"STEP", + "output":239 + }, + { + "input":215, + "interpolation":"STEP", + "output":240 + }, + { + "input":215, + "interpolation":"STEP", + "output":241 + }, + { + "input":215, + "interpolation":"STEP", + "output":242 + }, + { + "input":215, + "interpolation":"STEP", + "output":243 + }, + { + "input":215, + "interpolation":"STEP", + "output":244 + }, + { + "input":215, + "interpolation":"STEP", + "output":245 + }, + { + "input":215, + "interpolation":"STEP", + "output":246 + }, + { + "input":215, + "interpolation":"STEP", + "output":247 + }, + { + "input":215, + "interpolation":"STEP", + "output":248 + }, + { + "input":215, + "interpolation":"STEP", + "output":249 + }, + { + "input":215, + "interpolation":"STEP", + "output":250 + }, + { + "input":215, + "interpolation":"STEP", + "output":251 + }, + { + "input":215, + "interpolation":"STEP", + "output":252 + }, + { + "input":215, + "interpolation":"STEP", + "output":253 + }, + { + "input":215, + "interpolation":"STEP", + "output":254 + }, + { + "input":215, + "interpolation":"STEP", + "output":255 + }, + { + "input":215, + "interpolation":"STEP", + "output":256 + }, + { + "input":215, + "interpolation":"STEP", + "output":257 + }, + { + "input":215, + "interpolation":"STEP", + "output":258 + }, + { + "input":215, + "interpolation":"STEP", + "output":259 + }, + { + "input":215, + "interpolation":"STEP", + "output":260 + }, + { + "input":215, + "interpolation":"STEP", + "output":261 + }, + { + "input":215, + "interpolation":"STEP", + "output":262 + }, + { + "input":215, + "interpolation":"STEP", + "output":263 + }, + { + "input":215, + "interpolation":"STEP", + "output":264 + }, + { + "input":215, + "interpolation":"STEP", + "output":265 + }, + { + "input":215, + "interpolation":"STEP", + "output":266 + }, + { + "input":215, + "interpolation":"STEP", + "output":267 + }, + { + "input":215, + "interpolation":"STEP", + "output":268 + }, + { + "input":215, + "interpolation":"STEP", + "output":269 + }, + { + "input":215, + "interpolation":"STEP", + "output":270 + }, + { + "input":215, + "interpolation":"STEP", + "output":271 + }, + { + "input":215, + "interpolation":"STEP", + "output":272 + }, + { + "input":215, + "interpolation":"STEP", + "output":273 + }, + { + "input":215, + "interpolation":"STEP", + "output":274 + }, + { + "input":215, + "interpolation":"STEP", + "output":275 + }, + { + "input":215, + "interpolation":"STEP", + "output":276 + }, + { + "input":215, + "interpolation":"STEP", + "output":277 + }, + { + "input":215, + "interpolation":"STEP", + "output":278 + }, + { + "input":215, + "interpolation":"STEP", + "output":279 + }, + { + "input":215, + "interpolation":"STEP", + "output":280 + }, + { + "input":215, + "interpolation":"STEP", + "output":281 + }, + { + "input":215, + "interpolation":"STEP", + "output":282 + }, + { + "input":215, + "interpolation":"STEP", + "output":283 + }, + { + "input":215, + "interpolation":"STEP", + "output":284 + }, + { + "input":215, + "interpolation":"STEP", + "output":285 + }, + { + "input":215, + "interpolation":"STEP", + "output":286 + }, + { + "input":215, + "interpolation":"STEP", + "output":287 + }, + { + "input":215, + "interpolation":"STEP", + "output":288 + }, + { + "input":215, + "interpolation":"STEP", + "output":289 + }, + { + "input":215, + "interpolation":"STEP", + "output":290 + }, + { + "input":215, + "interpolation":"STEP", + "output":291 + }, + { + "input":215, + "interpolation":"STEP", + "output":292 + }, + { + "input":215, + "interpolation":"STEP", + "output":293 + }, + { + "input":215, + "interpolation":"STEP", + "output":294 + }, + { + "input":215, + "interpolation":"STEP", + "output":295 + }, + { + "input":215, + "interpolation":"STEP", + "output":296 + }, + { + "input":215, + "interpolation":"STEP", + "output":297 + }, + { + "input":215, + "interpolation":"STEP", + "output":298 + }, + { + "input":215, + "interpolation":"STEP", + "output":299 + }, + { + "input":215, + "interpolation":"STEP", + "output":300 + }, + { + "input":215, + "interpolation":"STEP", + "output":301 + }, + { + "input":215, + "interpolation":"STEP", + "output":302 + }, + { + "input":215, + "interpolation":"STEP", + "output":303 + }, + { + "input":215, + "interpolation":"STEP", + "output":304 + }, + { + "input":215, + "interpolation":"STEP", + "output":305 + }, + { + "input":215, + "interpolation":"STEP", + "output":306 + }, + { + "input":215, + "interpolation":"STEP", + "output":307 + }, + { + "input":215, + "interpolation":"STEP", + "output":308 + }, + { + "input":215, + "interpolation":"STEP", + "output":309 + }, + { + "input":215, + "interpolation":"STEP", + "output":310 + }, + { + "input":215, + "interpolation":"STEP", + "output":311 + }, + { + "input":215, + "interpolation":"STEP", + "output":312 + }, + { + "input":215, + "interpolation":"STEP", + "output":313 + }, + { + "input":215, + "interpolation":"STEP", + "output":314 + }, + { + "input":215, + "interpolation":"STEP", + "output":315 + }, + { + "input":215, + "interpolation":"STEP", + "output":316 + }, + { + "input":215, + "interpolation":"STEP", + "output":317 + }, + { + "input":215, + "interpolation":"STEP", + "output":318 + }, + { + "input":215, + "interpolation":"STEP", + "output":319 + }, + { + "input":215, + "interpolation":"STEP", + "output":320 + }, + { + "input":215, + "interpolation":"STEP", + "output":321 + }, + { + "input":215, + "interpolation":"STEP", + "output":322 + }, + { + "input":215, + "interpolation":"STEP", + "output":323 + }, + { + "input":215, + "interpolation":"STEP", + "output":324 + }, + { + "input":215, + "interpolation":"STEP", + "output":325 + }, + { + "input":215, + "interpolation":"STEP", + "output":326 + }, + { + "input":215, + "interpolation":"STEP", + "output":327 + }, + { + "input":215, + "interpolation":"STEP", + "output":328 + }, + { + "input":215, + "interpolation":"STEP", + "output":329 + }, + { + "input":215, + "interpolation":"STEP", + "output":330 + }, + { + "input":215, + "interpolation":"STEP", + "output":331 + }, + { + "input":215, + "interpolation":"STEP", + "output":332 + }, + { + "input":215, + "interpolation":"STEP", + "output":333 + }, + { + "input":215, + "interpolation":"STEP", + "output":334 + }, + { + "input":215, + "interpolation":"STEP", + "output":335 + }, + { + "input":215, + "interpolation":"STEP", + "output":336 + }, + { + "input":215, + "interpolation":"STEP", + "output":337 + }, + { + "input":215, + "interpolation":"STEP", + "output":338 + }, + { + "input":215, + "interpolation":"STEP", + "output":339 + }, + { + "input":215, + "interpolation":"STEP", + "output":340 + }, + { + "input":215, + "interpolation":"STEP", + "output":341 + }, + { + "input":215, + "interpolation":"STEP", + "output":342 + }, + { + "input":215, + "interpolation":"STEP", + "output":343 + }, + { + "input":215, + "interpolation":"STEP", + "output":344 + }, + { + "input":215, + "interpolation":"STEP", + "output":345 + }, + { + "input":215, + "interpolation":"STEP", + "output":346 + }, + { + "input":215, + "interpolation":"STEP", + "output":347 + }, + { + "input":215, + "interpolation":"STEP", + "output":348 + }, + { + "input":215, + "interpolation":"STEP", + "output":349 + }, + { + "input":215, + "interpolation":"STEP", + "output":350 + }, + { + "input":215, + "interpolation":"STEP", + "output":351 + }, + { + "input":215, + "interpolation":"STEP", + "output":352 + }, + { + "input":215, + "interpolation":"STEP", + "output":353 + }, + { + "input":215, + "interpolation":"STEP", + "output":354 + }, + { + "input":215, + "interpolation":"STEP", + "output":355 + }, + { + "input":215, + "interpolation":"STEP", + "output":356 + }, + { + "input":215, + "interpolation":"STEP", + "output":357 + }, + { + "input":215, + "interpolation":"STEP", + "output":358 + }, + { + "input":215, + "interpolation":"STEP", + "output":359 + }, + { + "input":215, + "interpolation":"STEP", + "output":360 + }, + { + "input":361, + "interpolation":"LINEAR", + "output":362 + }, + { + "input":215, + "interpolation":"STEP", + "output":363 + }, + { + "input":215, + "interpolation":"STEP", + "output":364 + }, + { + "input":361, + "interpolation":"LINEAR", + "output":365 + }, + { + "input":215, + "interpolation":"STEP", + "output":366 + }, + { + "input":215, + "interpolation":"STEP", + "output":367 + }, + { + "input":361, + "interpolation":"LINEAR", + "output":368 + }, + { + "input":215, + "interpolation":"STEP", + "output":369 + }, + { + "input":215, + "interpolation":"STEP", + "output":370 + }, + { + "input":215, + "interpolation":"STEP", + "output":371 + }, + { + "input":215, + "interpolation":"STEP", + "output":372 + }, + { + "input":215, + "interpolation":"STEP", + "output":373 + }, + { + "input":215, + "interpolation":"STEP", + "output":374 + }, + { + "input":215, + "interpolation":"STEP", + "output":375 + }, + { + "input":215, + "interpolation":"STEP", + "output":376 + }, + { + "input":215, + "interpolation":"STEP", + "output":377 + }, + { + "input":215, + "interpolation":"STEP", + "output":378 + }, + { + "input":215, + "interpolation":"STEP", + "output":379 + }, + { + "input":215, + "interpolation":"STEP", + "output":380 + }, + { + "input":215, + "interpolation":"STEP", + "output":381 + }, + { + "input":215, + "interpolation":"STEP", + "output":382 + }, + { + "input":215, + "interpolation":"STEP", + "output":383 + }, + { + "input":215, + "interpolation":"STEP", + "output":384 + }, + { + "input":215, + "interpolation":"STEP", + "output":385 + }, + { + "input":215, + "interpolation":"STEP", + "output":386 + }, + { + "input":215, + "interpolation":"STEP", + "output":387 + }, + { + "input":215, + "interpolation":"STEP", + "output":388 + }, + { + "input":215, + "interpolation":"STEP", + "output":389 + }, + { + "input":215, + "interpolation":"STEP", + "output":390 + }, + { + "input":215, + "interpolation":"STEP", + "output":391 + }, + { + "input":215, + "interpolation":"STEP", + "output":392 + }, + { + "input":215, + "interpolation":"STEP", + "output":393 + }, + { + "input":215, + "interpolation":"STEP", + "output":394 + }, + { + "input":215, + "interpolation":"STEP", + "output":395 + }, + { + "input":215, + "interpolation":"STEP", + "output":396 + }, + { + "input":215, + "interpolation":"STEP", + "output":397 + }, + { + "input":215, + "interpolation":"STEP", + "output":398 + }, + { + "input":215, + "interpolation":"STEP", + "output":399 + }, + { + "input":215, + "interpolation":"STEP", + "output":400 + }, + { + "input":215, + "interpolation":"STEP", + "output":401 + }, + { + "input":215, + "interpolation":"STEP", + "output":402 + }, + { + "input":215, + "interpolation":"STEP", + "output":403 + }, + { + "input":215, + "interpolation":"STEP", + "output":404 + }, + { + "input":215, + "interpolation":"STEP", + "output":405 + } + ] + } + ], + "materials":[ + { + "doubleSided":true, + "name":"rightEyeShader", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"Models/Elephant/Elephant.j3m", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.4000000059604645 + } + }, + { + "doubleSided":true, + "name":"Ele_Tuskh", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"leftEyeShader", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":2 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Elephant", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "JOINTS_0":3, + "WEIGHTS_0":4 + }, + "indices":5, + "material":0 + }, + { + "attributes":{ + "POSITION":6, + "NORMAL":7, + "TEXCOORD_0":8, + "JOINTS_0":9, + "WEIGHTS_0":10 + }, + "indices":11, + "material":1 + }, + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14, + "JOINTS_0":15, + "WEIGHTS_0":16 + }, + "indices":17, + "material":2 + }, + { + "attributes":{ + "POSITION":18, + "NORMAL":19, + "TEXCOORD_0":20, + "JOINTS_0":21, + "WEIGHTS_0":22 + }, + "indices":23, + "material":3 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"ElephantEye", + "uri":"ElephantEye.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"ElephantTusk", + "uri":"ElephantTusk.jpg" + } + ], + "skins":[ + { + "inverseBindMatrices":24, + "joints":[ + 62, + 46, + 45, + 44, + 35, + 0, + 10, + 9, + 8, + 7, + 6, + 5, + 4, + 3, + 2, + 1, + 22, + 15, + 14, + 13, + 12, + 11, + 18, + 17, + 16, + 21, + 20, + 19, + 34, + 27, + 26, + 25, + 24, + 23, + 30, + 29, + 28, + 33, + 32, + 31, + 39, + 38, + 37, + 36, + 43, + 42, + 41, + 40, + 50, + 49, + 48, + 47, + 54, + 53, + 52, + 51, + 61, + 60, + 59, + 58, + 57, + 56, + 55 + ], + "name":"Elephant" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":84, + "max":[ + 11.656100273132324, + 65.49019622802734, + -49.513099670410156 + ], + "min":[ + 10.581600189208984, + 64.38839721679688, + -51.55289840698242 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":84, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":84, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5121, + "count":84, + "type":"VEC4" + }, + { + "bufferView":4, + "componentType":5126, + "count":84, + "type":"VEC4" + }, + { + "bufferView":5, + "componentType":5123, + "count":84, + "type":"SCALAR" + }, + { + "bufferView":6, + "componentType":5126, + "count":4515, + "max":[ + 33.005699157714844, + 89.3781967163086, + 51.92829895019531 + ], + "min":[ + -33.652000427246094, + 0.23819200694561005, + -71.45939636230469 + ], + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5126, + "count":4515, + "type":"VEC3" + }, + { + "bufferView":8, + "componentType":5126, + "count":4515, + "type":"VEC2" + }, + { + "bufferView":9, + "componentType":5121, + "count":4515, + "type":"VEC4" + }, + { + "bufferView":10, + "componentType":5126, + "count":4515, + "type":"VEC4" + }, + { + "bufferView":11, + "componentType":5123, + "count":4515, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":411, + "max":[ + 18.37459945678711, + 55.80939865112305, + -53.0349006652832 + ], + "min":[ + -18.37459945678711, + 42.0452995300293, + -89.13719940185547 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":411, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":411, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5121, + "count":411, + "type":"VEC4" + }, + { + "bufferView":16, + "componentType":5126, + "count":411, + "type":"VEC4" + }, + { + "bufferView":17, + "componentType":5123, + "count":411, + "type":"SCALAR" + }, + { + "bufferView":18, + "componentType":5126, + "count":87, + "max":[ + -10.598099708557129, + 65.56500244140625, + -49.66830062866211 + ], + "min":[ + -11.429900169372559, + 64.30359649658203, + -51.56010055541992 + ], + "type":"VEC3" + }, + { + "bufferView":19, + "componentType":5126, + "count":87, + "type":"VEC3" + }, + { + "bufferView":20, + "componentType":5126, + "count":87, + "type":"VEC2" + }, + { + "bufferView":21, + "componentType":5121, + "count":87, + "type":"VEC4" + }, + { + "bufferView":22, + "componentType":5126, + "count":87, + "type":"VEC4" + }, + { + "bufferView":23, + "componentType":5123, + "count":87, + "type":"SCALAR" + }, + { + "bufferView":24, + "componentType":5126, + "count":63, + "type":"MAT4" + }, + { + "bufferView":25, + "componentType":5126, + "count":1, + "max":[ + 0 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":26, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":27, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":28, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":29, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":30, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":31, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":32, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":33, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":34, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":35, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":36, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":37, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":38, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":39, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":40, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":41, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":42, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":43, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":44, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":45, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":46, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":47, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":48, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":49, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":50, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":51, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":52, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":53, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":54, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":55, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":56, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":57, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":58, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":59, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":60, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":61, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":62, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":63, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":64, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":65, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":66, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":67, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":68, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":69, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":70, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":71, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":72, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":73, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":74, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":75, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":76, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":77, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":78, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":79, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":80, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":81, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":82, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":83, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":84, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":85, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":86, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":87, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":88, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":89, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":90, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":91, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":92, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":93, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":94, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":95, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":96, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":97, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":98, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":99, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":100, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":101, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":102, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":103, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":104, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":105, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":106, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":107, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":108, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":109, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":110, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":111, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":112, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":113, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":114, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":115, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":116, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":117, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":118, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":119, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":120, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":121, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":122, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":123, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":124, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":125, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":126, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":127, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":128, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":129, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":130, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":131, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":132, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":133, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":134, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":135, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":136, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":137, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":138, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":139, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":140, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":141, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":142, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":143, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":144, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":145, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":146, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":147, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":148, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":149, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":150, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":151, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":152, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":153, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":154, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":155, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":156, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":157, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":158, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":159, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":160, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":161, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":162, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":163, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":164, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":165, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":166, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":167, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":168, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":169, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":170, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":171, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":172, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":173, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":174, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":175, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":176, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":177, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":178, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":179, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":180, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":181, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":182, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":183, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":184, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":185, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":186, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":187, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":188, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":189, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":190, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":191, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":192, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":193, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":194, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":195, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":196, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":197, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":198, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":199, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":200, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":201, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":202, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":203, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":204, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":205, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":206, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":207, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":208, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":209, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":210, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":211, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":212, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":213, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":214, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":215, + "componentType":5126, + "count":2, + "max":[ + 2.0833333333333335 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":216, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":217, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":218, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":219, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":220, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":221, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":222, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":223, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":224, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":225, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":226, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":227, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":228, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":229, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":230, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":231, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":232, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":233, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":234, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":235, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":236, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":237, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":238, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":239, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":240, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":241, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":242, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":243, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":244, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":245, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":246, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":247, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":248, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":249, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":250, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":251, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":252, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":253, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":254, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":255, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":256, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":257, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":258, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":259, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":260, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":261, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":262, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":263, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":264, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":265, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":266, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":267, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":268, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":269, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":270, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":271, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":272, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":273, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":274, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":275, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":276, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":277, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":278, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":279, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":280, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":281, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":282, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":283, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":284, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":285, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":286, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":287, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":288, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":289, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":290, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":291, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":292, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":293, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":294, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":295, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":296, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":297, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":298, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":299, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":300, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":301, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":302, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":303, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":304, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":305, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":306, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":307, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":308, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":309, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":310, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":311, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":312, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":313, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":314, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":315, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":316, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":317, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":318, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":319, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":320, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":321, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":322, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":323, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":324, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":325, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":326, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":327, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":328, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":329, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":330, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":331, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":332, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":333, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":334, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":335, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":336, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":337, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":338, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":339, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":340, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":341, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":342, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":343, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":344, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":345, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":346, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":347, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":348, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":349, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":350, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":351, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":352, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":353, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":354, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":355, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":356, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":357, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":358, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":359, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":360, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":361, + "componentType":5126, + "count":51, + "max":[ + 2.0833333333333335 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":362, + "componentType":5126, + "count":51, + "type":"VEC4" + }, + { + "bufferView":363, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":364, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":365, + "componentType":5126, + "count":51, + "type":"VEC4" + }, + { + "bufferView":366, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":367, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":368, + "componentType":5126, + "count":51, + "type":"VEC4" + }, + { + "bufferView":369, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":370, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":371, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":372, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":373, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":374, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":375, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":376, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":377, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":378, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":379, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":380, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":381, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":382, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":383, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":384, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":385, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":386, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":387, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":388, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":389, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":390, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":391, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":392, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":393, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":394, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":395, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":396, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":397, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":398, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":399, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":400, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":401, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":402, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":403, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":404, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":405, + "componentType":5126, + "count":2, + "type":"VEC3" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":1008, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":1008, + "target":34962 + }, + { + "buffer":0, + "byteLength":672, + "byteOffset":2016, + "target":34962 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":2688, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":3024, + "target":34962 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":4368, + "target":34963 + }, + { + "buffer":0, + "byteLength":54180, + "byteOffset":4536, + "target":34962 + }, + { + "buffer":0, + "byteLength":54180, + "byteOffset":58716, + "target":34962 + }, + { + "buffer":0, + "byteLength":36120, + "byteOffset":112896, + "target":34962 + }, + { + "buffer":0, + "byteLength":18060, + "byteOffset":149016, + "target":34962 + }, + { + "buffer":0, + "byteLength":72240, + "byteOffset":167076, + "target":34962 + }, + { + "buffer":0, + "byteLength":9030, + "byteOffset":239316, + "target":34963 + }, + { + "buffer":0, + "byteLength":4932, + "byteOffset":248348, + "target":34962 + }, + { + "buffer":0, + "byteLength":4932, + "byteOffset":253280, + "target":34962 + }, + { + "buffer":0, + "byteLength":3288, + "byteOffset":258212, + "target":34962 + }, + { + "buffer":0, + "byteLength":1644, + "byteOffset":261500, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":263144, + "target":34962 + }, + { + "buffer":0, + "byteLength":822, + "byteOffset":269720, + "target":34963 + }, + { + "buffer":0, + "byteLength":1044, + "byteOffset":270544, + "target":34962 + }, + { + "buffer":0, + "byteLength":1044, + "byteOffset":271588, + "target":34962 + }, + { + "buffer":0, + "byteLength":696, + "byteOffset":272632, + "target":34962 + }, + { + "buffer":0, + "byteLength":348, + "byteOffset":273328, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":273676, + "target":34962 + }, + { + "buffer":0, + "byteLength":174, + "byteOffset":275068, + "target":34963 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":275244 + }, + { + "buffer":0, + "byteLength":4, + "byteOffset":279276 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279280 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279292 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279308 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279320 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279332 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279348 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279360 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279372 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279388 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279400 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279412 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279428 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279440 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279452 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279468 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279480 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279492 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279508 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279520 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279532 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279548 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279560 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279572 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279588 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279600 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279612 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279628 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279640 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279652 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279668 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279680 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279692 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279708 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279720 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279732 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279748 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279760 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279772 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279788 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279800 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279812 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279828 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279840 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279852 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279868 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279880 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279892 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279908 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279920 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279932 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279948 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279960 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":279972 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":279988 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280000 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280012 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280028 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280040 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280052 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280068 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280080 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280092 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280108 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280120 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280132 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280148 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280160 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280172 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280188 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280200 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280212 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280228 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280240 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280252 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280268 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280280 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280292 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280308 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280320 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280332 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280348 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280360 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280372 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280388 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280400 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280412 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280428 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280440 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280452 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280468 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280480 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280492 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280508 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280520 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280532 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280548 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280560 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280572 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280588 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280600 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280612 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280628 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280640 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280652 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280668 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280680 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280692 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280708 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280720 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280732 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280748 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280760 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280772 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280788 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280800 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280812 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280828 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280840 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280852 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280868 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280880 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280892 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280908 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280920 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280932 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280948 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280960 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":280972 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":280988 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281000 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281012 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281028 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281040 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281052 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281068 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281080 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281092 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281108 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281120 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281132 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281148 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281160 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281172 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281188 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281200 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281212 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281228 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281240 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281252 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281268 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281280 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281292 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281308 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281320 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281332 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281348 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281360 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281372 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281388 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281400 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281412 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281428 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281440 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281452 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281468 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281480 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281492 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281508 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281520 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281532 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281548 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281560 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281572 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281588 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281600 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281612 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281628 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281640 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281652 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281668 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281680 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281692 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281708 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281720 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281732 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281748 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281760 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":281772 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":281788 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":281800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":281808 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":281832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":281864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":281888 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":281912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":281944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":281968 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":281992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282048 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282128 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282208 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282288 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282368 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282448 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282528 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282608 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282688 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282768 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282848 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282928 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283008 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283088 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283112 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283168 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283224 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283248 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283272 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283304 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283328 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283352 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283384 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283408 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283488 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283568 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283648 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283728 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283808 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283888 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283968 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":283992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284048 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284128 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284208 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284288 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284368 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284448 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284528 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284608 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284688 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284768 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284848 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284928 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285008 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":285032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285088 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":285112 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285168 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":285192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285224 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285248 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":285272 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285304 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285328 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":285352 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285384 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285408 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":285432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285488 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":285512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285568 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":285592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285648 + }, + { + "buffer":0, + "byteLength":204, + "byteOffset":285672 + }, + { + "buffer":0, + "byteLength":816, + "byteOffset":285876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286692 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286716 + }, + { + "buffer":0, + "byteLength":816, + "byteOffset":286740 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":287556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":287580 + }, + { + "buffer":0, + "byteLength":816, + "byteOffset":287604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288420 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288444 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":288468 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288500 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288524 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":288548 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288580 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288604 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":288628 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288660 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288684 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":288708 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288740 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288764 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":288788 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288820 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288844 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":288868 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288900 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288924 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":288948 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288980 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289004 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":289028 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289060 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289084 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":289108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289140 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289164 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":289188 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289220 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289244 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":289268 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289324 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":289348 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289380 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":289404, + "uri":"Elephant.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Elephant/Elephant.mesh b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.mesh new file mode 100644 index 0000000000..ab2a78aed4 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.mesh differ diff --git a/jme3-testdata/src/main/resources/Models/Elephant/Elephant.mesh.xml b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.mesh.xml index 8bffa1a5e6..33dae9fdb8 100644 --- a/jme3-testdata/src/main/resources/Models/Elephant/Elephant.mesh.xml +++ b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.mesh.xml @@ -1,62928 +1,62928 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jme3-testdata/src/main/resources/Models/Elephant/Elephant.skeleton b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.skeleton new file mode 100644 index 0000000000..18b4863fb3 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.skeleton differ diff --git a/jme3-testdata/src/main/resources/Models/Elephant/Elephant.skeleton.xml b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.skeleton.xml index 79da840d4c..4545f86334 100644 --- a/jme3-testdata/src/main/resources/Models/Elephant/Elephant.skeleton.xml +++ b/jme3-testdata/src/main/resources/Models/Elephant/Elephant.skeleton.xml @@ -1,4 +1,4 @@ - + @@ -14,7 +14,7 @@ - + @@ -56,7 +56,7 @@ - + @@ -74,7 +74,7 @@ - + @@ -86,7 +86,7 @@ - + @@ -110,19 +110,19 @@ - + - + - + @@ -146,7 +146,7 @@ - + @@ -164,7 +164,7 @@ - + @@ -182,19 +182,19 @@ - + - + - + @@ -218,7 +218,7 @@ - + @@ -236,7 +236,7 @@ - + @@ -254,7 +254,7 @@ - + @@ -278,7 +278,7 @@ - + @@ -297,7 +297,7 @@ - + @@ -321,7 +321,7 @@ - + @@ -356,7 +356,7 @@ - + @@ -496,25 +496,25 @@ - + - + - + - + @@ -532,7 +532,7 @@ - + @@ -544,7 +544,7 @@ - + @@ -568,13 +568,13 @@ - + - + @@ -616,7 +616,7 @@ - + @@ -652,7 +652,7 @@ - + @@ -670,7 +670,7 @@ - + @@ -748,19 +748,19 @@ - + - + - + @@ -800,13 +800,13 @@ - + - + @@ -1040,7 +1040,7 @@ - + @@ -1064,7 +1064,7 @@ - + @@ -1082,7 +1082,7 @@ - + @@ -1116,13 +1116,13 @@ - + - + @@ -1134,7 +1134,7 @@ - + @@ -1152,13 +1152,13 @@ - + - + @@ -1170,19 +1170,19 @@ - + - + - + @@ -1200,31 +1200,31 @@ - + - + - + - + - + @@ -1236,49 +1236,49 @@ - + - + - + - + - + - + - + - + @@ -1308,7 +1308,7 @@ - + @@ -1320,37 +1320,37 @@ - + - + - + - + - + - + @@ -1362,7 +1362,7 @@ - + @@ -1374,7 +1374,7 @@ - + @@ -1392,13 +1392,13 @@ - + - + diff --git a/jme3-testdata/src/main/resources/Models/Elephant/OgreXMLConverter.log b/jme3-testdata/src/main/resources/Models/Elephant/OgreXMLConverter.log new file mode 100644 index 0000000000..74103237ed --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Elephant/OgreXMLConverter.log @@ -0,0 +1,84 @@ +10:54:17: Creating resource group General +10:54:17: Creating resource group OgreInternal +10:54:17: Creating resource group OgreAutodetect +10:54:17: Registering ResourceManager for type Mesh +10:54:17: Registering ResourceManager for type Material +10:54:17: Registering ResourceManager for type Skeleton +10:54:17: XMLSkeletonSerializer writing skeleton data to C:\Users\USER\Desktop\Projects\Open Source\jmonkeyengine\jme3-testdata\src\main\resources\Models\Elephant\Elephant.skeleton.xml... +10:54:17: Populating DOM... +10:54:17: Exporting bones.. +10:54:18: There are 63 bones. +10:54:18: Exporting Bone number 0 +10:54:18: Exporting Bone number 1 +10:54:18: Exporting Bone number 2 +10:54:18: Exporting Bone number 3 +10:54:18: Exporting Bone number 4 +10:54:18: Exporting Bone number 5 +10:54:18: Exporting Bone number 6 +10:54:18: Exporting Bone number 7 +10:54:18: Exporting Bone number 8 +10:54:18: Exporting Bone number 9 +10:54:18: Exporting Bone number 10 +10:54:18: Exporting Bone number 11 +10:54:18: Exporting Bone number 12 +10:54:18: Exporting Bone number 13 +10:54:18: Exporting Bone number 14 +10:54:18: Exporting Bone number 15 +10:54:18: Exporting Bone number 16 +10:54:18: Exporting Bone number 17 +10:54:18: Exporting Bone number 18 +10:54:18: Exporting Bone number 19 +10:54:18: Exporting Bone number 20 +10:54:18: Exporting Bone number 21 +10:54:18: Exporting Bone number 22 +10:54:18: Exporting Bone number 23 +10:54:18: Exporting Bone number 24 +10:54:18: Exporting Bone number 25 +10:54:18: Exporting Bone number 26 +10:54:18: Exporting Bone number 27 +10:54:18: Exporting Bone number 28 +10:54:18: Exporting Bone number 29 +10:54:18: Exporting Bone number 30 +10:54:18: Exporting Bone number 31 +10:54:18: Exporting Bone number 32 +10:54:18: Exporting Bone number 33 +10:54:18: Exporting Bone number 34 +10:54:18: Exporting Bone number 35 +10:54:18: Exporting Bone number 36 +10:54:18: Exporting Bone number 37 +10:54:18: Exporting Bone number 38 +10:54:18: Exporting Bone number 39 +10:54:18: Exporting Bone number 40 +10:54:18: Exporting Bone number 41 +10:54:18: Exporting Bone number 42 +10:54:18: Exporting Bone number 43 +10:54:18: Exporting Bone number 44 +10:54:18: Exporting Bone number 45 +10:54:18: Exporting Bone number 46 +10:54:18: Exporting Bone number 47 +10:54:18: Exporting Bone number 48 +10:54:18: Exporting Bone number 49 +10:54:18: Exporting Bone number 50 +10:54:18: Exporting Bone number 51 +10:54:18: Exporting Bone number 52 +10:54:18: Exporting Bone number 53 +10:54:18: Exporting Bone number 54 +10:54:18: Exporting Bone number 55 +10:54:18: Exporting Bone number 56 +10:54:18: Exporting Bone number 57 +10:54:18: Exporting Bone number 58 +10:54:18: Exporting Bone number 59 +10:54:18: Exporting Bone number 60 +10:54:18: Exporting Bone number 61 +10:54:18: Exporting Bone number 62 +10:54:18: Bones exported. +10:54:18: Exporting animations, count=2 +10:54:18: Exporting animation: +10:54:18: Animation exported. +10:54:18: Exporting animation: legUp +10:54:18: Animation exported. +10:54:18: DOM populated, writing XML file.. +10:54:18: XMLSkeletonSerializer export successful. +10:54:18: Unregistering ResourceManager for type Skeleton +10:54:18: Unregistering ResourceManager for type Material +10:54:18: Unregistering ResourceManager for type Mesh diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/Car.bin b/jme3-testdata/src/main/resources/Models/Ferrari/Car.bin new file mode 100644 index 0000000000..66484146fa Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Ferrari/Car.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/Car.gltf b/jme3-testdata/src/main/resources/Models/Ferrari/Car.gltf new file mode 100644 index 0000000000..be3e87f99b --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Ferrari/Car.gltf @@ -0,0 +1,137 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"Car" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"fskin.002/SOLID/TEX/fskin.jpg", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Car.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"Car", + "uri":"Car.jpg" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":798, + "max":[ + 1.4143799543380737, + 1.7419300079345703, + 3.0946900844573975 + ], + "min":[ + -1.435420036315918, + 0.1716489940881729, + -3.071510076522827 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":798, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":798, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":3288, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":9576, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":9576, + "byteOffset":9576, + "target":34962 + }, + { + "buffer":0, + "byteLength":6384, + "byteOffset":19152, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":25536, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":32112, + "uri":"Car.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/Car.mesh.xml b/jme3-testdata/src/main/resources/Models/Ferrari/Car.mesh.xml deleted file mode 100644 index 8668bda731..0000000000 --- a/jme3-testdata/src/main/resources/Models/Ferrari/Car.mesh.xml +++ /dev/null @@ -1,5083 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/Car.scene b/jme3-testdata/src/main/resources/Models/Ferrari/Car.scene deleted file mode 100644 index 5ff38600d0..0000000000 --- a/jme3-testdata/src/main/resources/Models/Ferrari/Car.scene +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/CarScene.bin b/jme3-testdata/src/main/resources/Models/Ferrari/CarScene.bin new file mode 100644 index 0000000000..8e5fa007be Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Ferrari/CarScene.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/CarScene.gltf b/jme3-testdata/src/main/resources/Models/Ferrari/CarScene.gltf new file mode 100644 index 0000000000..7b730ca3a5 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Ferrari/CarScene.gltf @@ -0,0 +1,445 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0, + 1, + 2, + 3, + 4 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"back_left" + }, + { + "mesh":1, + "name":"back_right" + }, + { + "mesh":2, + "name":"car" + }, + { + "mesh":3, + "name":"front_right" + }, + { + "mesh":4, + "name":"front_left" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"fskin.002/SOLID/TEX/fskin.jpg", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"WheelBackLeft", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + }, + { + "name":"WheelBackRight", + "primitives":[ + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":0 + } + ] + }, + { + "name":"Car", + "primitives":[ + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":0 + } + ] + }, + { + "name":"WheelFrontRight", + "primitives":[ + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15, + "material":0 + } + ] + }, + { + "name":"WheelFrontLeft", + "primitives":[ + { + "attributes":{ + "POSITION":16, + "NORMAL":17, + "TEXCOORD_0":18 + }, + "indices":19, + "material":0 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"Car", + "uri":"Car.jpg" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":174, + "max":[ + -0.9168620109558105, + 0.946304976940155, + 2.5739400386810303 + ], + "min":[ + -1.3459999561309814, + 0.0008440000237897038, + 1.6290199756622314 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":174, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":174, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":732, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":174, + "max":[ + 1.3249599933624268, + 0.946304976940155, + 2.5739400386810303 + ], + "min":[ + 0.8958209753036499, + 0.0008440000237897038, + 1.6290199756622314 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":174, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":174, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":732, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":798, + "max":[ + 1.4143799543380737, + 1.7419300079345703, + 3.0946900844573975 + ], + "min":[ + -1.435420036315918, + 0.1716489940881729, + -3.071510076522827 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":798, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":798, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":3288, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":174, + "max":[ + 1.3249599933624268, + 0.946304976940155, + -1.2177300453186035 + ], + "min":[ + 0.8958209753036499, + 0.0008440000237897038, + -2.1626501083374023 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":174, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":174, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":732, + "type":"SCALAR" + }, + { + "bufferView":16, + "componentType":5126, + "count":174, + "max":[ + -0.9168620109558105, + 0.946304976940155, + -1.2177300453186035 + ], + "min":[ + -1.3459999561309814, + 0.0008440000237897038, + -2.1626501083374023 + ], + "type":"VEC3" + }, + { + "bufferView":17, + "componentType":5126, + "count":174, + "type":"VEC3" + }, + { + "bufferView":18, + "componentType":5126, + "count":174, + "type":"VEC2" + }, + { + "bufferView":19, + "componentType":5123, + "count":732, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":2088, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":2088, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":4176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":5568, + "target":34963 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":7032, + "target":34962 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":9120, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":11208, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":12600, + "target":34963 + }, + { + "buffer":0, + "byteLength":9576, + "byteOffset":14064, + "target":34962 + }, + { + "buffer":0, + "byteLength":9576, + "byteOffset":23640, + "target":34962 + }, + { + "buffer":0, + "byteLength":6384, + "byteOffset":33216, + "target":34962 + }, + { + "buffer":0, + "byteLength":6576, + "byteOffset":39600, + "target":34963 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":46176, + "target":34962 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":48264, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":50352, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":51744, + "target":34963 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":53208, + "target":34962 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":55296, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":57384, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":58776, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":60240, + "uri":"CarScene.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/OgreXMLConverter.log b/jme3-testdata/src/main/resources/Models/Ferrari/OgreXMLConverter.log new file mode 100644 index 0000000000..757685896d --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Ferrari/OgreXMLConverter.log @@ -0,0 +1,16 @@ +23:40:31: Creating resource group General +23:40:31: Creating resource group OgreInternal +23:40:31: Creating resource group OgreAutodetect +23:40:31: Registering ResourceManager for type Mesh +23:40:31: Registering ResourceManager for type Material +23:40:31: Registering ResourceManager for type Skeleton +23:40:31: XMLMeshSerializer writing mesh data to C:\Users\USER\Desktop\Projects\Open Source\jmonkeyengine\jme3-testdata\src\main\resources\Models\Ferrari\WheelFrontLeft.mesh.xml... +23:40:31: Populating DOM... +23:40:31: Writing submesh... +23:40:31: Dedicated geometry bone assignments exported. +23:40:31: Submesh exported. +23:40:31: DOM populated, writing XML file.. +23:40:31: XMLMeshSerializer export successful. +23:40:31: Unregistering ResourceManager for type Skeleton +23:40:31: Unregistering ResourceManager for type Material +23:40:31: Unregistering ResourceManager for type Mesh diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackLeft.bin b/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackLeft.bin new file mode 100644 index 0000000000..c59b7aa251 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackLeft.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackLeft.gltf b/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackLeft.gltf new file mode 100644 index 0000000000..a2322c5253 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackLeft.gltf @@ -0,0 +1,137 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"WheelBackLeft" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"fskin.002/SOLID/TEX/fskin.jpg", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"WheelBackLeft.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"Car", + "uri":"Car.jpg" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":174, + "max":[ + -0.9168620109558105, + 0.946304976940155, + 2.5739400386810303 + ], + "min":[ + -1.3459999561309814, + 0.0008440000237897038, + 1.6290199756622314 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":174, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":174, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":732, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":2088, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":2088, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":4176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":5568, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":7032, + "uri":"WheelBackLeft.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackLeft.mesh.xml b/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackLeft.mesh.xml deleted file mode 100644 index 75999b2cc5..0000000000 --- a/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackLeft.mesh.xml +++ /dev/null @@ -1,1126 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackRight.bin b/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackRight.bin new file mode 100644 index 0000000000..ad3bc2ce01 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackRight.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackRight.gltf b/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackRight.gltf new file mode 100644 index 0000000000..6dec6f6ce9 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackRight.gltf @@ -0,0 +1,137 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"WheelBackRight" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"fskin.002/SOLID/TEX/fskin.jpg", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"WheelBackRight.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"Car", + "uri":"Car.jpg" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":174, + "max":[ + 1.3249599933624268, + 0.946304976940155, + 2.5739400386810303 + ], + "min":[ + 0.8958209753036499, + 0.0008440000237897038, + 1.6290199756622314 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":174, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":174, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":732, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":2088, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":2088, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":4176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":5568, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":7032, + "uri":"WheelBackRight.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackRight.mesh.xml b/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackRight.mesh.xml deleted file mode 100644 index d0d7f1f4f2..0000000000 --- a/jme3-testdata/src/main/resources/Models/Ferrari/WheelBackRight.mesh.xml +++ /dev/null @@ -1,1126 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontLeft.bin b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontLeft.bin new file mode 100644 index 0000000000..7d30280920 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontLeft.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontLeft.gltf b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontLeft.gltf new file mode 100644 index 0000000000..9b45031150 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontLeft.gltf @@ -0,0 +1,137 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"WheelFrontRight" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"fskin.002/SOLID/TEX/fskin.jpg", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"WheelFrontRight.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"Car", + "uri":"Car.jpg" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":174, + "max":[ + 1.3249599933624268, + 0.946304976940155, + -1.2177300453186035 + ], + "min":[ + 0.8958209753036499, + 0.0008440000237897038, + -2.1626501083374023 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":174, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":174, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":732, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":2088, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":2088, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":4176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":5568, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":7032, + "uri":"WheelFrontLeft.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontLeft.mesh.xml b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontLeft.mesh.xml deleted file mode 100644 index 57e308c4f9..0000000000 --- a/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontLeft.mesh.xml +++ /dev/null @@ -1,1126 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.bin b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.bin new file mode 100644 index 0000000000..7d30280920 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.gltf b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.gltf new file mode 100644 index 0000000000..e1e5e75446 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.gltf @@ -0,0 +1,137 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"WheelFrontRight" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"fskin.002/SOLID/TEX/fskin.jpg", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"WheelFrontRight.002", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"Car", + "uri":"Car.jpg" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":174, + "max":[ + 1.3249599933624268, + 0.946304976940155, + -1.2177300453186035 + ], + "min":[ + 0.8958209753036499, + 0.0008440000237897038, + -2.1626501083374023 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":174, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":174, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":732, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":2088, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":2088, + "byteOffset":2088, + "target":34962 + }, + { + "buffer":0, + "byteLength":1392, + "byteOffset":4176, + "target":34962 + }, + { + "buffer":0, + "byteLength":1464, + "byteOffset":5568, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":7032, + "uri":"WheelFrontRight.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.mesh b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.mesh new file mode 100644 index 0000000000..102ea22f03 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.mesh differ diff --git a/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.mesh.xml b/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.mesh.xml deleted file mode 100644 index 6dc7ee46fc..0000000000 --- a/jme3-testdata/src/main/resources/Models/Ferrari/WheelFrontRight.mesh.xml +++ /dev/null @@ -1,1126 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/HoverTank/OgreXMLConverter.log b/jme3-testdata/src/main/resources/Models/HoverTank/OgreXMLConverter.log new file mode 100644 index 0000000000..8246189183 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/HoverTank/OgreXMLConverter.log @@ -0,0 +1,39 @@ +02:20:25: Creating resource group General +02:20:25: Creating resource group OgreInternal +02:20:25: Creating resource group OgreAutodetect +02:20:25: Registering ResourceManager for type Mesh +02:20:25: Registering ResourceManager for type Material +02:20:25: Registering ResourceManager for type Skeleton +02:20:25: XMLMeshSerializer reading mesh data from C:\Users\USER\Desktop\Projects\Open Source\jmonkeyengine\jme3-testdata\src\main\resources\Models\HoverTank\Tank2.mesh.xml... +02:20:25: Reading submeshes... +02:20:25: Reading geometry... +02:20:25: Geometry done... +02:20:25: Submeshes done. +02:20:25: Parsing LOD information... +02:20:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:20:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:20:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:20:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:20:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:20:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:20:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:20:25: LOD information done. +02:20:25: XMLMeshSerializer import successful. +02:20:25: MeshSerializer writing mesh data to stream ... +02:20:25: File header written. +02:20:25: Writing mesh data... +02:20:25: Writing submesh... +02:20:25: Exporting submesh texture aliases... +02:20:25: Submesh texture aliases exported. +02:20:25: Submesh exported. +02:20:25: Exporting LOD information.... +02:20:25: LOD information exported. +02:20:25: Exporting bounds information.... +02:20:25: Bounds information exported. +02:20:25: Exporting submesh name table... +02:20:25: Submesh name table exported. +02:20:25: Mesh data exported. +02:20:25: MeshSerializer export successful. +02:20:25: Unregistering ResourceManager for type Skeleton +02:20:25: Unregistering ResourceManager for type Material +02:20:25: Unregistering ResourceManager for type Mesh diff --git a/jme3-testdata/src/main/resources/Models/HoverTank/Tank2.bin b/jme3-testdata/src/main/resources/Models/HoverTank/Tank2.bin new file mode 100644 index 0000000000..734c8f97df Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/HoverTank/Tank2.bin differ diff --git a/jme3-testdata/src/main/resources/Models/HoverTank/Tank2.gltf b/jme3-testdata/src/main/resources/Models/HoverTank/Tank2.gltf new file mode 100644 index 0000000000..8736899ffa --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/HoverTank/Tank2.gltf @@ -0,0 +1,148 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"Tank2" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Models/HoverTank/tank.j3m.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.4000000059604645 + } + } + ], + "meshes":[ + { + "name":"Tank2.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "COLOR_0":3, + "COLOR_1":4 + }, + "indices":5, + "material":0 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":6640, + "max":[ + 4.938399791717529, + 2.7506000995635986, + 6.065849781036377 + ], + "min":[ + -4.938399791717529, + -1.1489100456237793, + -5.820030212402344 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":6640, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":6640, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5121, + "count":6640, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":4, + "componentType":5126, + "count":6640, + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5123, + "count":29076, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":79680, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":79680, + "byteOffset":79680, + "target":34962 + }, + { + "buffer":0, + "byteLength":53120, + "byteOffset":159360, + "target":34962 + }, + { + "buffer":0, + "byteLength":26560, + "byteOffset":212480, + "target":34962 + }, + { + "buffer":0, + "byteLength":79680, + "byteOffset":239040, + "target":34962 + }, + { + "buffer":0, + "byteLength":58152, + "byteOffset":318720, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":376872, + "uri":"Tank2.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/HoverTank/Tank2.mesh.xml b/jme3-testdata/src/main/resources/Models/HoverTank/Tank2.mesh.xml deleted file mode 100644 index 514061cb96..0000000000 --- a/jme3-testdata/src/main/resources/Models/HoverTank/Tank2.mesh.xml +++ /dev/null @@ -1,80192 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/MonkeyHead/MonkeyHead.bin b/jme3-testdata/src/main/resources/Models/MonkeyHead/MonkeyHead.bin new file mode 100644 index 0000000000..5dd4eeef35 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/MonkeyHead/MonkeyHead.bin differ diff --git a/jme3-testdata/src/main/resources/Models/MonkeyHead/MonkeyHead.gltf b/jme3-testdata/src/main/resources/Models/MonkeyHead/MonkeyHead.gltf new file mode 100644 index 0000000000..66827d952a --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/MonkeyHead/MonkeyHead.gltf @@ -0,0 +1,121 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"MonkeyHead" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Models/MonkeyHead/MonkeyHead.j3m", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.4000000059604645 + } + } + ], + "meshes":[ + { + "name":"MonkeyHead", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":2562, + "max":[ + 1.5853300094604492, + 1.2509499788284302, + 1.5354900360107422 + ], + "min":[ + -1.5853300094604492, + -1.2009299993515015, + -0.8439679741859436 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":2562, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":2562, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":14742, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":30744, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":30744, + "byteOffset":30744, + "target":34962 + }, + { + "buffer":0, + "byteLength":20496, + "byteOffset":61488, + "target":34962 + }, + { + "buffer":0, + "byteLength":29484, + "byteOffset":81984, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":111468, + "uri":"MonkeyHead.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/MonkeyHead/MonkeyHead.mesh b/jme3-testdata/src/main/resources/Models/MonkeyHead/MonkeyHead.mesh new file mode 100644 index 0000000000..00a6fcaa25 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/MonkeyHead/MonkeyHead.mesh differ diff --git a/jme3-testdata/src/main/resources/Models/MonkeyHead/OgreXMLConverter.log b/jme3-testdata/src/main/resources/Models/MonkeyHead/OgreXMLConverter.log new file mode 100644 index 0000000000..c82f6302e8 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/MonkeyHead/OgreXMLConverter.log @@ -0,0 +1,37 @@ +02:29:25: Creating resource group General +02:29:25: Creating resource group OgreInternal +02:29:25: Creating resource group OgreAutodetect +02:29:25: Registering ResourceManager for type Mesh +02:29:25: Registering ResourceManager for type Material +02:29:25: Registering ResourceManager for type Skeleton +02:29:25: XMLMeshSerializer reading mesh data from C:\Users\USER\Desktop\Projects\Open Source\jmonkeyengine\jme3-testdata\src\main\resources\Models\MonkeyHead\MonkeyHead.mesh.xml... +02:29:25: Reading submeshes... +02:29:25: Reading geometry... +02:29:25: Geometry done... +02:29:25: Submeshes done. +02:29:25: Parsing LOD information... +02:29:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:29:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:29:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:29:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:29:25: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:29:25: LOD information done. +02:29:25: XMLMeshSerializer import successful. +02:29:25: MeshSerializer writing mesh data to stream ... +02:29:25: File header written. +02:29:25: Writing mesh data... +02:29:25: Writing submesh... +02:29:25: Exporting submesh texture aliases... +02:29:25: Submesh texture aliases exported. +02:29:25: Submesh exported. +02:29:25: Exporting LOD information.... +02:29:25: LOD information exported. +02:29:25: Exporting bounds information.... +02:29:25: Bounds information exported. +02:29:25: Exporting submesh name table... +02:29:25: Submesh name table exported. +02:29:25: Mesh data exported. +02:29:25: MeshSerializer export successful. +02:29:25: Unregistering ResourceManager for type Skeleton +02:29:25: Unregistering ResourceManager for type Material +02:29:25: Unregistering ResourceManager for type Mesh diff --git a/jme3-testdata/src/main/resources/Models/Ninja/Ninja.bin b/jme3-testdata/src/main/resources/Models/Ninja/Ninja.bin new file mode 100644 index 0000000000..457d3d7d4e Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Ninja/Ninja.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Ninja/Ninja.gltf b/jme3-testdata/src/main/resources/Models/Ninja/Ninja.gltf new file mode 100644 index 0000000000..d9125ed462 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Ninja/Ninja.gltf @@ -0,0 +1,49570 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 28, + 29 + ] + } + ], + "nodes":[ + { + "name":"Joint8", + "translation":[ + -3.083660125732422, + -0.18504583835601807, + 9.18524169921875 + ] + }, + { + "children":[ + 0 + ], + "name":"Joint7", + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + -1.0444002151489258, + 0, + 4.7430419921875 + ] + }, + { + "name":"Joint29", + "translation":[ + -76.09049987792969, + -0.028493881225585938, + -5.80133056640625 + ] + }, + { + "children":[ + 2 + ], + "name":"Joint13", + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + -3.425459623336792, + 0.13692092895507812, + -6.242652893066406 + ] + }, + { + "children":[ + 3 + ], + "name":"Joint12", + "translation":[ + -3.1331799030303955, + 1.3381519317626953, + -28.603790283203125 + ] + }, + { + "children":[ + 4 + ], + "name":"Joint11", + "translation":[ + -5.744180202484131, + 3.3748302459716797, + -29.445114135742188 + ] + }, + { + "children":[ + 5 + ], + "name":"Joint10", + "translation":[ + 0, + 5.90595817565918, + -2.023284912109375 + ] + }, + { + "children":[ + 6 + ], + "name":"Joint9", + "translation":[ + 6.7672200202941895, + 14.343101501464844, + -3.6573944091796875 + ] + }, + { + "name":"Joint17", + "translation":[ + -3.1331799030303955, + -1.6874237060546875, + -30.286399841308594 + ] + }, + { + "children":[ + 8 + ], + "name":"Joint16", + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + -5.744180202484131, + -2.531129837036133, + -28.603805541992188 + ] + }, + { + "children":[ + 9 + ], + "name":"Joint15", + "translation":[ + 0, + -7.171534538269043, + -2.10321044921875 + ] + }, + { + "children":[ + 10 + ], + "name":"Joint14", + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + 6.7672200202941895, + -14.343101501464844, + -3.6910400390625 + ] + }, + { + "children":[ + 1, + 7, + 11 + ], + "name":"Joint6", + "translation":[ + 2.610990047454834, + 1.4901161193847656e-08, + 19.770309448242188 + ] + }, + { + "children":[ + 12 + ], + "name":"Joint5", + "translation":[ + -1.02305006980896, + -0.8437091708183289, + 17.151596069335938 + ] + }, + { + "children":[ + 13 + ], + "name":"Joint4", + "translation":[ + -2.384185791015625e-07, + 0.42185401916503906, + 8.412879943847656 + ] + }, + { + "children":[ + 14 + ], + "name":"Joint3", + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + -1.0444000959396362, + 0.42185401916503906, + 9.6748046875 + ] + }, + { + "name":"Joint22", + "translation":[ + -7.618880271911621, + 0.42185497283935547, + -0.43804931640625 + ] + }, + { + "children":[ + 16 + ], + "name":"Joint21", + "translation":[ + -13.104900360107422, + 1.439061164855957, + -9.370452880859375 + ] + }, + { + "children":[ + 17 + ], + "name":"Joint20", + "translation":[ + 11.34000015258789, + -0.8437089920043945, + -46.19889450073242 + ] + }, + { + "children":[ + 18 + ], + "name":"Joint19", + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + 1.5665900707244873, + 2.9529800415039062, + -43.747005462646484 + ] + }, + { + "children":[ + 19 + ], + "name":"Joint18", + "translation":[ + -2.088789939880371, + 9.70265007019043, + -8.412895202636719 + ] + }, + { + "name":"Joint27", + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + -7.618880271911621, + 0, + -0.0174102783203125 + ] + }, + { + "children":[ + 21 + ], + "name":"Joint26", + "translation":[ + -13.104900360107422, + -0.5578517913818359, + -9.791099548339844 + ] + }, + { + "children":[ + 22 + ], + "name":"Joint25", + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + 11.34000015258789, + -0.8437089920043945, + -46.6194953918457 + ] + }, + { + "children":[ + 23 + ], + "name":"Joint24", + "translation":[ + 1.5665900707244873, + -3.37484073638916, + -43.3263053894043 + ] + }, + { + "children":[ + 24 + ], + "name":"Joint23", + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + -2.088789939880371, + -8.858940124511719, + -8.412895202636719 + ] + }, + { + "children":[ + 15, + 20, + 25 + ], + "name":"Joint2", + "translation":[ + -1.5665899515151978, + 0, + 108.1050033569336 + ] + }, + { + "children":[ + 26 + ], + "name":"Joint1", + "rotation":[ + -0.5, + -0.5, + -0.5, + 0.5 + ], + "translation":[ + 0.1850460022687912, + 0.5119600296020508, + 0 + ] + }, + { + "children":[ + 27 + ], + "name":"Ninja" + }, + { + "mesh":0, + "name":"Ninja.001", + "skin":0 + } + ], + "animations":[ + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Attack1", + "samplers":[ + { + "input":7, + "interpolation":"LINEAR", + "output":8 + }, + { + "input":9, + "interpolation":"STEP", + "output":10 + }, + { + "input":9, + "interpolation":"STEP", + "output":11 + }, + { + "input":9, + "interpolation":"STEP", + "output":12 + }, + { + "input":9, + "interpolation":"STEP", + "output":13 + }, + { + "input":9, + "interpolation":"STEP", + "output":14 + }, + { + "input":9, + "interpolation":"STEP", + "output":15 + }, + { + "input":9, + "interpolation":"STEP", + "output":16 + }, + { + "input":9, + "interpolation":"STEP", + "output":17 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":18 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":19 + }, + { + "input":9, + "interpolation":"STEP", + "output":20 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":21 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":22 + }, + { + "input":9, + "interpolation":"STEP", + "output":23 + }, + { + "input":9, + "interpolation":"STEP", + "output":24 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":25 + }, + { + "input":9, + "interpolation":"STEP", + "output":26 + }, + { + "input":9, + "interpolation":"STEP", + "output":27 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":28 + }, + { + "input":9, + "interpolation":"STEP", + "output":29 + }, + { + "input":9, + "interpolation":"STEP", + "output":30 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":31 + }, + { + "input":9, + "interpolation":"STEP", + "output":32 + }, + { + "input":9, + "interpolation":"STEP", + "output":33 + }, + { + "input":9, + "interpolation":"STEP", + "output":34 + }, + { + "input":9, + "interpolation":"STEP", + "output":35 + }, + { + "input":9, + "interpolation":"STEP", + "output":36 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":37 + }, + { + "input":9, + "interpolation":"STEP", + "output":38 + }, + { + "input":9, + "interpolation":"STEP", + "output":39 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":40 + }, + { + "input":9, + "interpolation":"STEP", + "output":41 + }, + { + "input":9, + "interpolation":"STEP", + "output":42 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":43 + }, + { + "input":9, + "interpolation":"STEP", + "output":44 + }, + { + "input":9, + "interpolation":"STEP", + "output":45 + }, + { + "input":9, + "interpolation":"STEP", + "output":46 + }, + { + "input":9, + "interpolation":"STEP", + "output":47 + }, + { + "input":9, + "interpolation":"STEP", + "output":48 + }, + { + "input":9, + "interpolation":"STEP", + "output":49 + }, + { + "input":9, + "interpolation":"STEP", + "output":50 + }, + { + "input":9, + "interpolation":"STEP", + "output":51 + }, + { + "input":9, + "interpolation":"STEP", + "output":52 + }, + { + "input":9, + "interpolation":"STEP", + "output":53 + }, + { + "input":9, + "interpolation":"STEP", + "output":54 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":55 + }, + { + "input":9, + "interpolation":"STEP", + "output":56 + }, + { + "input":9, + "interpolation":"STEP", + "output":57 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":58 + }, + { + "input":9, + "interpolation":"STEP", + "output":59 + }, + { + "input":9, + "interpolation":"STEP", + "output":60 + }, + { + "input":9, + "interpolation":"STEP", + "output":61 + }, + { + "input":9, + "interpolation":"STEP", + "output":62 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":63 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":64 + }, + { + "input":9, + "interpolation":"STEP", + "output":65 + }, + { + "input":9, + "interpolation":"STEP", + "output":66 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":67 + }, + { + "input":9, + "interpolation":"STEP", + "output":68 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":69 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":70 + }, + { + "input":9, + "interpolation":"STEP", + "output":71 + }, + { + "input":9, + "interpolation":"STEP", + "output":72 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":73 + }, + { + "input":9, + "interpolation":"STEP", + "output":74 + }, + { + "input":9, + "interpolation":"STEP", + "output":75 + }, + { + "input":9, + "interpolation":"STEP", + "output":76 + }, + { + "input":9, + "interpolation":"STEP", + "output":77 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":78 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":79 + }, + { + "input":9, + "interpolation":"STEP", + "output":80 + }, + { + "input":9, + "interpolation":"STEP", + "output":81 + }, + { + "input":9, + "interpolation":"STEP", + "output":82 + }, + { + "input":9, + "interpolation":"STEP", + "output":83 + }, + { + "input":9, + "interpolation":"STEP", + "output":84 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":85 + }, + { + "input":9, + "interpolation":"STEP", + "output":86 + }, + { + "input":9, + "interpolation":"STEP", + "output":87 + }, + { + "input":9, + "interpolation":"STEP", + "output":88 + }, + { + "input":9, + "interpolation":"STEP", + "output":89 + }, + { + "input":9, + "interpolation":"STEP", + "output":90 + }, + { + "input":9, + "interpolation":"STEP", + "output":91 + }, + { + "input":9, + "interpolation":"STEP", + "output":92 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Attack2", + "samplers":[ + { + "input":93, + "interpolation":"LINEAR", + "output":94 + }, + { + "input":95, + "interpolation":"STEP", + "output":96 + }, + { + "input":95, + "interpolation":"STEP", + "output":97 + }, + { + "input":95, + "interpolation":"STEP", + "output":98 + }, + { + "input":95, + "interpolation":"STEP", + "output":99 + }, + { + "input":95, + "interpolation":"STEP", + "output":100 + }, + { + "input":95, + "interpolation":"STEP", + "output":101 + }, + { + "input":95, + "interpolation":"STEP", + "output":102 + }, + { + "input":95, + "interpolation":"STEP", + "output":103 + }, + { + "input":95, + "interpolation":"STEP", + "output":104 + }, + { + "input":95, + "interpolation":"STEP", + "output":105 + }, + { + "input":95, + "interpolation":"STEP", + "output":106 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":107 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":108 + }, + { + "input":95, + "interpolation":"STEP", + "output":109 + }, + { + "input":95, + "interpolation":"STEP", + "output":110 + }, + { + "input":95, + "interpolation":"STEP", + "output":111 + }, + { + "input":95, + "interpolation":"STEP", + "output":112 + }, + { + "input":95, + "interpolation":"STEP", + "output":113 + }, + { + "input":95, + "interpolation":"STEP", + "output":114 + }, + { + "input":95, + "interpolation":"STEP", + "output":115 + }, + { + "input":95, + "interpolation":"STEP", + "output":116 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":117 + }, + { + "input":95, + "interpolation":"STEP", + "output":118 + }, + { + "input":95, + "interpolation":"STEP", + "output":119 + }, + { + "input":95, + "interpolation":"STEP", + "output":120 + }, + { + "input":95, + "interpolation":"STEP", + "output":121 + }, + { + "input":95, + "interpolation":"STEP", + "output":122 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":123 + }, + { + "input":95, + "interpolation":"STEP", + "output":124 + }, + { + "input":95, + "interpolation":"STEP", + "output":125 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":126 + }, + { + "input":95, + "interpolation":"STEP", + "output":127 + }, + { + "input":95, + "interpolation":"STEP", + "output":128 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":129 + }, + { + "input":95, + "interpolation":"STEP", + "output":130 + }, + { + "input":95, + "interpolation":"STEP", + "output":131 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":132 + }, + { + "input":95, + "interpolation":"STEP", + "output":133 + }, + { + "input":95, + "interpolation":"STEP", + "output":134 + }, + { + "input":95, + "interpolation":"STEP", + "output":135 + }, + { + "input":95, + "interpolation":"STEP", + "output":136 + }, + { + "input":95, + "interpolation":"STEP", + "output":137 + }, + { + "input":95, + "interpolation":"STEP", + "output":138 + }, + { + "input":95, + "interpolation":"STEP", + "output":139 + }, + { + "input":95, + "interpolation":"STEP", + "output":140 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":141 + }, + { + "input":95, + "interpolation":"STEP", + "output":142 + }, + { + "input":95, + "interpolation":"STEP", + "output":143 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":144 + }, + { + "input":95, + "interpolation":"STEP", + "output":145 + }, + { + "input":95, + "interpolation":"STEP", + "output":146 + }, + { + "input":95, + "interpolation":"STEP", + "output":147 + }, + { + "input":95, + "interpolation":"STEP", + "output":148 + }, + { + "input":95, + "interpolation":"STEP", + "output":149 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":150 + }, + { + "input":95, + "interpolation":"STEP", + "output":151 + }, + { + "input":95, + "interpolation":"STEP", + "output":152 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":153 + }, + { + "input":95, + "interpolation":"STEP", + "output":154 + }, + { + "input":95, + "interpolation":"STEP", + "output":155 + }, + { + "input":95, + "interpolation":"STEP", + "output":156 + }, + { + "input":95, + "interpolation":"STEP", + "output":157 + }, + { + "input":95, + "interpolation":"STEP", + "output":158 + }, + { + "input":95, + "interpolation":"STEP", + "output":159 + }, + { + "input":95, + "interpolation":"STEP", + "output":160 + }, + { + "input":95, + "interpolation":"STEP", + "output":161 + }, + { + "input":95, + "interpolation":"STEP", + "output":162 + }, + { + "input":95, + "interpolation":"STEP", + "output":163 + }, + { + "input":95, + "interpolation":"STEP", + "output":164 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":165 + }, + { + "input":95, + "interpolation":"STEP", + "output":166 + }, + { + "input":95, + "interpolation":"STEP", + "output":167 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":168 + }, + { + "input":95, + "interpolation":"STEP", + "output":169 + }, + { + "input":95, + "interpolation":"STEP", + "output":170 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":171 + }, + { + "input":95, + "interpolation":"STEP", + "output":172 + }, + { + "input":95, + "interpolation":"STEP", + "output":173 + }, + { + "input":95, + "interpolation":"STEP", + "output":174 + }, + { + "input":95, + "interpolation":"STEP", + "output":175 + }, + { + "input":95, + "interpolation":"STEP", + "output":176 + }, + { + "input":95, + "interpolation":"STEP", + "output":177 + }, + { + "input":95, + "interpolation":"STEP", + "output":178 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Attack3", + "samplers":[ + { + "input":179, + "interpolation":"LINEAR", + "output":180 + }, + { + "input":181, + "interpolation":"STEP", + "output":182 + }, + { + "input":181, + "interpolation":"STEP", + "output":183 + }, + { + "input":181, + "interpolation":"STEP", + "output":184 + }, + { + "input":181, + "interpolation":"STEP", + "output":185 + }, + { + "input":181, + "interpolation":"STEP", + "output":186 + }, + { + "input":181, + "interpolation":"STEP", + "output":187 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":188 + }, + { + "input":181, + "interpolation":"STEP", + "output":189 + }, + { + "input":181, + "interpolation":"STEP", + "output":190 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":191 + }, + { + "input":181, + "interpolation":"STEP", + "output":192 + }, + { + "input":181, + "interpolation":"STEP", + "output":193 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":194 + }, + { + "input":181, + "interpolation":"STEP", + "output":195 + }, + { + "input":181, + "interpolation":"STEP", + "output":196 + }, + { + "input":181, + "interpolation":"STEP", + "output":197 + }, + { + "input":181, + "interpolation":"STEP", + "output":198 + }, + { + "input":181, + "interpolation":"STEP", + "output":199 + }, + { + "input":181, + "interpolation":"STEP", + "output":200 + }, + { + "input":181, + "interpolation":"STEP", + "output":201 + }, + { + "input":181, + "interpolation":"STEP", + "output":202 + }, + { + "input":181, + "interpolation":"STEP", + "output":203 + }, + { + "input":181, + "interpolation":"STEP", + "output":204 + }, + { + "input":181, + "interpolation":"STEP", + "output":205 + }, + { + "input":181, + "interpolation":"STEP", + "output":206 + }, + { + "input":181, + "interpolation":"STEP", + "output":207 + }, + { + "input":181, + "interpolation":"STEP", + "output":208 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":209 + }, + { + "input":181, + "interpolation":"STEP", + "output":210 + }, + { + "input":181, + "interpolation":"STEP", + "output":211 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":212 + }, + { + "input":181, + "interpolation":"STEP", + "output":213 + }, + { + "input":181, + "interpolation":"STEP", + "output":214 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":215 + }, + { + "input":181, + "interpolation":"STEP", + "output":216 + }, + { + "input":181, + "interpolation":"STEP", + "output":217 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":218 + }, + { + "input":181, + "interpolation":"STEP", + "output":219 + }, + { + "input":181, + "interpolation":"STEP", + "output":220 + }, + { + "input":181, + "interpolation":"STEP", + "output":221 + }, + { + "input":181, + "interpolation":"STEP", + "output":222 + }, + { + "input":181, + "interpolation":"STEP", + "output":223 + }, + { + "input":181, + "interpolation":"STEP", + "output":224 + }, + { + "input":181, + "interpolation":"STEP", + "output":225 + }, + { + "input":181, + "interpolation":"STEP", + "output":226 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":227 + }, + { + "input":181, + "interpolation":"STEP", + "output":228 + }, + { + "input":181, + "interpolation":"STEP", + "output":229 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":230 + }, + { + "input":181, + "interpolation":"STEP", + "output":231 + }, + { + "input":181, + "interpolation":"STEP", + "output":232 + }, + { + "input":181, + "interpolation":"STEP", + "output":233 + }, + { + "input":181, + "interpolation":"STEP", + "output":234 + }, + { + "input":181, + "interpolation":"STEP", + "output":235 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":236 + }, + { + "input":181, + "interpolation":"STEP", + "output":237 + }, + { + "input":181, + "interpolation":"STEP", + "output":238 + }, + { + "input":181, + "interpolation":"STEP", + "output":239 + }, + { + "input":181, + "interpolation":"STEP", + "output":240 + }, + { + "input":181, + "interpolation":"STEP", + "output":241 + }, + { + "input":181, + "interpolation":"STEP", + "output":242 + }, + { + "input":181, + "interpolation":"STEP", + "output":243 + }, + { + "input":181, + "interpolation":"STEP", + "output":244 + }, + { + "input":181, + "interpolation":"STEP", + "output":245 + }, + { + "input":181, + "interpolation":"STEP", + "output":246 + }, + { + "input":181, + "interpolation":"STEP", + "output":247 + }, + { + "input":181, + "interpolation":"STEP", + "output":248 + }, + { + "input":181, + "interpolation":"STEP", + "output":249 + }, + { + "input":181, + "interpolation":"STEP", + "output":250 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":251 + }, + { + "input":181, + "interpolation":"STEP", + "output":252 + }, + { + "input":181, + "interpolation":"STEP", + "output":253 + }, + { + "input":181, + "interpolation":"STEP", + "output":254 + }, + { + "input":181, + "interpolation":"STEP", + "output":255 + }, + { + "input":181, + "interpolation":"STEP", + "output":256 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":257 + }, + { + "input":181, + "interpolation":"STEP", + "output":258 + }, + { + "input":181, + "interpolation":"STEP", + "output":259 + }, + { + "input":181, + "interpolation":"STEP", + "output":260 + }, + { + "input":181, + "interpolation":"STEP", + "output":261 + }, + { + "input":181, + "interpolation":"STEP", + "output":262 + }, + { + "input":181, + "interpolation":"STEP", + "output":263 + }, + { + "input":181, + "interpolation":"STEP", + "output":264 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Backflip", + "samplers":[ + { + "input":7, + "interpolation":"LINEAR", + "output":265 + }, + { + "input":9, + "interpolation":"STEP", + "output":266 + }, + { + "input":9, + "interpolation":"STEP", + "output":267 + }, + { + "input":9, + "interpolation":"STEP", + "output":268 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":269 + }, + { + "input":9, + "interpolation":"STEP", + "output":270 + }, + { + "input":9, + "interpolation":"STEP", + "output":271 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":272 + }, + { + "input":9, + "interpolation":"STEP", + "output":273 + }, + { + "input":9, + "interpolation":"STEP", + "output":274 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":275 + }, + { + "input":9, + "interpolation":"STEP", + "output":276 + }, + { + "input":9, + "interpolation":"STEP", + "output":277 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":278 + }, + { + "input":9, + "interpolation":"STEP", + "output":279 + }, + { + "input":9, + "interpolation":"STEP", + "output":280 + }, + { + "input":9, + "interpolation":"STEP", + "output":281 + }, + { + "input":9, + "interpolation":"STEP", + "output":282 + }, + { + "input":9, + "interpolation":"STEP", + "output":283 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":284 + }, + { + "input":9, + "interpolation":"STEP", + "output":285 + }, + { + "input":9, + "interpolation":"STEP", + "output":286 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":287 + }, + { + "input":9, + "interpolation":"STEP", + "output":288 + }, + { + "input":9, + "interpolation":"STEP", + "output":289 + }, + { + "input":9, + "interpolation":"STEP", + "output":290 + }, + { + "input":9, + "interpolation":"STEP", + "output":291 + }, + { + "input":9, + "interpolation":"STEP", + "output":292 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":293 + }, + { + "input":9, + "interpolation":"STEP", + "output":294 + }, + { + "input":9, + "interpolation":"STEP", + "output":295 + }, + { + "input":9, + "interpolation":"STEP", + "output":296 + }, + { + "input":9, + "interpolation":"STEP", + "output":297 + }, + { + "input":9, + "interpolation":"STEP", + "output":298 + }, + { + "input":9, + "interpolation":"STEP", + "output":299 + }, + { + "input":9, + "interpolation":"STEP", + "output":300 + }, + { + "input":9, + "interpolation":"STEP", + "output":301 + }, + { + "input":9, + "interpolation":"STEP", + "output":302 + }, + { + "input":9, + "interpolation":"STEP", + "output":303 + }, + { + "input":9, + "interpolation":"STEP", + "output":304 + }, + { + "input":9, + "interpolation":"STEP", + "output":305 + }, + { + "input":9, + "interpolation":"STEP", + "output":306 + }, + { + "input":9, + "interpolation":"STEP", + "output":307 + }, + { + "input":9, + "interpolation":"STEP", + "output":308 + }, + { + "input":9, + "interpolation":"STEP", + "output":309 + }, + { + "input":9, + "interpolation":"STEP", + "output":310 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":311 + }, + { + "input":9, + "interpolation":"STEP", + "output":312 + }, + { + "input":9, + "interpolation":"STEP", + "output":313 + }, + { + "input":9, + "interpolation":"STEP", + "output":314 + }, + { + "input":9, + "interpolation":"STEP", + "output":315 + }, + { + "input":9, + "interpolation":"STEP", + "output":316 + }, + { + "input":9, + "interpolation":"STEP", + "output":317 + }, + { + "input":9, + "interpolation":"STEP", + "output":318 + }, + { + "input":9, + "interpolation":"STEP", + "output":319 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":320 + }, + { + "input":9, + "interpolation":"STEP", + "output":321 + }, + { + "input":9, + "interpolation":"STEP", + "output":322 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":323 + }, + { + "input":9, + "interpolation":"STEP", + "output":324 + }, + { + "input":9, + "interpolation":"STEP", + "output":325 + }, + { + "input":9, + "interpolation":"STEP", + "output":326 + }, + { + "input":9, + "interpolation":"STEP", + "output":327 + }, + { + "input":9, + "interpolation":"STEP", + "output":328 + }, + { + "input":9, + "interpolation":"STEP", + "output":329 + }, + { + "input":9, + "interpolation":"STEP", + "output":330 + }, + { + "input":9, + "interpolation":"STEP", + "output":331 + }, + { + "input":9, + "interpolation":"STEP", + "output":332 + }, + { + "input":9, + "interpolation":"STEP", + "output":333 + }, + { + "input":9, + "interpolation":"STEP", + "output":334 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":335 + }, + { + "input":9, + "interpolation":"STEP", + "output":336 + }, + { + "input":9, + "interpolation":"STEP", + "output":337 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":338 + }, + { + "input":9, + "interpolation":"STEP", + "output":339 + }, + { + "input":9, + "interpolation":"STEP", + "output":340 + }, + { + "input":7, + "interpolation":"LINEAR", + "output":341 + }, + { + "input":9, + "interpolation":"STEP", + "output":342 + }, + { + "input":9, + "interpolation":"STEP", + "output":343 + }, + { + "input":9, + "interpolation":"STEP", + "output":344 + }, + { + "input":9, + "interpolation":"STEP", + "output":345 + }, + { + "input":9, + "interpolation":"STEP", + "output":346 + }, + { + "input":9, + "interpolation":"STEP", + "output":347 + }, + { + "input":9, + "interpolation":"STEP", + "output":348 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Block", + "samplers":[ + { + "input":349, + "interpolation":"STEP", + "output":350 + }, + { + "input":349, + "interpolation":"STEP", + "output":351 + }, + { + "input":349, + "interpolation":"STEP", + "output":352 + }, + { + "input":349, + "interpolation":"STEP", + "output":353 + }, + { + "input":349, + "interpolation":"STEP", + "output":354 + }, + { + "input":349, + "interpolation":"STEP", + "output":355 + }, + { + "input":349, + "interpolation":"STEP", + "output":356 + }, + { + "input":349, + "interpolation":"STEP", + "output":357 + }, + { + "input":349, + "interpolation":"STEP", + "output":358 + }, + { + "input":349, + "interpolation":"STEP", + "output":359 + }, + { + "input":349, + "interpolation":"STEP", + "output":360 + }, + { + "input":349, + "interpolation":"STEP", + "output":361 + }, + { + "input":349, + "interpolation":"STEP", + "output":362 + }, + { + "input":363, + "interpolation":"LINEAR", + "output":364 + }, + { + "input":349, + "interpolation":"STEP", + "output":365 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":366 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":367 + }, + { + "input":349, + "interpolation":"STEP", + "output":368 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":369 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":370 + }, + { + "input":349, + "interpolation":"STEP", + "output":371 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":372 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":373 + }, + { + "input":349, + "interpolation":"STEP", + "output":374 + }, + { + "input":349, + "interpolation":"STEP", + "output":375 + }, + { + "input":349, + "interpolation":"STEP", + "output":376 + }, + { + "input":349, + "interpolation":"STEP", + "output":377 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":378 + }, + { + "input":363, + "interpolation":"LINEAR", + "output":379 + }, + { + "input":349, + "interpolation":"STEP", + "output":380 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":381 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":382 + }, + { + "input":349, + "interpolation":"STEP", + "output":383 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":384 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":385 + }, + { + "input":349, + "interpolation":"STEP", + "output":386 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":387 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":388 + }, + { + "input":349, + "interpolation":"STEP", + "output":389 + }, + { + "input":349, + "interpolation":"STEP", + "output":390 + }, + { + "input":349, + "interpolation":"STEP", + "output":391 + }, + { + "input":349, + "interpolation":"STEP", + "output":392 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":393 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":394 + }, + { + "input":349, + "interpolation":"STEP", + "output":395 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":396 + }, + { + "input":363, + "interpolation":"LINEAR", + "output":397 + }, + { + "input":349, + "interpolation":"STEP", + "output":398 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":399 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":400 + }, + { + "input":349, + "interpolation":"STEP", + "output":401 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":402 + }, + { + "input":349, + "interpolation":"LINEAR", + "output":403 + }, + { + "input":349, + "interpolation":"STEP", + "output":404 + }, + { + "input":349, + "interpolation":"STEP", + "output":405 + }, + { + "input":349, + "interpolation":"STEP", + "output":406 + }, + { + "input":349, + "interpolation":"STEP", + "output":407 + }, + { + "input":349, + "interpolation":"STEP", + "output":408 + }, + { + "input":349, + "interpolation":"STEP", + "output":409 + }, + { + "input":349, + "interpolation":"STEP", + "output":410 + }, + { + "input":349, + "interpolation":"STEP", + "output":411 + }, + { + "input":349, + "interpolation":"STEP", + "output":412 + }, + { + "input":349, + "interpolation":"STEP", + "output":413 + }, + { + "input":349, + "interpolation":"STEP", + "output":414 + }, + { + "input":349, + "interpolation":"STEP", + "output":415 + }, + { + "input":349, + "interpolation":"STEP", + "output":416 + }, + { + "input":349, + "interpolation":"STEP", + "output":417 + }, + { + "input":349, + "interpolation":"STEP", + "output":418 + }, + { + "input":349, + "interpolation":"STEP", + "output":419 + }, + { + "input":349, + "interpolation":"STEP", + "output":420 + }, + { + "input":349, + "interpolation":"STEP", + "output":421 + }, + { + "input":349, + "interpolation":"STEP", + "output":422 + }, + { + "input":349, + "interpolation":"STEP", + "output":423 + }, + { + "input":349, + "interpolation":"STEP", + "output":424 + }, + { + "input":349, + "interpolation":"STEP", + "output":425 + }, + { + "input":349, + "interpolation":"STEP", + "output":426 + }, + { + "input":349, + "interpolation":"STEP", + "output":427 + }, + { + "input":349, + "interpolation":"STEP", + "output":428 + }, + { + "input":349, + "interpolation":"STEP", + "output":429 + }, + { + "input":349, + "interpolation":"STEP", + "output":430 + }, + { + "input":349, + "interpolation":"STEP", + "output":431 + }, + { + "input":349, + "interpolation":"STEP", + "output":432 + }, + { + "input":349, + "interpolation":"STEP", + "output":433 + }, + { + "input":349, + "interpolation":"STEP", + "output":434 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Climb", + "samplers":[ + { + "input":435, + "interpolation":"LINEAR", + "output":436 + }, + { + "input":437, + "interpolation":"STEP", + "output":438 + }, + { + "input":437, + "interpolation":"STEP", + "output":439 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":440 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":441 + }, + { + "input":437, + "interpolation":"STEP", + "output":442 + }, + { + "input":437, + "interpolation":"STEP", + "output":443 + }, + { + "input":437, + "interpolation":"STEP", + "output":444 + }, + { + "input":437, + "interpolation":"STEP", + "output":445 + }, + { + "input":437, + "interpolation":"STEP", + "output":446 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":447 + }, + { + "input":437, + "interpolation":"STEP", + "output":448 + }, + { + "input":437, + "interpolation":"STEP", + "output":449 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":450 + }, + { + "input":437, + "interpolation":"STEP", + "output":451 + }, + { + "input":437, + "interpolation":"STEP", + "output":452 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":453 + }, + { + "input":437, + "interpolation":"STEP", + "output":454 + }, + { + "input":437, + "interpolation":"STEP", + "output":455 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":456 + }, + { + "input":437, + "interpolation":"STEP", + "output":457 + }, + { + "input":437, + "interpolation":"STEP", + "output":458 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":459 + }, + { + "input":437, + "interpolation":"STEP", + "output":460 + }, + { + "input":437, + "interpolation":"STEP", + "output":461 + }, + { + "input":437, + "interpolation":"STEP", + "output":462 + }, + { + "input":437, + "interpolation":"STEP", + "output":463 + }, + { + "input":437, + "interpolation":"STEP", + "output":464 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":465 + }, + { + "input":437, + "interpolation":"STEP", + "output":466 + }, + { + "input":437, + "interpolation":"STEP", + "output":467 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":468 + }, + { + "input":437, + "interpolation":"STEP", + "output":469 + }, + { + "input":437, + "interpolation":"STEP", + "output":470 + }, + { + "input":437, + "interpolation":"STEP", + "output":471 + }, + { + "input":437, + "interpolation":"STEP", + "output":472 + }, + { + "input":437, + "interpolation":"STEP", + "output":473 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":474 + }, + { + "input":437, + "interpolation":"STEP", + "output":475 + }, + { + "input":437, + "interpolation":"STEP", + "output":476 + }, + { + "input":437, + "interpolation":"STEP", + "output":477 + }, + { + "input":437, + "interpolation":"STEP", + "output":478 + }, + { + "input":437, + "interpolation":"STEP", + "output":479 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":480 + }, + { + "input":437, + "interpolation":"STEP", + "output":481 + }, + { + "input":437, + "interpolation":"STEP", + "output":482 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":483 + }, + { + "input":437, + "interpolation":"STEP", + "output":484 + }, + { + "input":437, + "interpolation":"STEP", + "output":485 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":486 + }, + { + "input":437, + "interpolation":"STEP", + "output":487 + }, + { + "input":437, + "interpolation":"STEP", + "output":488 + }, + { + "input":437, + "interpolation":"STEP", + "output":489 + }, + { + "input":437, + "interpolation":"STEP", + "output":490 + }, + { + "input":437, + "interpolation":"STEP", + "output":491 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":492 + }, + { + "input":437, + "interpolation":"STEP", + "output":493 + }, + { + "input":437, + "interpolation":"STEP", + "output":494 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":495 + }, + { + "input":437, + "interpolation":"STEP", + "output":496 + }, + { + "input":437, + "interpolation":"STEP", + "output":497 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":498 + }, + { + "input":437, + "interpolation":"STEP", + "output":499 + }, + { + "input":437, + "interpolation":"STEP", + "output":500 + }, + { + "input":437, + "interpolation":"STEP", + "output":501 + }, + { + "input":437, + "interpolation":"STEP", + "output":502 + }, + { + "input":437, + "interpolation":"STEP", + "output":503 + }, + { + "input":437, + "interpolation":"STEP", + "output":504 + }, + { + "input":437, + "interpolation":"STEP", + "output":505 + }, + { + "input":437, + "interpolation":"STEP", + "output":506 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":507 + }, + { + "input":437, + "interpolation":"STEP", + "output":508 + }, + { + "input":437, + "interpolation":"STEP", + "output":509 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":510 + }, + { + "input":437, + "interpolation":"STEP", + "output":511 + }, + { + "input":437, + "interpolation":"STEP", + "output":512 + }, + { + "input":435, + "interpolation":"LINEAR", + "output":513 + }, + { + "input":437, + "interpolation":"STEP", + "output":514 + }, + { + "input":437, + "interpolation":"STEP", + "output":515 + }, + { + "input":437, + "interpolation":"STEP", + "output":516 + }, + { + "input":437, + "interpolation":"STEP", + "output":517 + }, + { + "input":437, + "interpolation":"STEP", + "output":518 + }, + { + "input":437, + "interpolation":"STEP", + "output":519 + }, + { + "input":437, + "interpolation":"STEP", + "output":520 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Crouch", + "samplers":[ + { + "input":521, + "interpolation":"LINEAR", + "output":522 + }, + { + "input":523, + "interpolation":"STEP", + "output":524 + }, + { + "input":523, + "interpolation":"STEP", + "output":525 + }, + { + "input":523, + "interpolation":"STEP", + "output":526 + }, + { + "input":523, + "interpolation":"STEP", + "output":527 + }, + { + "input":523, + "interpolation":"STEP", + "output":528 + }, + { + "input":523, + "interpolation":"STEP", + "output":529 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":530 + }, + { + "input":523, + "interpolation":"STEP", + "output":531 + }, + { + "input":523, + "interpolation":"STEP", + "output":532 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":533 + }, + { + "input":523, + "interpolation":"STEP", + "output":534 + }, + { + "input":523, + "interpolation":"STEP", + "output":535 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":536 + }, + { + "input":523, + "interpolation":"STEP", + "output":537 + }, + { + "input":523, + "interpolation":"STEP", + "output":538 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":539 + }, + { + "input":523, + "interpolation":"STEP", + "output":540 + }, + { + "input":523, + "interpolation":"STEP", + "output":541 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":542 + }, + { + "input":523, + "interpolation":"STEP", + "output":543 + }, + { + "input":523, + "interpolation":"STEP", + "output":544 + }, + { + "input":523, + "interpolation":"STEP", + "output":545 + }, + { + "input":523, + "interpolation":"STEP", + "output":546 + }, + { + "input":523, + "interpolation":"STEP", + "output":547 + }, + { + "input":523, + "interpolation":"STEP", + "output":548 + }, + { + "input":523, + "interpolation":"STEP", + "output":549 + }, + { + "input":523, + "interpolation":"STEP", + "output":550 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":551 + }, + { + "input":523, + "interpolation":"STEP", + "output":552 + }, + { + "input":523, + "interpolation":"STEP", + "output":553 + }, + { + "input":523, + "interpolation":"STEP", + "output":554 + }, + { + "input":523, + "interpolation":"STEP", + "output":555 + }, + { + "input":523, + "interpolation":"STEP", + "output":556 + }, + { + "input":523, + "interpolation":"STEP", + "output":557 + }, + { + "input":523, + "interpolation":"STEP", + "output":558 + }, + { + "input":523, + "interpolation":"STEP", + "output":559 + }, + { + "input":523, + "interpolation":"STEP", + "output":560 + }, + { + "input":523, + "interpolation":"STEP", + "output":561 + }, + { + "input":523, + "interpolation":"STEP", + "output":562 + }, + { + "input":523, + "interpolation":"STEP", + "output":563 + }, + { + "input":523, + "interpolation":"STEP", + "output":564 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":565 + }, + { + "input":523, + "interpolation":"STEP", + "output":566 + }, + { + "input":523, + "interpolation":"STEP", + "output":567 + }, + { + "input":523, + "interpolation":"STEP", + "output":568 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":569 + }, + { + "input":523, + "interpolation":"STEP", + "output":570 + }, + { + "input":523, + "interpolation":"STEP", + "output":571 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":572 + }, + { + "input":523, + "interpolation":"STEP", + "output":573 + }, + { + "input":523, + "interpolation":"STEP", + "output":574 + }, + { + "input":523, + "interpolation":"STEP", + "output":575 + }, + { + "input":523, + "interpolation":"STEP", + "output":576 + }, + { + "input":523, + "interpolation":"STEP", + "output":577 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":578 + }, + { + "input":523, + "interpolation":"STEP", + "output":579 + }, + { + "input":523, + "interpolation":"STEP", + "output":580 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":581 + }, + { + "input":523, + "interpolation":"STEP", + "output":582 + }, + { + "input":523, + "interpolation":"STEP", + "output":583 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":584 + }, + { + "input":523, + "interpolation":"STEP", + "output":585 + }, + { + "input":523, + "interpolation":"STEP", + "output":586 + }, + { + "input":523, + "interpolation":"STEP", + "output":587 + }, + { + "input":523, + "interpolation":"STEP", + "output":588 + }, + { + "input":523, + "interpolation":"STEP", + "output":589 + }, + { + "input":523, + "interpolation":"STEP", + "output":590 + }, + { + "input":523, + "interpolation":"STEP", + "output":591 + }, + { + "input":523, + "interpolation":"STEP", + "output":592 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":593 + }, + { + "input":523, + "interpolation":"STEP", + "output":594 + }, + { + "input":523, + "interpolation":"STEP", + "output":595 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":596 + }, + { + "input":523, + "interpolation":"STEP", + "output":597 + }, + { + "input":523, + "interpolation":"STEP", + "output":598 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":599 + }, + { + "input":523, + "interpolation":"STEP", + "output":600 + }, + { + "input":523, + "interpolation":"STEP", + "output":601 + }, + { + "input":521, + "interpolation":"LINEAR", + "output":602 + }, + { + "input":523, + "interpolation":"STEP", + "output":603 + }, + { + "input":523, + "interpolation":"STEP", + "output":604 + }, + { + "input":523, + "interpolation":"STEP", + "output":605 + }, + { + "input":523, + "interpolation":"STEP", + "output":606 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Death1", + "samplers":[ + { + "input":607, + "interpolation":"STEP", + "output":608 + }, + { + "input":607, + "interpolation":"STEP", + "output":609 + }, + { + "input":607, + "interpolation":"STEP", + "output":610 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":612 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":613 + }, + { + "input":607, + "interpolation":"STEP", + "output":614 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":615 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":616 + }, + { + "input":607, + "interpolation":"STEP", + "output":617 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":618 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":619 + }, + { + "input":607, + "interpolation":"STEP", + "output":620 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":621 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":622 + }, + { + "input":607, + "interpolation":"STEP", + "output":623 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":624 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":625 + }, + { + "input":607, + "interpolation":"STEP", + "output":626 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":627 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":628 + }, + { + "input":607, + "interpolation":"STEP", + "output":629 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":630 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":631 + }, + { + "input":607, + "interpolation":"STEP", + "output":632 + }, + { + "input":607, + "interpolation":"STEP", + "output":633 + }, + { + "input":607, + "interpolation":"STEP", + "output":634 + }, + { + "input":607, + "interpolation":"STEP", + "output":635 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":636 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":637 + }, + { + "input":607, + "interpolation":"STEP", + "output":638 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":639 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":640 + }, + { + "input":607, + "interpolation":"STEP", + "output":641 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":642 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":643 + }, + { + "input":607, + "interpolation":"STEP", + "output":644 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":645 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":646 + }, + { + "input":607, + "interpolation":"STEP", + "output":647 + }, + { + "input":607, + "interpolation":"STEP", + "output":648 + }, + { + "input":607, + "interpolation":"STEP", + "output":649 + }, + { + "input":607, + "interpolation":"STEP", + "output":650 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":651 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":652 + }, + { + "input":607, + "interpolation":"STEP", + "output":653 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":654 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":655 + }, + { + "input":607, + "interpolation":"STEP", + "output":656 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":657 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":658 + }, + { + "input":607, + "interpolation":"STEP", + "output":659 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":660 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":661 + }, + { + "input":607, + "interpolation":"STEP", + "output":662 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":663 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":664 + }, + { + "input":607, + "interpolation":"STEP", + "output":665 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":666 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":667 + }, + { + "input":607, + "interpolation":"STEP", + "output":668 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":669 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":670 + }, + { + "input":607, + "interpolation":"STEP", + "output":671 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":672 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":673 + }, + { + "input":607, + "interpolation":"STEP", + "output":674 + }, + { + "input":607, + "interpolation":"STEP", + "output":675 + }, + { + "input":607, + "interpolation":"STEP", + "output":676 + }, + { + "input":607, + "interpolation":"STEP", + "output":677 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":678 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":679 + }, + { + "input":607, + "interpolation":"STEP", + "output":680 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":681 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":682 + }, + { + "input":607, + "interpolation":"STEP", + "output":683 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":684 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":685 + }, + { + "input":607, + "interpolation":"STEP", + "output":686 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":687 + }, + { + "input":607, + "interpolation":"LINEAR", + "output":688 + }, + { + "input":607, + "interpolation":"STEP", + "output":689 + }, + { + "input":607, + "interpolation":"STEP", + "output":690 + }, + { + "input":607, + "interpolation":"STEP", + "output":691 + }, + { + "input":607, + "interpolation":"STEP", + "output":692 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Death2", + "samplers":[ + { + "input":179, + "interpolation":"LINEAR", + "output":693 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":694 + }, + { + "input":181, + "interpolation":"STEP", + "output":695 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":696 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":697 + }, + { + "input":181, + "interpolation":"STEP", + "output":698 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":699 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":700 + }, + { + "input":181, + "interpolation":"STEP", + "output":701 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":702 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":703 + }, + { + "input":181, + "interpolation":"STEP", + "output":704 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":705 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":706 + }, + { + "input":181, + "interpolation":"STEP", + "output":707 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":708 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":709 + }, + { + "input":181, + "interpolation":"STEP", + "output":710 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":711 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":712 + }, + { + "input":181, + "interpolation":"STEP", + "output":713 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":714 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":715 + }, + { + "input":181, + "interpolation":"STEP", + "output":716 + }, + { + "input":181, + "interpolation":"STEP", + "output":717 + }, + { + "input":181, + "interpolation":"STEP", + "output":718 + }, + { + "input":181, + "interpolation":"STEP", + "output":719 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":720 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":721 + }, + { + "input":181, + "interpolation":"STEP", + "output":722 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":723 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":724 + }, + { + "input":181, + "interpolation":"STEP", + "output":725 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":726 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":727 + }, + { + "input":181, + "interpolation":"STEP", + "output":728 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":729 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":730 + }, + { + "input":181, + "interpolation":"STEP", + "output":731 + }, + { + "input":181, + "interpolation":"STEP", + "output":732 + }, + { + "input":181, + "interpolation":"STEP", + "output":733 + }, + { + "input":181, + "interpolation":"STEP", + "output":734 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":735 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":736 + }, + { + "input":181, + "interpolation":"STEP", + "output":737 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":738 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":739 + }, + { + "input":181, + "interpolation":"STEP", + "output":740 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":741 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":742 + }, + { + "input":181, + "interpolation":"STEP", + "output":743 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":744 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":745 + }, + { + "input":181, + "interpolation":"STEP", + "output":746 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":747 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":748 + }, + { + "input":181, + "interpolation":"STEP", + "output":749 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":750 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":751 + }, + { + "input":181, + "interpolation":"STEP", + "output":752 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":753 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":754 + }, + { + "input":181, + "interpolation":"STEP", + "output":755 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":756 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":757 + }, + { + "input":181, + "interpolation":"STEP", + "output":758 + }, + { + "input":181, + "interpolation":"STEP", + "output":759 + }, + { + "input":181, + "interpolation":"STEP", + "output":760 + }, + { + "input":181, + "interpolation":"STEP", + "output":761 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":762 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":763 + }, + { + "input":181, + "interpolation":"STEP", + "output":764 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":765 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":766 + }, + { + "input":181, + "interpolation":"STEP", + "output":767 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":768 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":769 + }, + { + "input":181, + "interpolation":"STEP", + "output":770 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":771 + }, + { + "input":181, + "interpolation":"LINEAR", + "output":772 + }, + { + "input":181, + "interpolation":"STEP", + "output":773 + }, + { + "input":181, + "interpolation":"STEP", + "output":774 + }, + { + "input":181, + "interpolation":"STEP", + "output":775 + }, + { + "input":181, + "interpolation":"STEP", + "output":776 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Dodge", + "samplers":[ + { + "input":777, + "interpolation":"STEP", + "output":778 + }, + { + "input":777, + "interpolation":"STEP", + "output":779 + }, + { + "input":777, + "interpolation":"STEP", + "output":780 + }, + { + "input":777, + "interpolation":"STEP", + "output":781 + }, + { + "input":777, + "interpolation":"STEP", + "output":782 + }, + { + "input":777, + "interpolation":"STEP", + "output":783 + }, + { + "input":777, + "interpolation":"STEP", + "output":784 + }, + { + "input":777, + "interpolation":"STEP", + "output":785 + }, + { + "input":777, + "interpolation":"STEP", + "output":786 + }, + { + "input":777, + "interpolation":"STEP", + "output":787 + }, + { + "input":777, + "interpolation":"STEP", + "output":788 + }, + { + "input":777, + "interpolation":"STEP", + "output":789 + }, + { + "input":777, + "interpolation":"STEP", + "output":790 + }, + { + "input":777, + "interpolation":"STEP", + "output":791 + }, + { + "input":777, + "interpolation":"STEP", + "output":792 + }, + { + "input":777, + "interpolation":"STEP", + "output":793 + }, + { + "input":777, + "interpolation":"STEP", + "output":794 + }, + { + "input":777, + "interpolation":"STEP", + "output":795 + }, + { + "input":777, + "interpolation":"STEP", + "output":796 + }, + { + "input":777, + "interpolation":"STEP", + "output":797 + }, + { + "input":777, + "interpolation":"STEP", + "output":798 + }, + { + "input":777, + "interpolation":"STEP", + "output":799 + }, + { + "input":777, + "interpolation":"STEP", + "output":800 + }, + { + "input":777, + "interpolation":"STEP", + "output":801 + }, + { + "input":777, + "interpolation":"STEP", + "output":802 + }, + { + "input":777, + "interpolation":"STEP", + "output":803 + }, + { + "input":777, + "interpolation":"STEP", + "output":804 + }, + { + "input":777, + "interpolation":"STEP", + "output":805 + }, + { + "input":777, + "interpolation":"STEP", + "output":806 + }, + { + "input":777, + "interpolation":"STEP", + "output":807 + }, + { + "input":777, + "interpolation":"STEP", + "output":808 + }, + { + "input":777, + "interpolation":"STEP", + "output":809 + }, + { + "input":777, + "interpolation":"STEP", + "output":810 + }, + { + "input":777, + "interpolation":"STEP", + "output":811 + }, + { + "input":777, + "interpolation":"STEP", + "output":812 + }, + { + "input":777, + "interpolation":"STEP", + "output":813 + }, + { + "input":777, + "interpolation":"STEP", + "output":814 + }, + { + "input":777, + "interpolation":"STEP", + "output":815 + }, + { + "input":777, + "interpolation":"STEP", + "output":816 + }, + { + "input":777, + "interpolation":"STEP", + "output":817 + }, + { + "input":777, + "interpolation":"STEP", + "output":818 + }, + { + "input":777, + "interpolation":"STEP", + "output":819 + }, + { + "input":777, + "interpolation":"STEP", + "output":820 + }, + { + "input":777, + "interpolation":"STEP", + "output":821 + }, + { + "input":777, + "interpolation":"STEP", + "output":822 + }, + { + "input":777, + "interpolation":"STEP", + "output":823 + }, + { + "input":777, + "interpolation":"STEP", + "output":824 + }, + { + "input":777, + "interpolation":"STEP", + "output":825 + }, + { + "input":777, + "interpolation":"STEP", + "output":826 + }, + { + "input":777, + "interpolation":"STEP", + "output":827 + }, + { + "input":777, + "interpolation":"STEP", + "output":828 + }, + { + "input":777, + "interpolation":"STEP", + "output":829 + }, + { + "input":777, + "interpolation":"STEP", + "output":830 + }, + { + "input":777, + "interpolation":"STEP", + "output":831 + }, + { + "input":777, + "interpolation":"STEP", + "output":832 + }, + { + "input":777, + "interpolation":"STEP", + "output":833 + }, + { + "input":777, + "interpolation":"STEP", + "output":834 + }, + { + "input":777, + "interpolation":"STEP", + "output":835 + }, + { + "input":777, + "interpolation":"STEP", + "output":836 + }, + { + "input":777, + "interpolation":"STEP", + "output":837 + }, + { + "input":777, + "interpolation":"STEP", + "output":838 + }, + { + "input":777, + "interpolation":"STEP", + "output":839 + }, + { + "input":777, + "interpolation":"STEP", + "output":840 + }, + { + "input":777, + "interpolation":"STEP", + "output":841 + }, + { + "input":777, + "interpolation":"STEP", + "output":842 + }, + { + "input":777, + "interpolation":"STEP", + "output":843 + }, + { + "input":777, + "interpolation":"STEP", + "output":844 + }, + { + "input":777, + "interpolation":"STEP", + "output":845 + }, + { + "input":777, + "interpolation":"STEP", + "output":846 + }, + { + "input":777, + "interpolation":"STEP", + "output":847 + }, + { + "input":777, + "interpolation":"STEP", + "output":848 + }, + { + "input":777, + "interpolation":"STEP", + "output":849 + }, + { + "input":777, + "interpolation":"STEP", + "output":850 + }, + { + "input":777, + "interpolation":"STEP", + "output":851 + }, + { + "input":777, + "interpolation":"STEP", + "output":852 + }, + { + "input":777, + "interpolation":"STEP", + "output":853 + }, + { + "input":777, + "interpolation":"STEP", + "output":854 + }, + { + "input":777, + "interpolation":"STEP", + "output":855 + }, + { + "input":777, + "interpolation":"STEP", + "output":856 + }, + { + "input":777, + "interpolation":"STEP", + "output":857 + }, + { + "input":777, + "interpolation":"STEP", + "output":858 + }, + { + "input":777, + "interpolation":"STEP", + "output":859 + }, + { + "input":777, + "interpolation":"STEP", + "output":860 + }, + { + "input":777, + "interpolation":"STEP", + "output":861 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"HighJump", + "samplers":[ + { + "input":93, + "interpolation":"LINEAR", + "output":862 + }, + { + "input":95, + "interpolation":"STEP", + "output":863 + }, + { + "input":95, + "interpolation":"STEP", + "output":864 + }, + { + "input":95, + "interpolation":"STEP", + "output":865 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":866 + }, + { + "input":95, + "interpolation":"STEP", + "output":867 + }, + { + "input":95, + "interpolation":"STEP", + "output":868 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":869 + }, + { + "input":95, + "interpolation":"STEP", + "output":870 + }, + { + "input":95, + "interpolation":"STEP", + "output":871 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":872 + }, + { + "input":95, + "interpolation":"STEP", + "output":873 + }, + { + "input":95, + "interpolation":"STEP", + "output":874 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":875 + }, + { + "input":95, + "interpolation":"STEP", + "output":876 + }, + { + "input":95, + "interpolation":"STEP", + "output":877 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":878 + }, + { + "input":95, + "interpolation":"STEP", + "output":879 + }, + { + "input":95, + "interpolation":"STEP", + "output":880 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":881 + }, + { + "input":95, + "interpolation":"STEP", + "output":882 + }, + { + "input":95, + "interpolation":"STEP", + "output":883 + }, + { + "input":95, + "interpolation":"STEP", + "output":884 + }, + { + "input":95, + "interpolation":"STEP", + "output":885 + }, + { + "input":95, + "interpolation":"STEP", + "output":886 + }, + { + "input":95, + "interpolation":"STEP", + "output":887 + }, + { + "input":95, + "interpolation":"STEP", + "output":888 + }, + { + "input":95, + "interpolation":"STEP", + "output":889 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":890 + }, + { + "input":95, + "interpolation":"STEP", + "output":891 + }, + { + "input":95, + "interpolation":"STEP", + "output":892 + }, + { + "input":95, + "interpolation":"STEP", + "output":893 + }, + { + "input":95, + "interpolation":"STEP", + "output":894 + }, + { + "input":95, + "interpolation":"STEP", + "output":895 + }, + { + "input":95, + "interpolation":"STEP", + "output":896 + }, + { + "input":95, + "interpolation":"STEP", + "output":897 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":898 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":899 + }, + { + "input":95, + "interpolation":"STEP", + "output":900 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":901 + }, + { + "input":95, + "interpolation":"STEP", + "output":902 + }, + { + "input":95, + "interpolation":"STEP", + "output":903 + }, + { + "input":95, + "interpolation":"STEP", + "output":904 + }, + { + "input":95, + "interpolation":"STEP", + "output":905 + }, + { + "input":95, + "interpolation":"STEP", + "output":906 + }, + { + "input":95, + "interpolation":"STEP", + "output":907 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":908 + }, + { + "input":95, + "interpolation":"STEP", + "output":909 + }, + { + "input":95, + "interpolation":"STEP", + "output":910 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":911 + }, + { + "input":95, + "interpolation":"STEP", + "output":912 + }, + { + "input":95, + "interpolation":"STEP", + "output":913 + }, + { + "input":95, + "interpolation":"STEP", + "output":914 + }, + { + "input":95, + "interpolation":"STEP", + "output":915 + }, + { + "input":95, + "interpolation":"STEP", + "output":916 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":917 + }, + { + "input":95, + "interpolation":"STEP", + "output":918 + }, + { + "input":95, + "interpolation":"STEP", + "output":919 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":920 + }, + { + "input":95, + "interpolation":"STEP", + "output":921 + }, + { + "input":95, + "interpolation":"STEP", + "output":922 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":923 + }, + { + "input":95, + "interpolation":"STEP", + "output":924 + }, + { + "input":95, + "interpolation":"STEP", + "output":925 + }, + { + "input":95, + "interpolation":"STEP", + "output":926 + }, + { + "input":95, + "interpolation":"STEP", + "output":927 + }, + { + "input":95, + "interpolation":"STEP", + "output":928 + }, + { + "input":95, + "interpolation":"STEP", + "output":929 + }, + { + "input":95, + "interpolation":"STEP", + "output":930 + }, + { + "input":95, + "interpolation":"STEP", + "output":931 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":932 + }, + { + "input":95, + "interpolation":"STEP", + "output":933 + }, + { + "input":95, + "interpolation":"STEP", + "output":934 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":935 + }, + { + "input":95, + "interpolation":"STEP", + "output":936 + }, + { + "input":95, + "interpolation":"STEP", + "output":937 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":938 + }, + { + "input":95, + "interpolation":"STEP", + "output":939 + }, + { + "input":95, + "interpolation":"STEP", + "output":940 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":941 + }, + { + "input":95, + "interpolation":"STEP", + "output":942 + }, + { + "input":95, + "interpolation":"STEP", + "output":943 + }, + { + "input":95, + "interpolation":"STEP", + "output":944 + }, + { + "input":95, + "interpolation":"STEP", + "output":945 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Idle1", + "samplers":[ + { + "input":946, + "interpolation":"LINEAR", + "output":947 + }, + { + "input":948, + "interpolation":"STEP", + "output":949 + }, + { + "input":948, + "interpolation":"STEP", + "output":950 + }, + { + "input":948, + "interpolation":"STEP", + "output":951 + }, + { + "input":948, + "interpolation":"STEP", + "output":952 + }, + { + "input":948, + "interpolation":"STEP", + "output":953 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":954 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":955 + }, + { + "input":948, + "interpolation":"STEP", + "output":956 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":957 + }, + { + "input":948, + "interpolation":"STEP", + "output":958 + }, + { + "input":948, + "interpolation":"STEP", + "output":959 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":960 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":961 + }, + { + "input":948, + "interpolation":"STEP", + "output":962 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":963 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":964 + }, + { + "input":948, + "interpolation":"STEP", + "output":965 + }, + { + "input":948, + "interpolation":"STEP", + "output":966 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":967 + }, + { + "input":948, + "interpolation":"STEP", + "output":968 + }, + { + "input":948, + "interpolation":"STEP", + "output":969 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":970 + }, + { + "input":948, + "interpolation":"STEP", + "output":971 + }, + { + "input":948, + "interpolation":"STEP", + "output":972 + }, + { + "input":948, + "interpolation":"STEP", + "output":973 + }, + { + "input":948, + "interpolation":"STEP", + "output":974 + }, + { + "input":948, + "interpolation":"STEP", + "output":975 + }, + { + "input":948, + "interpolation":"STEP", + "output":976 + }, + { + "input":948, + "interpolation":"STEP", + "output":977 + }, + { + "input":948, + "interpolation":"STEP", + "output":978 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":979 + }, + { + "input":948, + "interpolation":"STEP", + "output":980 + }, + { + "input":948, + "interpolation":"STEP", + "output":981 + }, + { + "input":948, + "interpolation":"STEP", + "output":982 + }, + { + "input":948, + "interpolation":"STEP", + "output":983 + }, + { + "input":948, + "interpolation":"STEP", + "output":984 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":985 + }, + { + "input":948, + "interpolation":"STEP", + "output":986 + }, + { + "input":948, + "interpolation":"STEP", + "output":987 + }, + { + "input":948, + "interpolation":"STEP", + "output":988 + }, + { + "input":948, + "interpolation":"STEP", + "output":989 + }, + { + "input":948, + "interpolation":"STEP", + "output":990 + }, + { + "input":948, + "interpolation":"STEP", + "output":991 + }, + { + "input":948, + "interpolation":"STEP", + "output":992 + }, + { + "input":948, + "interpolation":"STEP", + "output":993 + }, + { + "input":948, + "interpolation":"STEP", + "output":994 + }, + { + "input":948, + "interpolation":"STEP", + "output":995 + }, + { + "input":948, + "interpolation":"STEP", + "output":996 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":997 + }, + { + "input":948, + "interpolation":"STEP", + "output":998 + }, + { + "input":948, + "interpolation":"STEP", + "output":999 + }, + { + "input":948, + "interpolation":"STEP", + "output":1000 + }, + { + "input":948, + "interpolation":"STEP", + "output":1001 + }, + { + "input":948, + "interpolation":"STEP", + "output":1002 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":1003 + }, + { + "input":948, + "interpolation":"STEP", + "output":1004 + }, + { + "input":948, + "interpolation":"STEP", + "output":1005 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":1006 + }, + { + "input":948, + "interpolation":"STEP", + "output":1007 + }, + { + "input":948, + "interpolation":"STEP", + "output":1008 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":1009 + }, + { + "input":948, + "interpolation":"STEP", + "output":1010 + }, + { + "input":948, + "interpolation":"STEP", + "output":1011 + }, + { + "input":948, + "interpolation":"STEP", + "output":1012 + }, + { + "input":948, + "interpolation":"STEP", + "output":1013 + }, + { + "input":948, + "interpolation":"STEP", + "output":1014 + }, + { + "input":948, + "interpolation":"STEP", + "output":1015 + }, + { + "input":948, + "interpolation":"STEP", + "output":1016 + }, + { + "input":948, + "interpolation":"STEP", + "output":1017 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":1018 + }, + { + "input":948, + "interpolation":"STEP", + "output":1019 + }, + { + "input":948, + "interpolation":"STEP", + "output":1020 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":1021 + }, + { + "input":948, + "interpolation":"STEP", + "output":1022 + }, + { + "input":948, + "interpolation":"STEP", + "output":1023 + }, + { + "input":946, + "interpolation":"LINEAR", + "output":1024 + }, + { + "input":948, + "interpolation":"STEP", + "output":1025 + }, + { + "input":948, + "interpolation":"STEP", + "output":1026 + }, + { + "input":948, + "interpolation":"STEP", + "output":1027 + }, + { + "input":948, + "interpolation":"STEP", + "output":1028 + }, + { + "input":948, + "interpolation":"STEP", + "output":1029 + }, + { + "input":948, + "interpolation":"STEP", + "output":1030 + }, + { + "input":948, + "interpolation":"STEP", + "output":1031 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Idle2", + "samplers":[ + { + "input":1032, + "interpolation":"LINEAR", + "output":1033 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1034 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1036 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1037 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1038 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1039 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1040 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1041 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1042 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1043 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1044 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1045 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1046 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1047 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1048 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1049 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1050 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1051 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1052 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1053 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1054 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1055 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1056 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1057 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1058 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1059 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1060 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1061 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1062 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1063 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1064 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1065 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1066 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1067 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1068 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1069 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1070 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1071 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1072 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1073 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1074 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1075 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1076 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1077 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1078 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1079 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1080 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1081 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1082 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1083 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1084 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1085 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1086 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1087 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1088 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1089 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1090 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1091 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1092 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1093 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1094 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1095 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1096 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1097 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1098 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1099 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1100 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1101 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1102 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1103 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1104 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1105 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1106 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1107 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1108 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1109 + }, + { + "input":1032, + "interpolation":"LINEAR", + "output":1110 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1111 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1112 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1113 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1114 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1115 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1116 + }, + { + "input":1035, + "interpolation":"STEP", + "output":1117 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Idle3", + "samplers":[ + { + "input":1118, + "interpolation":"STEP", + "output":1119 + }, + { + "input":1120, + "interpolation":"LINEAR", + "output":1121 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1122 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1123 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1124 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1125 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1126 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1127 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1128 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1129 + }, + { + "input":1120, + "interpolation":"LINEAR", + "output":1130 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1131 + }, + { + "input":1120, + "interpolation":"LINEAR", + "output":1132 + }, + { + "input":1120, + "interpolation":"LINEAR", + "output":1133 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1134 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1135 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1136 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1137 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1138 + }, + { + "input":1120, + "interpolation":"LINEAR", + "output":1139 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1140 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1141 + }, + { + "input":1120, + "interpolation":"LINEAR", + "output":1142 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1143 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1144 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1145 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1146 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1147 + }, + { + "input":1120, + "interpolation":"LINEAR", + "output":1148 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1149 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1150 + }, + { + "input":1120, + "interpolation":"LINEAR", + "output":1151 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1152 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1153 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1154 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1155 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1156 + }, + { + "input":1120, + "interpolation":"LINEAR", + "output":1157 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1158 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1159 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1160 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1161 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1162 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1163 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1164 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1165 + }, + { + "input":1120, + "interpolation":"LINEAR", + "output":1166 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1167 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1168 + }, + { + "input":1120, + "interpolation":"LINEAR", + "output":1169 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1170 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1171 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1172 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1173 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1174 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1175 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1176 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1177 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1178 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1179 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1180 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1181 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1182 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1183 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1184 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1185 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1186 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1187 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1188 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1189 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1190 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1191 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1192 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1193 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1194 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1195 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1196 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1197 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1198 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1199 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1200 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1201 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1202 + }, + { + "input":1118, + "interpolation":"STEP", + "output":1203 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Jump", + "samplers":[ + { + "input":179, + "interpolation":"LINEAR", + "output":1204 + }, + { + "input":181, + "interpolation":"STEP", + "output":1205 + }, + { + "input":181, + "interpolation":"STEP", + "output":1206 + }, + { + "input":181, + "interpolation":"STEP", + "output":1207 + }, + { + "input":181, + "interpolation":"STEP", + "output":1208 + }, + { + "input":181, + "interpolation":"STEP", + "output":1209 + }, + { + "input":181, + "interpolation":"STEP", + "output":1210 + }, + { + "input":181, + "interpolation":"STEP", + "output":1211 + }, + { + "input":181, + "interpolation":"STEP", + "output":1212 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1213 + }, + { + "input":181, + "interpolation":"STEP", + "output":1214 + }, + { + "input":181, + "interpolation":"STEP", + "output":1215 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1216 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1217 + }, + { + "input":181, + "interpolation":"STEP", + "output":1218 + }, + { + "input":181, + "interpolation":"STEP", + "output":1219 + }, + { + "input":181, + "interpolation":"STEP", + "output":1220 + }, + { + "input":181, + "interpolation":"STEP", + "output":1221 + }, + { + "input":181, + "interpolation":"STEP", + "output":1222 + }, + { + "input":181, + "interpolation":"STEP", + "output":1223 + }, + { + "input":181, + "interpolation":"STEP", + "output":1224 + }, + { + "input":181, + "interpolation":"STEP", + "output":1225 + }, + { + "input":181, + "interpolation":"STEP", + "output":1226 + }, + { + "input":181, + "interpolation":"STEP", + "output":1227 + }, + { + "input":181, + "interpolation":"STEP", + "output":1228 + }, + { + "input":181, + "interpolation":"STEP", + "output":1229 + }, + { + "input":181, + "interpolation":"STEP", + "output":1230 + }, + { + "input":181, + "interpolation":"STEP", + "output":1231 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1232 + }, + { + "input":181, + "interpolation":"STEP", + "output":1233 + }, + { + "input":181, + "interpolation":"STEP", + "output":1234 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1235 + }, + { + "input":181, + "interpolation":"STEP", + "output":1236 + }, + { + "input":181, + "interpolation":"STEP", + "output":1237 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1238 + }, + { + "input":181, + "interpolation":"STEP", + "output":1239 + }, + { + "input":181, + "interpolation":"STEP", + "output":1240 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1241 + }, + { + "input":181, + "interpolation":"STEP", + "output":1242 + }, + { + "input":181, + "interpolation":"STEP", + "output":1243 + }, + { + "input":181, + "interpolation":"STEP", + "output":1244 + }, + { + "input":181, + "interpolation":"STEP", + "output":1245 + }, + { + "input":181, + "interpolation":"STEP", + "output":1246 + }, + { + "input":181, + "interpolation":"STEP", + "output":1247 + }, + { + "input":181, + "interpolation":"STEP", + "output":1248 + }, + { + "input":181, + "interpolation":"STEP", + "output":1249 + }, + { + "input":181, + "interpolation":"STEP", + "output":1250 + }, + { + "input":181, + "interpolation":"STEP", + "output":1251 + }, + { + "input":181, + "interpolation":"STEP", + "output":1252 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1253 + }, + { + "input":181, + "interpolation":"STEP", + "output":1254 + }, + { + "input":181, + "interpolation":"STEP", + "output":1255 + }, + { + "input":181, + "interpolation":"STEP", + "output":1256 + }, + { + "input":181, + "interpolation":"STEP", + "output":1257 + }, + { + "input":181, + "interpolation":"STEP", + "output":1258 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1259 + }, + { + "input":181, + "interpolation":"STEP", + "output":1260 + }, + { + "input":181, + "interpolation":"STEP", + "output":1261 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1262 + }, + { + "input":181, + "interpolation":"STEP", + "output":1263 + }, + { + "input":181, + "interpolation":"STEP", + "output":1264 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1265 + }, + { + "input":181, + "interpolation":"STEP", + "output":1266 + }, + { + "input":181, + "interpolation":"STEP", + "output":1267 + }, + { + "input":181, + "interpolation":"STEP", + "output":1268 + }, + { + "input":181, + "interpolation":"STEP", + "output":1269 + }, + { + "input":181, + "interpolation":"STEP", + "output":1270 + }, + { + "input":181, + "interpolation":"STEP", + "output":1271 + }, + { + "input":181, + "interpolation":"STEP", + "output":1272 + }, + { + "input":181, + "interpolation":"STEP", + "output":1273 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1274 + }, + { + "input":181, + "interpolation":"STEP", + "output":1275 + }, + { + "input":181, + "interpolation":"STEP", + "output":1276 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1277 + }, + { + "input":181, + "interpolation":"STEP", + "output":1278 + }, + { + "input":181, + "interpolation":"STEP", + "output":1279 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1280 + }, + { + "input":181, + "interpolation":"STEP", + "output":1281 + }, + { + "input":181, + "interpolation":"STEP", + "output":1282 + }, + { + "input":181, + "interpolation":"STEP", + "output":1283 + }, + { + "input":181, + "interpolation":"STEP", + "output":1284 + }, + { + "input":181, + "interpolation":"STEP", + "output":1285 + }, + { + "input":181, + "interpolation":"STEP", + "output":1286 + }, + { + "input":181, + "interpolation":"STEP", + "output":1287 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"JumpNoHeight", + "samplers":[ + { + "input":179, + "interpolation":"LINEAR", + "output":1288 + }, + { + "input":181, + "interpolation":"STEP", + "output":1289 + }, + { + "input":181, + "interpolation":"STEP", + "output":1290 + }, + { + "input":181, + "interpolation":"STEP", + "output":1291 + }, + { + "input":181, + "interpolation":"STEP", + "output":1292 + }, + { + "input":181, + "interpolation":"STEP", + "output":1293 + }, + { + "input":181, + "interpolation":"STEP", + "output":1294 + }, + { + "input":181, + "interpolation":"STEP", + "output":1295 + }, + { + "input":181, + "interpolation":"STEP", + "output":1296 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1297 + }, + { + "input":181, + "interpolation":"STEP", + "output":1298 + }, + { + "input":181, + "interpolation":"STEP", + "output":1299 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1300 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1301 + }, + { + "input":181, + "interpolation":"STEP", + "output":1302 + }, + { + "input":181, + "interpolation":"STEP", + "output":1303 + }, + { + "input":181, + "interpolation":"STEP", + "output":1304 + }, + { + "input":181, + "interpolation":"STEP", + "output":1305 + }, + { + "input":181, + "interpolation":"STEP", + "output":1306 + }, + { + "input":181, + "interpolation":"STEP", + "output":1307 + }, + { + "input":181, + "interpolation":"STEP", + "output":1308 + }, + { + "input":181, + "interpolation":"STEP", + "output":1309 + }, + { + "input":181, + "interpolation":"STEP", + "output":1310 + }, + { + "input":181, + "interpolation":"STEP", + "output":1311 + }, + { + "input":181, + "interpolation":"STEP", + "output":1312 + }, + { + "input":181, + "interpolation":"STEP", + "output":1313 + }, + { + "input":181, + "interpolation":"STEP", + "output":1314 + }, + { + "input":181, + "interpolation":"STEP", + "output":1315 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1316 + }, + { + "input":181, + "interpolation":"STEP", + "output":1317 + }, + { + "input":181, + "interpolation":"STEP", + "output":1318 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1319 + }, + { + "input":181, + "interpolation":"STEP", + "output":1320 + }, + { + "input":181, + "interpolation":"STEP", + "output":1321 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1322 + }, + { + "input":181, + "interpolation":"STEP", + "output":1323 + }, + { + "input":181, + "interpolation":"STEP", + "output":1324 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1325 + }, + { + "input":181, + "interpolation":"STEP", + "output":1326 + }, + { + "input":181, + "interpolation":"STEP", + "output":1327 + }, + { + "input":181, + "interpolation":"STEP", + "output":1328 + }, + { + "input":181, + "interpolation":"STEP", + "output":1329 + }, + { + "input":181, + "interpolation":"STEP", + "output":1330 + }, + { + "input":181, + "interpolation":"STEP", + "output":1331 + }, + { + "input":181, + "interpolation":"STEP", + "output":1332 + }, + { + "input":181, + "interpolation":"STEP", + "output":1333 + }, + { + "input":181, + "interpolation":"STEP", + "output":1334 + }, + { + "input":181, + "interpolation":"STEP", + "output":1335 + }, + { + "input":181, + "interpolation":"STEP", + "output":1336 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1337 + }, + { + "input":181, + "interpolation":"STEP", + "output":1338 + }, + { + "input":181, + "interpolation":"STEP", + "output":1339 + }, + { + "input":181, + "interpolation":"STEP", + "output":1340 + }, + { + "input":181, + "interpolation":"STEP", + "output":1341 + }, + { + "input":181, + "interpolation":"STEP", + "output":1342 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1343 + }, + { + "input":181, + "interpolation":"STEP", + "output":1344 + }, + { + "input":181, + "interpolation":"STEP", + "output":1345 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1346 + }, + { + "input":181, + "interpolation":"STEP", + "output":1347 + }, + { + "input":181, + "interpolation":"STEP", + "output":1348 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1349 + }, + { + "input":181, + "interpolation":"STEP", + "output":1350 + }, + { + "input":181, + "interpolation":"STEP", + "output":1351 + }, + { + "input":181, + "interpolation":"STEP", + "output":1352 + }, + { + "input":181, + "interpolation":"STEP", + "output":1353 + }, + { + "input":181, + "interpolation":"STEP", + "output":1354 + }, + { + "input":181, + "interpolation":"STEP", + "output":1355 + }, + { + "input":181, + "interpolation":"STEP", + "output":1356 + }, + { + "input":181, + "interpolation":"STEP", + "output":1357 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1358 + }, + { + "input":181, + "interpolation":"STEP", + "output":1359 + }, + { + "input":181, + "interpolation":"STEP", + "output":1360 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1361 + }, + { + "input":181, + "interpolation":"STEP", + "output":1362 + }, + { + "input":181, + "interpolation":"STEP", + "output":1363 + }, + { + "input":179, + "interpolation":"LINEAR", + "output":1364 + }, + { + "input":181, + "interpolation":"STEP", + "output":1365 + }, + { + "input":181, + "interpolation":"STEP", + "output":1366 + }, + { + "input":181, + "interpolation":"STEP", + "output":1367 + }, + { + "input":181, + "interpolation":"STEP", + "output":1368 + }, + { + "input":181, + "interpolation":"STEP", + "output":1369 + }, + { + "input":181, + "interpolation":"STEP", + "output":1370 + }, + { + "input":181, + "interpolation":"STEP", + "output":1371 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Kick", + "samplers":[ + { + "input":1372, + "interpolation":"LINEAR", + "output":1373 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1375 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1376 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1377 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1378 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1379 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1380 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1381 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1382 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1383 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1384 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1385 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1386 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1387 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1388 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1389 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1390 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1391 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1392 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1393 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1394 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1395 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1396 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1397 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1398 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1399 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1400 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1401 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1402 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1403 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1404 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1405 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1406 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1407 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1408 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1409 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1410 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1411 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1412 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1413 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1414 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1415 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1416 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1417 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1418 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1419 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1420 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1421 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1422 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1423 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1424 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1425 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1426 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1427 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1428 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1429 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1430 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1431 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1432 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1433 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1434 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1435 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1436 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1437 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1438 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1439 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1440 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1441 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1442 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1443 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1444 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1445 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1446 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1447 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1448 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1449 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1450 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1451 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1452 + }, + { + "input":1372, + "interpolation":"LINEAR", + "output":1453 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1454 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1455 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1456 + }, + { + "input":1374, + "interpolation":"STEP", + "output":1457 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"pull", + "samplers":[ + { + "input":1458, + "interpolation":"STEP", + "output":1459 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1460 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1461 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1462 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1463 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1464 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1465 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1466 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1467 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1468 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1469 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1470 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1471 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1472 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1473 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1474 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1475 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1476 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1477 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1478 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1479 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1480 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1481 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1482 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1483 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1484 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1485 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1486 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1487 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1488 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1489 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1490 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1491 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1492 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1493 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1494 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1495 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1496 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1497 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1498 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1499 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1500 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1501 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1502 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1503 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1504 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1505 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1506 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1507 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1508 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1509 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1510 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1511 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1512 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1513 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1514 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1515 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1516 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1517 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1518 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1519 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1520 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1521 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1522 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1523 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1524 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1525 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1526 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1527 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1528 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1529 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1530 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1531 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1532 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1533 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1534 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1535 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1536 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1537 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1538 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1539 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1540 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1541 + }, + { + "input":1458, + "interpolation":"STEP", + "output":1542 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"push", + "samplers":[ + { + "input":1543, + "interpolation":"STEP", + "output":1544 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1545 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1546 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1547 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1548 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1549 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1550 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1551 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1552 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1553 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1554 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1555 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1556 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1557 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1558 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1559 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1560 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1561 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1562 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1563 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1564 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1565 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1566 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1567 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1568 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1569 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1570 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1571 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1572 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1573 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1574 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1575 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1576 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1577 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1578 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1579 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1580 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1581 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1582 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1583 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1584 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1585 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1586 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1587 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1588 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1589 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1590 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1591 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1592 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1593 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1594 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1595 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1596 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1597 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1598 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1599 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1600 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1601 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1602 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1603 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1604 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1605 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1606 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1607 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1608 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1609 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1610 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1611 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1612 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1613 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1614 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1615 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1616 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1617 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1618 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1619 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1620 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1621 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1622 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1623 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1624 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1625 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1626 + }, + { + "input":1543, + "interpolation":"STEP", + "output":1627 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"SideKick", + "samplers":[ + { + "input":611, + "interpolation":"LINEAR", + "output":1628 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1629 + }, + { + "input":607, + "interpolation":"STEP", + "output":1630 + }, + { + "input":607, + "interpolation":"STEP", + "output":1631 + }, + { + "input":607, + "interpolation":"STEP", + "output":1632 + }, + { + "input":607, + "interpolation":"STEP", + "output":1633 + }, + { + "input":607, + "interpolation":"STEP", + "output":1634 + }, + { + "input":607, + "interpolation":"STEP", + "output":1635 + }, + { + "input":607, + "interpolation":"STEP", + "output":1636 + }, + { + "input":607, + "interpolation":"STEP", + "output":1637 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1638 + }, + { + "input":607, + "interpolation":"STEP", + "output":1639 + }, + { + "input":607, + "interpolation":"STEP", + "output":1640 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1641 + }, + { + "input":607, + "interpolation":"STEP", + "output":1642 + }, + { + "input":607, + "interpolation":"STEP", + "output":1643 + }, + { + "input":607, + "interpolation":"STEP", + "output":1644 + }, + { + "input":607, + "interpolation":"STEP", + "output":1645 + }, + { + "input":607, + "interpolation":"STEP", + "output":1646 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1647 + }, + { + "input":607, + "interpolation":"STEP", + "output":1648 + }, + { + "input":607, + "interpolation":"STEP", + "output":1649 + }, + { + "input":607, + "interpolation":"STEP", + "output":1650 + }, + { + "input":607, + "interpolation":"STEP", + "output":1651 + }, + { + "input":607, + "interpolation":"STEP", + "output":1652 + }, + { + "input":607, + "interpolation":"STEP", + "output":1653 + }, + { + "input":607, + "interpolation":"STEP", + "output":1654 + }, + { + "input":607, + "interpolation":"STEP", + "output":1655 + }, + { + "input":607, + "interpolation":"STEP", + "output":1656 + }, + { + "input":607, + "interpolation":"STEP", + "output":1657 + }, + { + "input":607, + "interpolation":"STEP", + "output":1658 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1659 + }, + { + "input":607, + "interpolation":"STEP", + "output":1660 + }, + { + "input":607, + "interpolation":"STEP", + "output":1661 + }, + { + "input":607, + "interpolation":"STEP", + "output":1662 + }, + { + "input":607, + "interpolation":"STEP", + "output":1663 + }, + { + "input":607, + "interpolation":"STEP", + "output":1664 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1665 + }, + { + "input":607, + "interpolation":"STEP", + "output":1666 + }, + { + "input":607, + "interpolation":"STEP", + "output":1667 + }, + { + "input":607, + "interpolation":"STEP", + "output":1668 + }, + { + "input":607, + "interpolation":"STEP", + "output":1669 + }, + { + "input":607, + "interpolation":"STEP", + "output":1670 + }, + { + "input":607, + "interpolation":"STEP", + "output":1671 + }, + { + "input":607, + "interpolation":"STEP", + "output":1672 + }, + { + "input":607, + "interpolation":"STEP", + "output":1673 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1674 + }, + { + "input":607, + "interpolation":"STEP", + "output":1675 + }, + { + "input":607, + "interpolation":"STEP", + "output":1676 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1677 + }, + { + "input":607, + "interpolation":"STEP", + "output":1678 + }, + { + "input":607, + "interpolation":"STEP", + "output":1679 + }, + { + "input":607, + "interpolation":"STEP", + "output":1680 + }, + { + "input":607, + "interpolation":"STEP", + "output":1681 + }, + { + "input":607, + "interpolation":"STEP", + "output":1682 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1683 + }, + { + "input":607, + "interpolation":"STEP", + "output":1684 + }, + { + "input":607, + "interpolation":"STEP", + "output":1685 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1686 + }, + { + "input":607, + "interpolation":"STEP", + "output":1687 + }, + { + "input":607, + "interpolation":"STEP", + "output":1688 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1689 + }, + { + "input":607, + "interpolation":"STEP", + "output":1690 + }, + { + "input":607, + "interpolation":"STEP", + "output":1691 + }, + { + "input":607, + "interpolation":"STEP", + "output":1692 + }, + { + "input":607, + "interpolation":"STEP", + "output":1693 + }, + { + "input":607, + "interpolation":"STEP", + "output":1694 + }, + { + "input":607, + "interpolation":"STEP", + "output":1695 + }, + { + "input":607, + "interpolation":"STEP", + "output":1696 + }, + { + "input":607, + "interpolation":"STEP", + "output":1697 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1698 + }, + { + "input":607, + "interpolation":"STEP", + "output":1699 + }, + { + "input":607, + "interpolation":"STEP", + "output":1700 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1701 + }, + { + "input":607, + "interpolation":"STEP", + "output":1702 + }, + { + "input":607, + "interpolation":"STEP", + "output":1703 + }, + { + "input":611, + "interpolation":"LINEAR", + "output":1704 + }, + { + "input":607, + "interpolation":"STEP", + "output":1705 + }, + { + "input":607, + "interpolation":"STEP", + "output":1706 + }, + { + "input":607, + "interpolation":"STEP", + "output":1707 + }, + { + "input":607, + "interpolation":"STEP", + "output":1708 + }, + { + "input":607, + "interpolation":"STEP", + "output":1709 + }, + { + "input":607, + "interpolation":"STEP", + "output":1710 + }, + { + "input":607, + "interpolation":"STEP", + "output":1711 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Spin", + "samplers":[ + { + "input":1712, + "interpolation":"LINEAR", + "output":1713 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1714 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1716 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1717 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1718 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1719 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1720 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1721 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1722 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1723 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1724 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1725 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1726 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1727 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1728 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1729 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1730 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1731 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1732 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1733 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1734 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1735 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1736 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1737 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1738 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1739 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1740 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1741 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1742 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1743 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1744 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1745 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1746 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1747 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1748 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1749 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1750 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1751 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1752 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1753 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1754 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1755 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1756 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1757 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1758 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1759 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1760 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1761 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1762 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1763 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1764 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1765 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1766 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1767 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1768 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1769 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1770 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1771 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1772 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1773 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1774 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1775 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1776 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1777 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1778 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1779 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1780 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1781 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1782 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1783 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1784 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1785 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1786 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1787 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1788 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1789 + }, + { + "input":1712, + "interpolation":"LINEAR", + "output":1790 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1791 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1792 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1793 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1794 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1795 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1796 + }, + { + "input":1715, + "interpolation":"STEP", + "output":1797 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"stand", + "samplers":[ + { + "input":1798, + "interpolation":"STEP", + "output":1799 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1800 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1801 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1802 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1803 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1804 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1805 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1806 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1807 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1808 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1809 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1810 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1811 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1812 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1813 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1814 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1815 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1816 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1817 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1818 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1819 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1820 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1821 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1822 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1823 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1824 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1825 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1826 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1827 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1828 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1829 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1830 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1831 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1832 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1833 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1834 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1835 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1836 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1837 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1838 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1839 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1840 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1841 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1842 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1843 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1844 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1845 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1846 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1847 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1848 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1849 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1850 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1851 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1852 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1853 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1854 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1855 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1856 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1857 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1858 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1859 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1860 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1861 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1862 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1863 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1864 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1865 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1866 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1867 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1868 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1869 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1870 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1871 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1872 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1873 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1874 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1875 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1876 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1877 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1878 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1879 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1880 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1881 + }, + { + "input":1798, + "interpolation":"STEP", + "output":1882 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Stealth", + "samplers":[ + { + "input":1883, + "interpolation":"LINEAR", + "output":1884 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1885 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1887 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1888 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1889 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1890 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1891 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1892 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1893 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1894 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1895 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1896 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1897 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1898 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1899 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1900 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1901 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1902 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1903 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1904 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1905 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1906 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1907 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1908 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1909 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1910 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1911 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1912 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1913 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1914 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1915 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1916 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1917 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1918 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1919 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1920 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1921 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1922 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1923 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1924 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1925 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1926 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1927 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1928 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1929 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1930 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1931 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1932 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1933 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1934 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1935 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1936 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1937 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1938 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1939 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1940 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1941 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1942 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1943 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1944 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1945 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1946 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1947 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1948 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1949 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1950 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1951 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1952 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1953 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1954 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1955 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1956 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1957 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1958 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1959 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1960 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1961 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1962 + }, + { + "input":1886, + "interpolation":"LINEAR", + "output":1963 + }, + { + "input":1883, + "interpolation":"LINEAR", + "output":1964 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1965 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1966 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1967 + }, + { + "input":1886, + "interpolation":"STEP", + "output":1968 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Walk", + "samplers":[ + { + "input":1969, + "interpolation":"STEP", + "output":1970 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1971 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1972 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1973 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1974 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1975 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1976 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1977 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1978 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1979 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1980 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1981 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1982 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1983 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1984 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1985 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1986 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1987 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1988 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1989 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1990 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1991 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1992 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1993 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1994 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1995 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1996 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1997 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1998 + }, + { + "input":1969, + "interpolation":"STEP", + "output":1999 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2000 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2001 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2002 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2003 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2004 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2005 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2006 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2007 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2008 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2009 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2010 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2011 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2012 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2013 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2014 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2015 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2016 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2017 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2018 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2019 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2020 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2021 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2022 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2023 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2024 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2025 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2026 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2027 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2028 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2029 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2030 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2031 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2032 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2033 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2034 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2035 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2036 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2037 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2038 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2039 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2040 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2041 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2042 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2043 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2044 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2045 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2046 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2047 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2048 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2049 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2050 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2051 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2052 + }, + { + "input":1969, + "interpolation":"STEP", + "output":2053 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":21, + "path":"scale" + } + } + ], + "name":"Walk", + "samplers":[ + { + "input":93, + "interpolation":"LINEAR", + "output":2054 + }, + { + "input":95, + "interpolation":"STEP", + "output":2055 + }, + { + "input":95, + "interpolation":"STEP", + "output":2056 + }, + { + "input":95, + "interpolation":"STEP", + "output":2057 + }, + { + "input":95, + "interpolation":"STEP", + "output":2058 + }, + { + "input":95, + "interpolation":"STEP", + "output":2059 + }, + { + "input":95, + "interpolation":"STEP", + "output":2060 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2061 + }, + { + "input":95, + "interpolation":"STEP", + "output":2062 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2063 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2064 + }, + { + "input":95, + "interpolation":"STEP", + "output":2065 + }, + { + "input":95, + "interpolation":"STEP", + "output":2066 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2067 + }, + { + "input":95, + "interpolation":"STEP", + "output":2068 + }, + { + "input":95, + "interpolation":"STEP", + "output":2069 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2070 + }, + { + "input":95, + "interpolation":"STEP", + "output":2071 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2072 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2073 + }, + { + "input":95, + "interpolation":"STEP", + "output":2074 + }, + { + "input":95, + "interpolation":"STEP", + "output":2075 + }, + { + "input":95, + "interpolation":"STEP", + "output":2076 + }, + { + "input":95, + "interpolation":"STEP", + "output":2077 + }, + { + "input":95, + "interpolation":"STEP", + "output":2078 + }, + { + "input":95, + "interpolation":"STEP", + "output":2079 + }, + { + "input":95, + "interpolation":"STEP", + "output":2080 + }, + { + "input":95, + "interpolation":"STEP", + "output":2081 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2082 + }, + { + "input":95, + "interpolation":"STEP", + "output":2083 + }, + { + "input":95, + "interpolation":"STEP", + "output":2084 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2085 + }, + { + "input":95, + "interpolation":"STEP", + "output":2086 + }, + { + "input":95, + "interpolation":"STEP", + "output":2087 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2088 + }, + { + "input":95, + "interpolation":"STEP", + "output":2089 + }, + { + "input":95, + "interpolation":"STEP", + "output":2090 + }, + { + "input":95, + "interpolation":"STEP", + "output":2091 + }, + { + "input":95, + "interpolation":"STEP", + "output":2092 + }, + { + "input":95, + "interpolation":"STEP", + "output":2093 + }, + { + "input":95, + "interpolation":"STEP", + "output":2094 + }, + { + "input":95, + "interpolation":"STEP", + "output":2095 + }, + { + "input":95, + "interpolation":"STEP", + "output":2096 + }, + { + "input":95, + "interpolation":"STEP", + "output":2097 + }, + { + "input":95, + "interpolation":"STEP", + "output":2098 + }, + { + "input":95, + "interpolation":"STEP", + "output":2099 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2100 + }, + { + "input":95, + "interpolation":"STEP", + "output":2101 + }, + { + "input":95, + "interpolation":"STEP", + "output":2102 + }, + { + "input":95, + "interpolation":"STEP", + "output":2103 + }, + { + "input":95, + "interpolation":"STEP", + "output":2104 + }, + { + "input":95, + "interpolation":"STEP", + "output":2105 + }, + { + "input":95, + "interpolation":"STEP", + "output":2106 + }, + { + "input":95, + "interpolation":"STEP", + "output":2107 + }, + { + "input":95, + "interpolation":"STEP", + "output":2108 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2109 + }, + { + "input":95, + "interpolation":"STEP", + "output":2110 + }, + { + "input":95, + "interpolation":"STEP", + "output":2111 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2112 + }, + { + "input":95, + "interpolation":"STEP", + "output":2113 + }, + { + "input":95, + "interpolation":"STEP", + "output":2114 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2115 + }, + { + "input":95, + "interpolation":"STEP", + "output":2116 + }, + { + "input":95, + "interpolation":"STEP", + "output":2117 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2118 + }, + { + "input":95, + "interpolation":"STEP", + "output":2119 + }, + { + "input":95, + "interpolation":"STEP", + "output":2120 + }, + { + "input":95, + "interpolation":"STEP", + "output":2121 + }, + { + "input":95, + "interpolation":"STEP", + "output":2122 + }, + { + "input":95, + "interpolation":"STEP", + "output":2123 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2124 + }, + { + "input":95, + "interpolation":"STEP", + "output":2125 + }, + { + "input":95, + "interpolation":"STEP", + "output":2126 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2127 + }, + { + "input":95, + "interpolation":"STEP", + "output":2128 + }, + { + "input":95, + "interpolation":"STEP", + "output":2129 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2130 + }, + { + "input":95, + "interpolation":"STEP", + "output":2131 + }, + { + "input":95, + "interpolation":"STEP", + "output":2132 + }, + { + "input":93, + "interpolation":"LINEAR", + "output":2133 + }, + { + "input":95, + "interpolation":"STEP", + "output":2134 + }, + { + "input":95, + "interpolation":"STEP", + "output":2135 + }, + { + "input":95, + "interpolation":"STEP", + "output":2136 + }, + { + "input":95, + "interpolation":"STEP", + "output":2137 + } + ] + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Ninja", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Ninja.001", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2, + "JOINTS_0":3, + "WEIGHTS_0":4 + }, + "indices":5, + "material":0 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"Ninja", + "uri":"Ninja.jpg" + } + ], + "skins":[ + { + "inverseBindMatrices":6, + "joints":[ + 27, + 26, + 15, + 14, + 13, + 12, + 1, + 0, + 7, + 6, + 5, + 4, + 3, + 2, + 11, + 10, + 9, + 8, + 20, + 19, + 18, + 17, + 16, + 25, + 24, + 23, + 22, + 21 + ], + "name":"Ninja" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":844, + "max":[ + 30.534500122070312, + 191.7899932861328, + 14.357000350952148 + ], + "min":[ + -30.534500122070312, + 0.1408199965953827, + -83.13639831542969 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":844, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":844, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5121, + "count":844, + "type":"VEC4" + }, + { + "bufferView":4, + "componentType":5126, + "count":844, + "type":"VEC4" + }, + { + "bufferView":5, + "componentType":5123, + "count":3024, + "type":"SCALAR" + }, + { + "bufferView":6, + "componentType":5126, + "count":28, + "type":"MAT4" + }, + { + "bufferView":7, + "componentType":5126, + "count":13, + "max":[ + 1 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":13, + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":2, + "max":[ + 1 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":10, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":11, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":14, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":15, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":16, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":17, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":18, + "componentType":5126, + "count":13, + "type":"VEC3" + }, + { + "bufferView":19, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":20, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":21, + "componentType":5126, + "count":13, + "type":"VEC3" + }, + { + "bufferView":22, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":23, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":24, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":25, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":26, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":27, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":28, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":29, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":30, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":31, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":32, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":33, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":34, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":35, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":36, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":37, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":38, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":39, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":40, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":41, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":42, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":43, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":44, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":45, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":46, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":47, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":48, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":49, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":50, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":51, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":52, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":53, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":54, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":55, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":56, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":57, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":58, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":59, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":60, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":61, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":62, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":63, + "componentType":5126, + "count":13, + "type":"VEC3" + }, + { + "bufferView":64, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":65, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":66, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":67, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":68, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":69, + "componentType":5126, + "count":13, + "type":"VEC3" + }, + { + "bufferView":70, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":71, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":72, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":73, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":74, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":75, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":76, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":77, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":78, + "componentType":5126, + "count":13, + "type":"VEC3" + }, + { + "bufferView":79, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":80, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":81, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":82, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":83, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":84, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":85, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":86, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":87, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":88, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":89, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":90, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":91, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":92, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":93, + "componentType":5126, + "count":14, + "max":[ + 1.0833333333333333 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":94, + "componentType":5126, + "count":14, + "type":"VEC3" + }, + { + "bufferView":95, + "componentType":5126, + "count":2, + "max":[ + 1.0833333333333333 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":96, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":97, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":98, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":99, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":100, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":101, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":102, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":103, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":104, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":105, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":106, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":107, + "componentType":5126, + "count":14, + "type":"VEC3" + }, + { + "bufferView":108, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":109, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":110, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":111, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":112, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":113, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":114, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":115, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":116, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":117, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":118, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":119, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":120, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":121, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":122, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":123, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":124, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":125, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":126, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":127, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":128, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":129, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":130, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":131, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":132, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":133, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":134, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":135, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":136, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":137, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":138, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":139, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":140, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":141, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":142, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":143, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":144, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":145, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":146, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":147, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":148, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":149, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":150, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":151, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":152, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":153, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":154, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":155, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":156, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":157, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":158, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":159, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":160, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":161, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":162, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":163, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":164, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":165, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":166, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":167, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":168, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":169, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":170, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":171, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":172, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":173, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":174, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":175, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":176, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":177, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":178, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":179, + "componentType":5126, + "count":9, + "max":[ + 0.6666666666666666 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":180, + "componentType":5126, + "count":9, + "type":"VEC3" + }, + { + "bufferView":181, + "componentType":5126, + "count":2, + "max":[ + 0.6666666666666666 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":182, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":183, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":184, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":185, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":186, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":187, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":188, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":189, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":190, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":191, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":192, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":193, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":194, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":195, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":196, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":197, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":198, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":199, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":200, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":201, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":202, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":203, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":204, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":205, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":206, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":207, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":208, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":209, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":210, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":211, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":212, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":213, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":214, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":215, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":216, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":217, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":218, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":219, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":220, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":221, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":222, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":223, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":224, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":225, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":226, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":227, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":228, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":229, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":230, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":231, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":232, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":233, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":234, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":235, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":236, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":237, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":238, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":239, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":240, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":241, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":242, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":243, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":244, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":245, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":246, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":247, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":248, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":249, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":250, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":251, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":252, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":253, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":254, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":255, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":256, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":257, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":258, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":259, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":260, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":261, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":262, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":263, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":264, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":265, + "componentType":5126, + "count":13, + "type":"VEC3" + }, + { + "bufferView":266, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":267, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":268, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":269, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":270, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":271, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":272, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":273, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":274, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":275, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":276, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":277, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":278, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":279, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":280, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":281, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":282, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":283, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":284, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":285, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":286, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":287, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":288, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":289, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":290, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":291, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":292, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":293, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":294, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":295, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":296, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":297, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":298, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":299, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":300, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":301, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":302, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":303, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":304, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":305, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":306, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":307, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":308, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":309, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":310, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":311, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":312, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":313, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":314, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":315, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":316, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":317, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":318, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":319, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":320, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":321, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":322, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":323, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":324, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":325, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":326, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":327, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":328, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":329, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":330, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":331, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":332, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":333, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":334, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":335, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":336, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":337, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":338, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":339, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":340, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":341, + "componentType":5126, + "count":13, + "type":"VEC4" + }, + { + "bufferView":342, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":343, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":344, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":345, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":346, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":347, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":348, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":349, + "componentType":5126, + "count":2, + "max":[ + 0.25 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":350, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":351, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":352, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":353, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":354, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":355, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":356, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":357, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":358, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":359, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":360, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":361, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":362, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":363, + "componentType":5126, + "count":4, + "max":[ + 0.25 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":364, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":365, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":366, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":367, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":368, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":369, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":370, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":371, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":372, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":373, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":374, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":375, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":376, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":377, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":378, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":379, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":380, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":381, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":382, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":383, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":384, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":385, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":386, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":387, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":388, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":389, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":390, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":391, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":392, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":393, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":394, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":395, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":396, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":397, + "componentType":5126, + "count":4, + "type":"VEC4" + }, + { + "bufferView":398, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":399, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":400, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":401, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":402, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":403, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":404, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":405, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":406, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":407, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":408, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":409, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":410, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":411, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":412, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":413, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":414, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":415, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":416, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":417, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":418, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":419, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":420, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":421, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":422, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":423, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":424, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":425, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":426, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":427, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":428, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":429, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":430, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":431, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":432, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":433, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":434, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":435, + "componentType":5126, + "count":7, + "max":[ + 0.5 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":436, + "componentType":5126, + "count":7, + "type":"VEC3" + }, + { + "bufferView":437, + "componentType":5126, + "count":2, + "max":[ + 0.5 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":438, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":439, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":440, + "componentType":5126, + "count":7, + "type":"VEC3" + }, + { + "bufferView":441, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":442, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":443, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":444, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":445, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":446, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":447, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":448, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":449, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":450, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":451, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":452, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":453, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":454, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":455, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":456, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":457, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":458, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":459, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":460, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":461, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":462, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":463, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":464, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":465, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":466, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":467, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":468, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":469, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":470, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":471, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":472, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":473, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":474, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":475, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":476, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":477, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":478, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":479, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":480, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":481, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":482, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":483, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":484, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":485, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":486, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":487, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":488, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":489, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":490, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":491, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":492, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":493, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":494, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":495, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":496, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":497, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":498, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":499, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":500, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":501, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":502, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":503, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":504, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":505, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":506, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":507, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":508, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":509, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":510, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":511, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":512, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":513, + "componentType":5126, + "count":7, + "type":"VEC4" + }, + { + "bufferView":514, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":515, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":516, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":517, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":518, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":519, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":520, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":521, + "componentType":5126, + "count":10, + "max":[ + 0.75 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":522, + "componentType":5126, + "count":10, + "type":"VEC3" + }, + { + "bufferView":523, + "componentType":5126, + "count":2, + "max":[ + 0.75 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":524, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":525, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":526, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":527, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":528, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":529, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":530, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":531, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":532, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":533, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":534, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":535, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":536, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":537, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":538, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":539, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":540, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":541, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":542, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":543, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":544, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":545, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":546, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":547, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":548, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":549, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":550, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":551, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":552, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":553, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":554, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":555, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":556, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":557, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":558, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":559, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":560, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":561, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":562, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":563, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":564, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":565, + "componentType":5126, + "count":10, + "type":"VEC3" + }, + { + "bufferView":566, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":567, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":568, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":569, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":570, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":571, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":572, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":573, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":574, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":575, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":576, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":577, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":578, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":579, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":580, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":581, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":582, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":583, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":584, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":585, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":586, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":587, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":588, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":589, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":590, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":591, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":592, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":593, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":594, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":595, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":596, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":597, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":598, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":599, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":600, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":601, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":602, + "componentType":5126, + "count":10, + "type":"VEC4" + }, + { + "bufferView":603, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":604, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":605, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":606, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":607, + "componentType":5126, + "count":2, + "max":[ + 0.5833333333333334 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":608, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":609, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":610, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":611, + "componentType":5126, + "count":8, + "max":[ + 0.5833333333333334 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":612, + "componentType":5126, + "count":8, + "type":"VEC3" + }, + { + "bufferView":613, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":614, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":615, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":616, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":617, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":618, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":619, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":620, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":621, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":622, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":623, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":624, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":625, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":626, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":627, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":628, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":629, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":630, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":631, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":632, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":633, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":634, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":635, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":636, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":637, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":638, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":639, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":640, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":641, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":642, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":643, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":644, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":645, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":646, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":647, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":648, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":649, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":650, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":651, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":652, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":653, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":654, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":655, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":656, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":657, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":658, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":659, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":660, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":661, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":662, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":663, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":664, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":665, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":666, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":667, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":668, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":669, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":670, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":671, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":672, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":673, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":674, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":675, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":676, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":677, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":678, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":679, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":680, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":681, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":682, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":683, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":684, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":685, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":686, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":687, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":688, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":689, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":690, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":691, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":692, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":693, + "componentType":5126, + "count":9, + "type":"VEC3" + }, + { + "bufferView":694, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":695, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":696, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":697, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":698, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":699, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":700, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":701, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":702, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":703, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":704, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":705, + "componentType":5126, + "count":9, + "type":"VEC3" + }, + { + "bufferView":706, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":707, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":708, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":709, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":710, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":711, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":712, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":713, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":714, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":715, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":716, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":717, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":718, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":719, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":720, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":721, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":722, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":723, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":724, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":725, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":726, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":727, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":728, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":729, + "componentType":5126, + "count":9, + "type":"VEC3" + }, + { + "bufferView":730, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":731, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":732, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":733, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":734, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":735, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":736, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":737, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":738, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":739, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":740, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":741, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":742, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":743, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":744, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":745, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":746, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":747, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":748, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":749, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":750, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":751, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":752, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":753, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":754, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":755, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":756, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":757, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":758, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":759, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":760, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":761, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":762, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":763, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":764, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":765, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":766, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":767, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":768, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":769, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":770, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":771, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":772, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":773, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":774, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":775, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":776, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":777, + "componentType":5126, + "count":2, + "max":[ + 0.3333333333333333 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":778, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":779, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":780, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":781, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":782, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":783, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":784, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":785, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":786, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":787, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":788, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":789, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":790, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":791, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":792, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":793, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":794, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":795, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":796, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":797, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":798, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":799, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":800, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":801, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":802, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":803, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":804, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":805, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":806, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":807, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":808, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":809, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":810, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":811, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":812, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":813, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":814, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":815, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":816, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":817, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":818, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":819, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":820, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":821, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":822, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":823, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":824, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":825, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":826, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":827, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":828, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":829, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":830, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":831, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":832, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":833, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":834, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":835, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":836, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":837, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":838, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":839, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":840, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":841, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":842, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":843, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":844, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":845, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":846, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":847, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":848, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":849, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":850, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":851, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":852, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":853, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":854, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":855, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":856, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":857, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":858, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":859, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":860, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":861, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":862, + "componentType":5126, + "count":14, + "type":"VEC3" + }, + { + "bufferView":863, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":864, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":865, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":866, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":867, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":868, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":869, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":870, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":871, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":872, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":873, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":874, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":875, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":876, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":877, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":878, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":879, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":880, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":881, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":882, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":883, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":884, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":885, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":886, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":887, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":888, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":889, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":890, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":891, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":892, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":893, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":894, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":895, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":896, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":897, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":898, + "componentType":5126, + "count":14, + "type":"VEC3" + }, + { + "bufferView":899, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":900, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":901, + "componentType":5126, + "count":14, + "type":"VEC3" + }, + { + "bufferView":902, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":903, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":904, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":905, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":906, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":907, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":908, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":909, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":910, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":911, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":912, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":913, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":914, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":915, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":916, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":917, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":918, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":919, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":920, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":921, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":922, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":923, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":924, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":925, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":926, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":927, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":928, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":929, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":930, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":931, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":932, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":933, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":934, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":935, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":936, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":937, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":938, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":939, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":940, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":941, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":942, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":943, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":944, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":945, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":946, + "componentType":5126, + "count":22, + "max":[ + 1.75 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":947, + "componentType":5126, + "count":22, + "type":"VEC3" + }, + { + "bufferView":948, + "componentType":5126, + "count":2, + "max":[ + 1.75 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":949, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":950, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":951, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":952, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":953, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":954, + "componentType":5126, + "count":22, + "type":"VEC3" + }, + { + "bufferView":955, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":956, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":957, + "componentType":5126, + "count":22, + "type":"VEC3" + }, + { + "bufferView":958, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":959, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":960, + "componentType":5126, + "count":22, + "type":"VEC3" + }, + { + "bufferView":961, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":962, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":963, + "componentType":5126, + "count":22, + "type":"VEC3" + }, + { + "bufferView":964, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":965, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":966, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":967, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":968, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":969, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":970, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":971, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":972, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":973, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":974, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":975, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":976, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":977, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":978, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":979, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":980, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":981, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":982, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":983, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":984, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":985, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":986, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":987, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":988, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":989, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":990, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":991, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":992, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":993, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":994, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":995, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":996, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":997, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":998, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":999, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1000, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1001, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1002, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1003, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":1004, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1005, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1006, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":1007, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1008, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1009, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":1010, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1011, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1012, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1013, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1014, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1015, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1016, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1017, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1018, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":1019, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1020, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1021, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":1022, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1023, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1024, + "componentType":5126, + "count":22, + "type":"VEC4" + }, + { + "bufferView":1025, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1026, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1027, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1028, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1029, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1030, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1031, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1032, + "componentType":5126, + "count":45, + "max":[ + 3.6666666666666665 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1033, + "componentType":5126, + "count":45, + "type":"VEC3" + }, + { + "bufferView":1034, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1035, + "componentType":5126, + "count":2, + "max":[ + 3.6666666666666665 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1036, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1037, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1038, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1039, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1040, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1041, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1042, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1043, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1044, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1045, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1046, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1047, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1048, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1049, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1050, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1051, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1052, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1053, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1054, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1055, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1056, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1057, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1058, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1059, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1060, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1061, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1062, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1063, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1064, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1065, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1066, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1067, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1068, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1069, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1070, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1071, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1072, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1073, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1074, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1075, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1076, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1077, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1078, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1079, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1080, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1081, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1082, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1083, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1084, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1085, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1086, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1087, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1088, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1089, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1090, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1091, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1092, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1093, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1094, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1095, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1096, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1097, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1098, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1099, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1100, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1101, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1102, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1103, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1104, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1105, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1106, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1107, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1108, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1109, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1110, + "componentType":5126, + "count":45, + "type":"VEC4" + }, + { + "bufferView":1111, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1112, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1113, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1114, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1115, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1116, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1117, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1118, + "componentType":5126, + "count":2, + "max":[ + 4.083333333333333 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1119, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1120, + "componentType":5126, + "count":50, + "max":[ + 4.083333333333333 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1121, + "componentType":5126, + "count":50, + "type":"VEC4" + }, + { + "bufferView":1122, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1123, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1124, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1125, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1126, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1127, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1128, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1129, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1130, + "componentType":5126, + "count":50, + "type":"VEC4" + }, + { + "bufferView":1131, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1132, + "componentType":5126, + "count":50, + "type":"VEC3" + }, + { + "bufferView":1133, + "componentType":5126, + "count":50, + "type":"VEC4" + }, + { + "bufferView":1134, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1135, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1136, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1137, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1138, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1139, + "componentType":5126, + "count":50, + "type":"VEC4" + }, + { + "bufferView":1140, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1141, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1142, + "componentType":5126, + "count":50, + "type":"VEC4" + }, + { + "bufferView":1143, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1144, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1145, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1146, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1147, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1148, + "componentType":5126, + "count":50, + "type":"VEC4" + }, + { + "bufferView":1149, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1150, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1151, + "componentType":5126, + "count":50, + "type":"VEC4" + }, + { + "bufferView":1152, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1153, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1154, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1155, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1156, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1157, + "componentType":5126, + "count":50, + "type":"VEC4" + }, + { + "bufferView":1158, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1159, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1160, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1161, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1162, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1163, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1164, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1165, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1166, + "componentType":5126, + "count":50, + "type":"VEC4" + }, + { + "bufferView":1167, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1168, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1169, + "componentType":5126, + "count":50, + "type":"VEC4" + }, + { + "bufferView":1170, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1171, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1172, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1173, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1174, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1175, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1176, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1177, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1178, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1179, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1180, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1181, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1182, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1183, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1184, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1185, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1186, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1187, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1188, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1189, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1190, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1191, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1192, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1193, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1194, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1195, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1196, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1197, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1198, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1199, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1200, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1201, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1202, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1203, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1204, + "componentType":5126, + "count":9, + "type":"VEC3" + }, + { + "bufferView":1205, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1206, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1207, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1208, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1209, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1210, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1211, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1212, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1213, + "componentType":5126, + "count":9, + "type":"VEC3" + }, + { + "bufferView":1214, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1215, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1216, + "componentType":5126, + "count":9, + "type":"VEC3" + }, + { + "bufferView":1217, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1218, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1219, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1220, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1221, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1222, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1223, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1224, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1225, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1226, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1227, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1228, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1229, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1230, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1231, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1232, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1233, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1234, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1235, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1236, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1237, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1238, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1239, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1240, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1241, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1242, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1243, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1244, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1245, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1246, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1247, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1248, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1249, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1250, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1251, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1252, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1253, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1254, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1255, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1256, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1257, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1258, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1259, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1260, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1261, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1262, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1263, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1264, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1265, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1266, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1267, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1268, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1269, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1270, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1271, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1272, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1273, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1274, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1275, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1276, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1277, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1278, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1279, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1280, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1281, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1282, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1283, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1284, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1285, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1286, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1287, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1288, + "componentType":5126, + "count":9, + "type":"VEC3" + }, + { + "bufferView":1289, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1290, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1291, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1292, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1293, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1294, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1295, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1296, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1297, + "componentType":5126, + "count":9, + "type":"VEC3" + }, + { + "bufferView":1298, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1299, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1300, + "componentType":5126, + "count":9, + "type":"VEC3" + }, + { + "bufferView":1301, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1302, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1303, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1304, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1305, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1306, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1307, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1308, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1309, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1310, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1311, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1312, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1313, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1314, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1315, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1316, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1317, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1318, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1319, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1320, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1321, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1322, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1323, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1324, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1325, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1326, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1327, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1328, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1329, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1330, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1331, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1332, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1333, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1334, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1335, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1336, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1337, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1338, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1339, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1340, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1341, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1342, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1343, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1344, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1345, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1346, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1347, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1348, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1349, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1350, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1351, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1352, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1353, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1354, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1355, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1356, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1357, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1358, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1359, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1360, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1361, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1362, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1363, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1364, + "componentType":5126, + "count":9, + "type":"VEC4" + }, + { + "bufferView":1365, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1366, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1367, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1368, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1369, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1370, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1371, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1372, + "componentType":5126, + "count":11, + "max":[ + 0.8333333333333334 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1373, + "componentType":5126, + "count":11, + "type":"VEC3" + }, + { + "bufferView":1374, + "componentType":5126, + "count":2, + "max":[ + 0.8333333333333334 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1375, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1376, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1377, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1378, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1379, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1380, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1381, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1382, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1383, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1384, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1385, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1386, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1387, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1388, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1389, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1390, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1391, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1392, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1393, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1394, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1395, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1396, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1397, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1398, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1399, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1400, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1401, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1402, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1403, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1404, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1405, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1406, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1407, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1408, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1409, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1410, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1411, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1412, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1413, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1414, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1415, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1416, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1417, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1418, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1419, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1420, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1421, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1422, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1423, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1424, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1425, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1426, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1427, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1428, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1429, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1430, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1431, + "componentType":5126, + "count":11, + "type":"VEC3" + }, + { + "bufferView":1432, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1433, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1434, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1435, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1436, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1437, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1438, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1439, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1440, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1441, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1442, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1443, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1444, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1445, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1446, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1447, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1448, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1449, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1450, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1451, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1452, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1453, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":1454, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1455, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1456, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1457, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1458, + "componentType":5126, + "count":2, + "max":[ + 1.5 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1459, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1460, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1461, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1462, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1463, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1464, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1465, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1466, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1467, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1468, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1469, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1470, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1471, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1472, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1473, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1474, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1475, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1476, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1477, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1478, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1479, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1480, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1481, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1482, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1483, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1484, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1485, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1486, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1487, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1488, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1489, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1490, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1491, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1492, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1493, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1494, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1495, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1496, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1497, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1498, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1499, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1500, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1501, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1502, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1503, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1504, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1505, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1506, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1507, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1508, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1509, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1510, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1511, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1512, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1513, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1514, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1515, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1516, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1517, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1518, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1519, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1520, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1521, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1522, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1523, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1524, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1525, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1526, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1527, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1528, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1529, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1530, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1531, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1532, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1533, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1534, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1535, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1536, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1537, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1538, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1539, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1540, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1541, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1542, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1543, + "componentType":5126, + "count":2, + "max":[ + 3.3333333333333335 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1544, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1545, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1546, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1547, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1548, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1549, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1550, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1551, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1552, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1553, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1554, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1555, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1556, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1557, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1558, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1559, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1560, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1561, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1562, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1563, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1564, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1565, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1566, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1567, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1568, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1569, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1570, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1571, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1572, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1573, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1574, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1575, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1576, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1577, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1578, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1579, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1580, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1581, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1582, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1583, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1584, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1585, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1586, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1587, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1588, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1589, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1590, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1591, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1592, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1593, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1594, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1595, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1596, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1597, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1598, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1599, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1600, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1601, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1602, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1603, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1604, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1605, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1606, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1607, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1608, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1609, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1610, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1611, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1612, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1613, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1614, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1615, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1616, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1617, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1618, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1619, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1620, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1621, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1622, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1623, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1624, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1625, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1626, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1627, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1628, + "componentType":5126, + "count":8, + "type":"VEC3" + }, + { + "bufferView":1629, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1630, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1631, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1632, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1633, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1634, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1635, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1636, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1637, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1638, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1639, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1640, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1641, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1642, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1643, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1644, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1645, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1646, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1647, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1648, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1649, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1650, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1651, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1652, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1653, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1654, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1655, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1656, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1657, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1658, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1659, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1660, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1661, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1662, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1663, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1664, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1665, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1666, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1667, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1668, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1669, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1670, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1671, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1672, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1673, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1674, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1675, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1676, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1677, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1678, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1679, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1680, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1681, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1682, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1683, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1684, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1685, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1686, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1687, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1688, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1689, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1690, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1691, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1692, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1693, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1694, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1695, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1696, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1697, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1698, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1699, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1700, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1701, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1702, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1703, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1704, + "componentType":5126, + "count":8, + "type":"VEC4" + }, + { + "bufferView":1705, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1706, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1707, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1708, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1709, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1710, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1711, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1712, + "componentType":5126, + "count":12, + "max":[ + 0.9166666666666666 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1713, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":1714, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1715, + "componentType":5126, + "count":2, + "max":[ + 0.9166666666666666 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1716, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1717, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1718, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1719, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1720, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1721, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1722, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1723, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1724, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1725, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1726, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1727, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1728, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1729, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1730, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1731, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1732, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":1733, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1734, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1735, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1736, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1737, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1738, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1739, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1740, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1741, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1742, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1743, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1744, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1745, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1746, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1747, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1748, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1749, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1750, + "componentType":5126, + "count":12, + "type":"VEC3" + }, + { + "bufferView":1751, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1752, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1753, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1754, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1755, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1756, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1757, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1758, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1759, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1760, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1761, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1762, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1763, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1764, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1765, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1766, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1767, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1768, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1769, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1770, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1771, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1772, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1773, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1774, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1775, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1776, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1777, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1778, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1779, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1780, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1781, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1782, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1783, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1784, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1785, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1786, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1787, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1788, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1789, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1790, + "componentType":5126, + "count":12, + "type":"VEC4" + }, + { + "bufferView":1791, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1792, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1793, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1794, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1795, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1796, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1797, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1798, + "componentType":5126, + "count":1, + "max":[ + 0 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1799, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1800, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1801, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1802, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1803, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1804, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1805, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1806, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1807, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1808, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1809, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1810, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1811, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1812, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1813, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1814, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1815, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1816, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1817, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1818, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1819, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1820, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1821, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1822, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1823, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1824, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1825, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1826, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1827, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1828, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1829, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1830, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1831, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1832, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1833, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1834, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1835, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1836, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1837, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1838, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1839, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1840, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1841, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1842, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1843, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1844, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1845, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1846, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1847, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1848, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1849, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1850, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1851, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1852, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1853, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1854, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1855, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1856, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1857, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1858, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1859, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1860, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1861, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1862, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1863, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1864, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1865, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1866, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1867, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1868, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1869, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1870, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1871, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1872, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1873, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1874, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1875, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1876, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1877, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1878, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1879, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1880, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1881, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":1882, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":1883, + "componentType":5126, + "count":15, + "max":[ + 1.1666666666666667 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1884, + "componentType":5126, + "count":15, + "type":"VEC3" + }, + { + "bufferView":1885, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1886, + "componentType":5126, + "count":2, + "max":[ + 1.1666666666666667 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1887, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1888, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1889, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1890, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1891, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1892, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1893, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1894, + "componentType":5126, + "count":15, + "type":"VEC3" + }, + { + "bufferView":1895, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1896, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1897, + "componentType":5126, + "count":15, + "type":"VEC3" + }, + { + "bufferView":1898, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1899, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1900, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1901, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1902, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1903, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1904, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1905, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1906, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1907, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1908, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1909, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1910, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1911, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1912, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1913, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1914, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1915, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1916, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1917, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1918, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1919, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1920, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1921, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1922, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1923, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1924, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1925, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1926, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1927, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1928, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1929, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1930, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1931, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1932, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1933, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1934, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1935, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1936, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1937, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1938, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1939, + "componentType":5126, + "count":15, + "type":"VEC3" + }, + { + "bufferView":1940, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1941, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1942, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1943, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1944, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1945, + "componentType":5126, + "count":15, + "type":"VEC3" + }, + { + "bufferView":1946, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1947, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1948, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1949, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1950, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1951, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1952, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1953, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1954, + "componentType":5126, + "count":15, + "type":"VEC3" + }, + { + "bufferView":1955, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1956, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1957, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1958, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1959, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1960, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1961, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1962, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1963, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1964, + "componentType":5126, + "count":15, + "type":"VEC4" + }, + { + "bufferView":1965, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1966, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1967, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1968, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1969, + "componentType":5126, + "count":2, + "max":[ + 2.5833333333333335 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1970, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1971, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1972, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1973, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1974, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1975, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1976, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1977, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1978, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1979, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1980, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1981, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1982, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1983, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1984, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1985, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1986, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1987, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1988, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1989, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1990, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1991, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1992, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1993, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1994, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1995, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1996, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1997, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1998, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1999, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2000, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2001, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2002, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2003, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2004, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2005, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2006, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2007, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2008, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2009, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2010, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2011, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2012, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2013, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2014, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2015, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2016, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2017, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2018, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2019, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2020, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2021, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2022, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2023, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2024, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2025, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2026, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2027, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2028, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2029, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2030, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2031, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2032, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2033, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2034, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2035, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2036, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2037, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2038, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2039, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2040, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2041, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2042, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2043, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2044, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2045, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2046, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2047, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2048, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2049, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2050, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2051, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2052, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2053, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2054, + "componentType":5126, + "count":14, + "type":"VEC3" + }, + { + "bufferView":2055, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2056, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2057, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2058, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2059, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2060, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2061, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2062, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2063, + "componentType":5126, + "count":14, + "type":"VEC3" + }, + { + "bufferView":2064, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2065, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2066, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2067, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2068, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2069, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2070, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2071, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2072, + "componentType":5126, + "count":14, + "type":"VEC3" + }, + { + "bufferView":2073, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2074, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2075, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2076, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2077, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2078, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2079, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2080, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2081, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2082, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2083, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2084, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2085, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2086, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2087, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2088, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2089, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2090, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2091, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2092, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2093, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2094, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2095, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2096, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2097, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2098, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2099, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2100, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2101, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2102, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2103, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2104, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2105, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2106, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2107, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2108, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2109, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2110, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2111, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2112, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2113, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2114, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2115, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2116, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2117, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2118, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2119, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2120, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2121, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2122, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2123, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2124, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2125, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2126, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2127, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2128, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2129, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2130, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2131, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2132, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2133, + "componentType":5126, + "count":14, + "type":"VEC4" + }, + { + "bufferView":2134, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2135, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2136, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2137, + "componentType":5126, + "count":2, + "type":"VEC3" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":10128, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":10128, + "byteOffset":10128, + "target":34962 + }, + { + "buffer":0, + "byteLength":6752, + "byteOffset":20256, + "target":34962 + }, + { + "buffer":0, + "byteLength":3376, + "byteOffset":27008, + "target":34962 + }, + { + "buffer":0, + "byteLength":13504, + "byteOffset":30384, + "target":34962 + }, + { + "buffer":0, + "byteLength":6048, + "byteOffset":43888, + "target":34963 + }, + { + "buffer":0, + "byteLength":1792, + "byteOffset":49936 + }, + { + "buffer":0, + "byteLength":52, + "byteOffset":51728 + }, + { + "buffer":0, + "byteLength":156, + "byteOffset":51780 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":51936 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":51944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":51976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":52000 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":52024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":52056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":52080 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":52104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":52136 + }, + { + "buffer":0, + "byteLength":156, + "byteOffset":52160 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":52316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":52524 + }, + { + "buffer":0, + "byteLength":156, + "byteOffset":52548 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":52704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":52912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":52936 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":52960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":53168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":53192 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":53216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":53424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":53448 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":53472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":53680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":53704 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":53728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":53760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":53784 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":53808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54040 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":54064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54272 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54296 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":54320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54552 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":54576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54632 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":54656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54712 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":54736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":54792 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":54816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":55024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":55048 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":55072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":55280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":55304 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":55328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":55360 + }, + { + "buffer":0, + "byteLength":156, + "byteOffset":55384 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":55540 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":55748 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":55772 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":55796 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":56004 + }, + { + "buffer":0, + "byteLength":156, + "byteOffset":56028 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":56184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":56392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":56416 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":56440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":56648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":56672 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":56696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":56728 + }, + { + "buffer":0, + "byteLength":156, + "byteOffset":56752 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":56908 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57116 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57140 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57164 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57220 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":57244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57476 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57500 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57532 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57556 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57580 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57612 + }, + { + "buffer":0, + "byteLength":56, + "byteOffset":57636 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":57692 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":57860 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57868 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57900 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57924 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":57948 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":57980 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":58004 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58028 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":58060 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":58084 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":58140 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":58164 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":58332 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":58556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":58580 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":58636 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":58660 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":58684 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":58716 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":58740 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":58764 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":58988 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":59012 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":59036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":59068 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":59092 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":59116 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":59340 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":59364 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":59388 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":59612 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":59636 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":59660 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":59884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":59908 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":59932 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60180 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60204 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60236 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60260 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60284 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60340 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":60364 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60588 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60612 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":60636 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60860 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60884 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":60908 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60940 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":60964 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":60988 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":61212 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":61236 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":61260 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":61484 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":61508 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":61532 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":61564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":61588 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":61612 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":61644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":61668 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":61692 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":61724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":61748 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":61772 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":61996 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":62020 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":62044 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":62268 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":62292 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":62316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":62540 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":62564 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":62588 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":62620 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":62644 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":62668 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":62700 + }, + { + "buffer":0, + "byteLength":36, + "byteOffset":62724 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":62760 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":62868 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":62876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":62908 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":62932 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":62956 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":62988 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63012 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":63036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63180 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63204 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":63228 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63396 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":63420 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63588 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":63612 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63668 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":63692 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63748 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":63772 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63828 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":63852 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":63908 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":63932 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64076 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64100 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":64124 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64268 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64292 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":64316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64460 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64484 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":64508 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64652 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64676 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":64700 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64732 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64756 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":64780 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64812 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":64836 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":64860 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65004 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65028 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":65052 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65220 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":65244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65276 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65300 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":65324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65468 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65492 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":65516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65548 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65572 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":65596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65628 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65652 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":65676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65708 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65732 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":65756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65788 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65812 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":65836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":65980 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66004 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":66028 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66060 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66084 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":66108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66252 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66276 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":66300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66332 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66356 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":66380 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66412 + }, + { + "buffer":0, + "byteLength":156, + "byteOffset":66436 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":66592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66648 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":66672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66880 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":66904 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":66928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":67136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":67160 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":67184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":67392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":67416 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":67440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":67648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":67672 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":67696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":67728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":67752 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":67776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":67984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68008 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":68032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68264 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68344 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":68368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68600 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68680 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68760 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68840 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68920 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":68944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":68976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69000 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":69024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69256 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":69280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69336 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":69360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69416 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":69440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69672 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":69696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69928 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":69952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":69984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70008 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70088 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70112 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70168 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":70192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70424 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":70448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70680 + }, + { + "buffer":0, + "byteLength":208, + "byteOffset":70704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70936 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":70960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":70992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71016 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":71040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71072 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":71096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71104 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":71128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71184 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":71208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71264 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":71288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71344 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":71368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71424 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":71448 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":71464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71552 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":71576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71632 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":71656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71712 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":71736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71792 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":71816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71872 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":71896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":71984 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72064 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72144 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72224 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72304 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72384 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":72408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72496 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72520 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72576 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72656 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72736 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72816 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72896 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":72920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":72976 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":73000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73056 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":73080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73112 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73136 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":73160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73216 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":73240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73272 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73296 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":73320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73352 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73376 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":73400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73432 + }, + { + "buffer":0, + "byteLength":28, + "byteOffset":73456 + }, + { + "buffer":0, + "byteLength":84, + "byteOffset":73484 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":73568 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":73576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73608 + }, + { + "buffer":0, + "byteLength":84, + "byteOffset":73632 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":73716 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73828 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73852 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":73876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73908 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":73932 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":73956 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74068 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74092 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":74116 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74228 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74252 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":74276 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74388 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74412 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":74436 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74548 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74572 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":74596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74708 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74732 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":74756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74788 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74812 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":74836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74948 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":74972 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":74996 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75132 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":75156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75188 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75212 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":75236 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75348 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75372 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":75396 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75428 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75452 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":75476 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75588 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75612 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":75636 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75748 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75772 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":75796 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75908 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75932 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":75956 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":75988 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76012 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":76036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76148 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76172 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":76196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76308 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76332 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":76356 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76468 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76492 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":76516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76548 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76572 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":76596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76628 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76652 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":76676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76788 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76812 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":76836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76948 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":76972 + }, + { + "buffer":0, + "byteLength":112, + "byteOffset":76996 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77132 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":77156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77188 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77212 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":77236 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77268 + }, + { + "buffer":0, + "byteLength":40, + "byteOffset":77292 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":77332 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":77452 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":77460 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77492 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77516 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":77540 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77596 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":77620 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77780 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77804 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":77828 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":77988 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78012 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":78036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78220 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":78244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78404 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78428 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":78452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78612 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78636 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":78660 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78692 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78716 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":78740 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78772 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78796 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":78820 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":78980 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79004 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79028 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79060 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79084 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79140 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79164 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79188 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79220 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79244 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79268 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79300 + }, + { + "buffer":0, + "byteLength":120, + "byteOffset":79324 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79444 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79476 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79500 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":79524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79684 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79708 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":79732 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79892 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79916 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":79940 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79972 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":79996 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":80020 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80180 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80204 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":80228 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80388 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80412 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":80436 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80620 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":80644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80700 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":80724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80780 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":80804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":80988 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":81012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":81172 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":81196 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":81220 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":81380 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":81404 + }, + { + "buffer":0, + "byteLength":160, + "byteOffset":81428 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":81588 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":81612 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81636 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":81668 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":81692 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":81700 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":81756 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":81780 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":81812 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":81908 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82060 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82084 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82116 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82140 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":82164 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82292 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82316 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":82340 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82468 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82492 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82548 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82572 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":82596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82748 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82772 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82828 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":82852 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":82908 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":82932 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83060 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83084 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":83108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83236 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83260 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83284 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83340 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":83364 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83492 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83516 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83540 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83596 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":83620 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83652 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83676 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":83700 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83828 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":83852 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":83876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84004 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84028 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84052 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84084 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84108 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":84132 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84260 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84284 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":84308 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84436 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84460 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":84484 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84612 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84636 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84660 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84692 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84716 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84740 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84772 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84796 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":84820 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84948 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":84972 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":84996 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85028 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85052 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85076 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85132 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85188 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85212 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85236 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85268 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":85292 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":85400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85568 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85648 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":85672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85728 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":85752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":85896 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":85920 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":86028 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86172 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86196 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":86220 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86252 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86276 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":86300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86444 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86468 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":86492 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86548 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":86572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86628 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":86652 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86796 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86820 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":86844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":86988 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87012 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87068 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":87092 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":87200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87368 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87448 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87528 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":87552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87720 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":87744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87912 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":87936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":87992 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":88016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88184 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":88208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88352 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88376 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88456 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88536 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":88560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88616 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":88640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88808 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":88832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":88976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89000 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":89024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89192 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89272 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89328 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":89352 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89360 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89384 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89440 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89520 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89600 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89680 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89760 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89840 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89920 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":89944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":89976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90000 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90080 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90160 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90240 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90320 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90400 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90480 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90560 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90640 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90720 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90800 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90880 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":90960 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":90984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91040 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91120 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91200 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91224 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91280 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91304 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91360 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91384 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91440 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91520 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91576 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":91600 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":91768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":91824 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":91848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":92072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":92096 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":92120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":92344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":92368 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":92392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":92616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":92640 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":92664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":92888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":92912 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":92936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93184 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":93208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93456 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93536 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93616 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":93640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93888 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":93968 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":93992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":94024 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":94048 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":94216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":94440 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":94464 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":94632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":94664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":94688 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":94712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":94744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":94768 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":94792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":95016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":95040 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":95064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":95288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":95312 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":95336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":95368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":95392 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":95416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":95640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":95664 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":95688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":95912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":95936 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":95960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":96184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":96208 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":96232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":96264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":96288 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":96312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":96344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":96368 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":96392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":96616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":96640 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":96664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":96888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":96912 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":96936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":97160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":97184 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":97208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":97432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":97456 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":97480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":97512 + }, + { + "buffer":0, + "byteLength":88, + "byteOffset":97536 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":97624 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":97888 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":97896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":97928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":97952 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":97976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":98008 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":98032 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":98296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":98648 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":98672 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":98936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":98968 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":98992 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":99256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":99608 + }, + { + "buffer":0, + "byteLength":264, + "byteOffset":99632 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":99896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":100248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":100272 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":100296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":100648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":100672 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":100696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":101048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":101072 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":101096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":101128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":101152 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":101176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":101208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":101232 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":101256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":101608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":101632 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":101656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":101688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":101712 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":101736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":102136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102192 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":102216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102272 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":102296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102352 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":102376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102752 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":102776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":102832 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":102856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":103208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":103232 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":103256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":103608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":103632 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":103656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":104008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":104032 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":104056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":104088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":104112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":104136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":104168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":104192 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":104216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":104568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":104592 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":104616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":104968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":104992 + }, + { + "buffer":0, + "byteLength":352, + "byteOffset":105016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":105368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":105392 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":105416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":105448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":105472 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":105496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":105528 + }, + { + "buffer":0, + "byteLength":180, + "byteOffset":105552 + }, + { + "buffer":0, + "byteLength":540, + "byteOffset":105732 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":106272 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":106992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":107000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":107024 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":107080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":107104 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":107160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":107184 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":107208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":107240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":107264 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":107288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":108008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":108032 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":108056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":108088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":108112 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":108136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":108856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":108880 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":108904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":109624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":109648 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":109672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":109704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":109728 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":109752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":110472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":110496 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":110520 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":111240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":111264 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":111320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":111344 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":111400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":111424 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":111480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":111504 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":111528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":111560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":111584 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":111608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":112328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":112352 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":112376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":113096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":113120 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":113144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":113176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":113200 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":113224 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":113944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":113968 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":113992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":114712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":114736 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":114760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":114792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":114816 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":114840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":114872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":114896 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":114920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":114952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":114976 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":115000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":115032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":115056 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":115080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":115800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":115824 + }, + { + "buffer":0, + "byteLength":720, + "byteOffset":115848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":116568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":116592 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":116616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":116648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":116672 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":116696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":116728 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":116752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":116760 + }, + { + "buffer":0, + "byteLength":200, + "byteOffset":116784 + }, + { + "buffer":0, + "byteLength":800, + "byteOffset":116984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":117784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":117808 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":117832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":117864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":117888 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":117912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":117944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":117968 + }, + { + "buffer":0, + "byteLength":800, + "byteOffset":117992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":118792 + }, + { + "buffer":0, + "byteLength":600, + "byteOffset":118816 + }, + { + "buffer":0, + "byteLength":800, + "byteOffset":119416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":120216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":120240 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":120264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":120296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":120320 + }, + { + "buffer":0, + "byteLength":800, + "byteOffset":120344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":121144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":121168 + }, + { + "buffer":0, + "byteLength":800, + "byteOffset":121192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":121992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":122016 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":122040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":122072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":122096 + }, + { + "buffer":0, + "byteLength":800, + "byteOffset":122120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":122920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":122944 + }, + { + "buffer":0, + "byteLength":800, + "byteOffset":122968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":123768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":123792 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":123816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":123848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":123872 + }, + { + "buffer":0, + "byteLength":800, + "byteOffset":123896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":124696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":124720 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":124744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":124776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":124800 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":124824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":124856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":124880 + }, + { + "buffer":0, + "byteLength":800, + "byteOffset":124904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":125704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":125728 + }, + { + "buffer":0, + "byteLength":800, + "byteOffset":125752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126576 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":126600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126656 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":126680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126736 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":126760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126816 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":126840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126896 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":126920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":126976 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":127000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127056 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":127080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127112 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127136 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":127160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127216 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":127240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127272 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127296 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":127320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127352 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127376 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":127400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127432 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":127456 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":127564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127620 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":127644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127700 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":127724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127756 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":127780 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":127888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":127920 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":127944 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":128052 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128220 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":128244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128276 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128300 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":128324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128356 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128380 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":128404 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128436 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128460 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":128484 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128540 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":128564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128708 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128732 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":128756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128900 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":128924 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":128948 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129092 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129116 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":129140 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129284 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129308 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":129332 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129364 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129388 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":129412 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129444 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129468 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":129492 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129548 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":129572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129716 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129740 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":129764 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129796 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129820 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":129844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":129988 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130012 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":130036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130180 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130204 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":130228 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130396 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":130420 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130476 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":130500 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130532 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130556 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":130580 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130748 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":130772 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130916 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":130940 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":130964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":131108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":131132 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":131156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":131188 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":131212 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":131236 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":131268 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":131292 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":131400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":131432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":131456 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":131480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":131512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":131536 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":131560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":131592 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":131616 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":131724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":131756 + }, + { + "buffer":0, + "byteLength":108, + "byteOffset":131780 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":131888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132056 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":132080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132112 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132136 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":132160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132216 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":132240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132272 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132296 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":132320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132352 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132376 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":132400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132568 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":132592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132760 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":132784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":132952 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":132976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133144 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":133168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133224 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":133248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133304 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":133328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133384 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":133408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133576 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":133600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133656 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":133680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":133848 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":133872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134040 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":134064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134232 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":134256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134312 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":134336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134392 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":134416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134584 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":134608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134776 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":134800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":134968 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":134992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135048 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":135072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135104 + }, + { + "buffer":0, + "byteLength":44, + "byteOffset":135128 + }, + { + "buffer":0, + "byteLength":132, + "byteOffset":135172 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":135304 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":135312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135368 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":135392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135448 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":135472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135528 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":135552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135608 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":135632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135832 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":135856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":135912 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":135936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136112 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136136 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":136160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136360 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":136384 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136440 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":136464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136664 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":136688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136720 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136744 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":136768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":136824 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":136848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137048 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":137072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137128 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":137152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137208 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":137232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137432 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":137456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137656 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":137680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137736 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":137760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":137936 + }, + { + "buffer":0, + "byteLength":132, + "byteOffset":137960 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":138092 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":138268 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":138292 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":138316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":138492 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":138516 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":138540 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":138572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":138596 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":138620 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":138652 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":138676 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":138700 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":138876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":138900 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":138924 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139100 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139124 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":139148 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139348 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":139372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139548 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139572 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":139596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139628 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":139652 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139660 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":139684 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139716 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139740 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":139764 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139796 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139820 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":139844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139900 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":139924 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139956 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":139980 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140004 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140060 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140084 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140116 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140140 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140164 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140220 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140276 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140300 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140356 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140380 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140404 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140436 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140460 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140484 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140540 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140620 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140700 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140780 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140860 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140916 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140940 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":140964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":140996 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141020 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141044 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141076 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141100 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141124 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141180 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141204 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141236 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141260 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141284 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141340 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141364 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141396 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141420 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141444 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141476 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141500 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141580 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141636 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141660 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141684 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141716 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141740 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141764 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141796 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141820 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141876 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":141900 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141908 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":141932 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":141988 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142044 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142068 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142092 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142124 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142148 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142172 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142204 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142228 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142252 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142284 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142308 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142332 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142364 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142388 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142412 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142444 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142468 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142492 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142548 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142628 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142652 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142684 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142708 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142732 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142764 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142788 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142812 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142868 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142892 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142924 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":142948 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":142972 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143004 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143028 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143052 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143084 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143108 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143132 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143164 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143188 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143212 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143268 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143292 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143348 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143404 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143428 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143484 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143508 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143532 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143588 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143612 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143668 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143692 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143748 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143772 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143828 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143852 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143908 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":143932 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":143988 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":144012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144044 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144068 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":144092 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144124 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":144148 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":144244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144396 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":144420 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144476 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":144500 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144532 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144556 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":144580 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144708 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144732 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":144756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144908 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":144932 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":144988 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":145012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145140 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145164 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":145188 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145220 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145244 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":145268 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145324 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":145348 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145380 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145404 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":145428 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145580 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":145604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145636 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145660 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":145684 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145812 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145836 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":145860 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145892 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145916 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":145940 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145972 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":145996 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":146020 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146148 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146172 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":146196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146348 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":146372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146404 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146428 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":146452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146580 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146604 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":146628 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146780 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":146804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146932 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":146956 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":146980 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147036 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":147060 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147092 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147116 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":147140 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147268 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147292 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":147316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147444 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147468 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":147492 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147620 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147644 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":147668 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147700 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147724 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":147748 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":147780 + }, + { + "buffer":0, + "byteLength":48, + "byteOffset":147804 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":147852 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":147996 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":148188 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":148196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":148220 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":148244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":148276 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":148300 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":148324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":148356 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":148380 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":148404 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":148596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":148620 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":148644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":148836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":148860 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":148884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":148916 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":148940 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":149084 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":149276 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":149300 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":149324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":149516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":149540 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":149564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":149596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":149620 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":149644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":149836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":149860 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":149884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":150076 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":150100 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":150124 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":150156 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":150180 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":150324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":150516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":150540 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":150564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":150596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":150620 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":150644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":150676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":150700 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":150724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":150916 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":150940 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":150964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151180 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":151204 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151236 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151260 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":151284 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151476 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151500 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":151524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151580 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":151604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151796 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151820 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":151844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151900 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":151924 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151956 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":151980 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":152004 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":152196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":152220 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":152244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":152276 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":152300 + }, + { + "buffer":0, + "byteLength":192, + "byteOffset":152324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":152516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":152540 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":152564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":152596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":152620 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":152644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":152676 + }, + { + "buffer":0, + "byteLength":4, + "byteOffset":152700 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152704 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":152716 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152732 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152744 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":152756 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152772 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152784 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":152796 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152812 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152824 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":152836 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152852 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152864 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":152876 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152892 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152904 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":152916 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152932 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152944 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":152956 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152972 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":152984 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":152996 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153012 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153024 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153036 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153052 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153064 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153076 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153092 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153104 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153116 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153132 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153144 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153156 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153172 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153184 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153196 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153212 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153224 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153236 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153252 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153264 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153276 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153292 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153304 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153316 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153332 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153344 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153356 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153372 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153384 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153396 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153412 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153424 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153436 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153452 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153464 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153476 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153492 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153504 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153516 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153532 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153544 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153556 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153572 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153584 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153596 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153612 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153624 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153636 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153652 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153664 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153676 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153692 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153704 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153716 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153732 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153744 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153756 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153772 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153784 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":153796 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":153812 + }, + { + "buffer":0, + "byteLength":60, + "byteOffset":153824 + }, + { + "buffer":0, + "byteLength":180, + "byteOffset":153884 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":154064 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":154304 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":154312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":154336 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":154360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":154392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":154416 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":154440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":154472 + }, + { + "buffer":0, + "byteLength":180, + "byteOffset":154496 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":154676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":154916 + }, + { + "buffer":0, + "byteLength":180, + "byteOffset":154940 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":155120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":155360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":155384 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":155408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":155648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":155672 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":155696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":155936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":155960 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":155984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":156016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":156040 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":156064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":156096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":156120 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":156144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":156384 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":156408 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":156432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":156672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":156696 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":156720 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":156960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":156984 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":157008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":157040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":157064 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":157088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":157120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":157144 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":157168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":157200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":157224 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":157248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":157488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":157512 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":157536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":157776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":157800 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":157824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":157856 + }, + { + "buffer":0, + "byteLength":180, + "byteOffset":157880 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":158060 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":158300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":158324 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":158348 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":158588 + }, + { + "buffer":0, + "byteLength":180, + "byteOffset":158612 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":158792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":159032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":159056 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":159080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":159320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":159344 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":159368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":159400 + }, + { + "buffer":0, + "byteLength":180, + "byteOffset":159424 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":159604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":159844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":159868 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":159892 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160132 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160156 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":160180 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160420 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160444 + }, + { + "buffer":0, + "byteLength":240, + "byteOffset":160468 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160708 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160732 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":160756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160788 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":160812 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160820 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":160844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160900 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":160924 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160956 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":160980 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161004 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161060 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161084 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161116 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161140 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161164 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161220 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161276 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161300 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161356 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161380 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161404 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161436 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161460 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161484 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161540 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161620 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161700 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161780 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161860 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161916 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161940 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":161964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":161996 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162020 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162044 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162076 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162100 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162124 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162180 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162204 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162236 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162260 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162284 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162340 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162364 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162396 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162420 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162444 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162476 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162500 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162580 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162636 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162660 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162684 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162716 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162740 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162764 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162796 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162820 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162900 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":162924 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162956 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":162980 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":163004 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":163036 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":163060 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":163228 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":163260 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":163284 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":163308 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":163340 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":163364 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":163388 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":163612 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":163636 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":163804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":164028 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":164052 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":164076 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":164300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":164324 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":164348 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":164572 + }, + { + "buffer":0, + "byteLength":168, + "byteOffset":164596 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":164764 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":164988 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":165012 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":165036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":165068 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":165092 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":165116 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":165148 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":165172 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":165196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":165420 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":165444 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":165468 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":165692 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":165716 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":165740 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":165964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":165988 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":166012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166044 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166068 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":166092 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166124 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166148 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":166172 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166204 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166228 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":166252 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166476 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166500 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":166524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166580 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":166604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166636 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166660 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":166684 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166908 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":166932 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":166956 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":167180 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":167204 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":167228 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":167452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":167476 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":167500 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":167724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":167748 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":167772 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":167804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":167828 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":167852 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":168076 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":168100 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":168124 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":168348 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":168372 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":168396 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":168620 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":168644 + }, + { + "buffer":0, + "byteLength":224, + "byteOffset":168668 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":168892 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":168916 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":168940 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":168972 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":168996, + "uri":"Ninja.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Ninja/Ninja.mesh b/jme3-testdata/src/main/resources/Models/Ninja/Ninja.mesh new file mode 100644 index 0000000000..518f7507c1 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Ninja/Ninja.mesh differ diff --git a/jme3-testdata/src/main/resources/Models/Ninja/Ninja.skeleton b/jme3-testdata/src/main/resources/Models/Ninja/Ninja.skeleton new file mode 100644 index 0000000000..293891b970 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Ninja/Ninja.skeleton differ diff --git a/jme3-testdata/src/main/resources/Models/Ninja/Ninja.skeleton.xml b/jme3-testdata/src/main/resources/Models/Ninja/Ninja.skeleton.xml index 632539e31f..c53dc06a6b 100644 --- a/jme3-testdata/src/main/resources/Models/Ninja/Ninja.skeleton.xml +++ b/jme3-testdata/src/main/resources/Models/Ninja/Ninja.skeleton.xml @@ -1,4 +1,4 @@ - + @@ -19,7 +19,7 @@ - + @@ -31,7 +31,7 @@ - + @@ -239,13 +239,13 @@ - + - + @@ -271,25 +271,25 @@ - + - + - + - + @@ -339,7 +339,7 @@ - + @@ -355,19 +355,19 @@ - + - + - + @@ -383,7 +383,7 @@ - + @@ -395,22 +395,6 @@ - - - - - - - - - - - - - - - - @@ -477,7 +461,7 @@ - + @@ -513,7 +497,7 @@ - + @@ -535,22 +519,6 @@ - - - - - - - - - - - - - - - - @@ -589,7 +557,7 @@ - + @@ -617,7 +585,7 @@ - + @@ -661,7 +629,7 @@ - + @@ -739,28 +707,12 @@ - - - - - - - - - - - - - - - - - + @@ -772,7 +724,7 @@ - + @@ -803,7 +755,7 @@ - + @@ -831,22 +783,6 @@ - - - - - - - - - - - - - - - - @@ -877,13 +813,13 @@ - + - + @@ -909,13 +845,13 @@ - + - + @@ -963,13 +899,13 @@ - + - + @@ -997,22 +933,6 @@ - - - - - - - - - - - - - - - - @@ -1030,7 +950,7 @@ - + @@ -1103,7 +1023,7 @@ - + @@ -1133,7 +1053,7 @@ - + @@ -1173,22 +1093,6 @@ - - - - - - - - - - - - - - - - @@ -1221,13 +1125,13 @@ - + - + @@ -1359,28 +1263,12 @@ - - - - - - - - - - - - - - - - - + @@ -1392,7 +1280,7 @@ - + @@ -1457,22 +1345,6 @@ - - - - - - - - - - - - - - - - @@ -1503,13 +1375,13 @@ - + - + @@ -1525,7 +1397,7 @@ - + @@ -1541,25 +1413,25 @@ - + - + - + - + @@ -1575,7 +1447,7 @@ - + @@ -1613,13 +1485,13 @@ - + - + @@ -1641,22 +1513,6 @@ - - - - - - - - - - - - - - - - @@ -1717,7 +1573,7 @@ - + @@ -1729,7 +1585,7 @@ - + @@ -1769,22 +1625,6 @@ - - - - - - - - - - - - - - - - @@ -1864,7 +1704,7 @@ - + @@ -1961,28 +1801,12 @@ - - - - - - - - - - - - - - - - - + @@ -1994,7 +1818,7 @@ - + @@ -2053,22 +1877,6 @@ - - - - - - - - - - - - - - - - @@ -2123,13 +1931,13 @@ - + - + @@ -2159,7 +1967,7 @@ - + @@ -2175,7 +1983,7 @@ - + @@ -2197,7 +2005,7 @@ - + @@ -2209,7 +2017,7 @@ - + @@ -2269,14 +2077,14 @@ - + - + @@ -2287,7 +2095,7 @@ - + @@ -2303,7 +2111,7 @@ - + @@ -2315,22 +2123,6 @@ - - - - - - - - - - - - - - - - @@ -2373,13 +2165,13 @@ - + - + @@ -2401,22 +2193,6 @@ - - - - - - - - - - - - - - - - @@ -2443,13 +2219,13 @@ - + - + @@ -2550,7 +2326,7 @@ - + @@ -2599,28 +2375,12 @@ - - - - - - - - - - - - - - - - - + @@ -2637,7 +2397,7 @@ - + @@ -2650,7 +2410,7 @@ - + @@ -2684,7 +2444,7 @@ - + @@ -2712,7 +2472,7 @@ - + @@ -2745,30 +2505,14 @@ - + + + + + - - - - - - - - - - - - - - - - - - - - - + @@ -2779,7 +2523,7 @@ - + @@ -2799,7 +2543,7 @@ - + @@ -2835,7 +2579,7 @@ - + @@ -2851,16 +2595,6 @@ - - - - - - - - - - @@ -2891,7 +2625,7 @@ - + @@ -2907,16 +2641,6 @@ - - - - - - - - - - @@ -3003,22 +2727,12 @@ - - - - - - - - - - - + @@ -3053,16 +2767,6 @@ - - - - - - - - - - @@ -3115,14 +2819,14 @@ - - + + - - + + @@ -3237,22 +2941,6 @@ - - - - - - - - - - - - - - - - @@ -3301,13 +2989,13 @@ - + - + @@ -3335,22 +3023,6 @@ - - - - - - - - - - - - - - - - @@ -3459,7 +3131,7 @@ - + @@ -3471,7 +3143,7 @@ - + @@ -3515,22 +3187,6 @@ - - - - - - - - - - - - - - - - @@ -3579,7 +3235,7 @@ - + @@ -3591,7 +3247,7 @@ - + @@ -3613,22 +3269,6 @@ - - - - - - - - - - - - - - - - @@ -3689,25 +3329,25 @@ - + - + - + - + @@ -3745,7 +3385,7 @@ - + @@ -3763,7 +3403,7 @@ - + @@ -3780,7 +3420,7 @@ - + @@ -3813,13 +3453,13 @@ - + - + @@ -3835,7 +3475,7 @@ - + @@ -3853,7 +3493,7 @@ - + @@ -3887,34 +3527,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -3981,25 +3593,25 @@ - + - + - + - + @@ -4033,34 +3645,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -4303,40 +3887,12 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -4360,13 +3916,13 @@ - + - + @@ -4434,12 +3990,12 @@ - + - + @@ -4473,7 +4029,7 @@ - + @@ -4503,34 +4059,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -4549,7 +4077,7 @@ - + @@ -4593,7 +4121,7 @@ - + @@ -4605,20 +4133,20 @@ - - + + - - + + - - + + @@ -4633,7 +4161,7 @@ - + @@ -4659,7 +4187,7 @@ - + @@ -4693,16 +4221,6 @@ - - - - - - - - - - @@ -4757,7 +4275,7 @@ - + @@ -4779,22 +4297,12 @@ - + - - - - - - - - - - @@ -4959,22 +4467,12 @@ - - - - - - - - - - - + @@ -4991,7 +4489,7 @@ - + @@ -5033,16 +4531,6 @@ - - - - - - - - - - @@ -5091,7 +4579,7 @@ - + @@ -5111,25 +4599,25 @@ - + - + - + - + @@ -5177,7 +4665,7 @@ - + @@ -5223,16 +4711,6 @@ - - - - - - - - - - @@ -5243,19 +4721,19 @@ - + - + - + @@ -5299,7 +4777,7 @@ - + @@ -5315,7 +4793,7 @@ - + @@ -5345,16 +4823,6 @@ - - - - - - - - - - @@ -5509,17 +4977,7 @@ - - - - - - - - - - - + @@ -5534,7 +4992,7 @@ - + @@ -5545,19 +5003,19 @@ - + - + - + @@ -5579,19 +5037,19 @@ - + - + - + @@ -5607,7 +5065,7 @@ - + @@ -5623,16 +5081,6 @@ - - - - - - - - - - @@ -5705,37 +5153,37 @@ - + - + - + - + - + - + @@ -5785,13 +5233,13 @@ - + - + @@ -5815,25 +5263,25 @@ - + - + - + - + @@ -5873,19 +5321,19 @@ - + - + - + @@ -5913,19 +5361,19 @@ - + - + - + @@ -5941,13 +5389,13 @@ - + - + @@ -5989,7 +5437,7 @@ - + @@ -6017,28 +5465,6 @@ - - - - - - - - - - - - - - - - - - - - - - @@ -6123,19 +5549,19 @@ - + - + - + @@ -6199,28 +5625,6 @@ - - - - - - - - - - - - - - - - - - - - - - @@ -6577,34 +5981,12 @@ - - - - - - - - - - - - - - - - - - - - - - - + @@ -6634,25 +6016,25 @@ - + - + - + - + @@ -6754,41 +6136,19 @@ - + - + - - - - - - - - - - - - - - - - - - - - - - - + @@ -6853,13 +6213,13 @@ - + - + @@ -6876,13 +6236,13 @@ - + - + @@ -6903,49 +6263,49 @@ - + - + - + - + - + - + - + - + @@ -7013,7 +6373,7 @@ - + @@ -7025,14 +6385,14 @@ - + - + @@ -7043,7 +6403,7 @@ - + @@ -7059,19 +6419,19 @@ - + - + - + @@ -7105,22 +6465,6 @@ - - - - - - - - - - - - - - - - @@ -7175,13 +6519,13 @@ - + - + @@ -7197,13 +6541,13 @@ - + - + @@ -7215,22 +6559,6 @@ - - - - - - - - - - - - - - - - @@ -7335,7 +6663,7 @@ - + @@ -7449,28 +6777,12 @@ - - - - - - - - - - - - - - - - - + @@ -7494,7 +6806,7 @@ - + @@ -7543,7 +6855,7 @@ - + @@ -7577,22 +6889,6 @@ - - - - - - - - - - - - - - - - @@ -7613,7 +6909,7 @@ - + @@ -7629,13 +6925,13 @@ - + - + @@ -7661,13 +6957,13 @@ - + - + @@ -7684,7 +6980,7 @@ - + @@ -7739,13 +7035,13 @@ - + - + @@ -7757,7 +7053,7 @@ - + @@ -7785,22 +7081,6 @@ - - - - - - - - - - - - - - - - @@ -7811,7 +7091,7 @@ - + @@ -7849,13 +7129,13 @@ - + - + @@ -7877,22 +7157,6 @@ - - - - - - - - - - - - - - - - @@ -7919,7 +7183,7 @@ - + @@ -8045,34 +7309,18 @@ - - - - - - - - - - - - - - - - - + - + @@ -8137,22 +7385,6 @@ - - - - - - - - - - - - - - - - @@ -8173,7 +7405,7 @@ - + @@ -8189,13 +7421,13 @@ - + - + @@ -8221,7 +7453,7 @@ - + @@ -8233,7 +7465,7 @@ - + @@ -8249,7 +7481,7 @@ - + @@ -8262,7 +7494,7 @@ - + @@ -8305,19 +7537,19 @@ - + - + - + @@ -8335,35 +7567,13 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + - + @@ -8371,6 +7581,12 @@ + + + + + + @@ -8390,7 +7606,7 @@ - + @@ -8439,13 +7655,13 @@ - + - + @@ -8461,7 +7677,7 @@ - + @@ -8473,22 +7689,6 @@ - - - - - - - - - - - - - - - - @@ -8515,13 +7715,13 @@ - + - + @@ -8533,7 +7733,7 @@ - + @@ -8659,34 +7859,18 @@ - - - - - - - - - - - - - - - - - + - + @@ -8739,22 +7923,6 @@ - - - - - - - - - - - - - - - - @@ -8803,13 +7971,13 @@ - + - + @@ -8835,19 +8003,19 @@ - + - + - + @@ -8901,13 +8069,13 @@ - + - + @@ -8929,22 +8097,6 @@ - - - - - - - - - - - - - - - - @@ -9005,7 +8157,7 @@ - + @@ -9023,7 +8175,7 @@ - + @@ -9057,22 +8209,6 @@ - - - - - - - - - - - - - - - - @@ -9159,7 +8295,7 @@ - + @@ -9249,28 +8385,12 @@ - - - - - - - - - - - - - - - - - + @@ -9288,7 +8408,7 @@ - + @@ -9365,22 +8485,6 @@ - - - - - - - - - - - - - - - - @@ -9435,13 +8539,13 @@ - + - + @@ -9467,19 +8571,19 @@ - + - + - + @@ -9533,13 +8637,13 @@ - + - + @@ -9561,22 +8665,6 @@ - - - - - - - - - - - - - - - - @@ -9637,7 +8725,7 @@ - + @@ -9655,7 +8743,7 @@ - + @@ -9689,22 +8777,6 @@ - - - - - - - - - - - - - - - - @@ -9791,7 +8863,7 @@ - + @@ -9881,28 +8953,12 @@ - - - - - - - - - - - - - - - - - + @@ -9920,7 +8976,7 @@ - + @@ -10003,22 +9059,6 @@ - - - - - - - - - - - - - - - - @@ -10091,19 +9131,19 @@ - + - + - + @@ -10135,19 +9175,19 @@ - + - + - + @@ -10219,25 +9259,25 @@ - + - + - + - + @@ -10271,28 +9311,6 @@ - - - - - - - - - - - - - - - - - - - - - - @@ -10353,19 +9371,19 @@ - + - + - + @@ -10399,28 +9417,6 @@ - - - - - - - - - - - - - - - - - - - - - - @@ -10459,7 +9455,7 @@ - + @@ -10635,41 +9631,19 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + - - + + - + @@ -10696,13 +9670,13 @@ - + - + @@ -10720,7 +9694,7 @@ - + @@ -10827,28 +9801,6 @@ - - - - - - - - - - - - - - - - - - - - - - @@ -10891,13 +9843,13 @@ - + - + @@ -10923,7 +9875,7 @@ - + @@ -10941,7 +9893,7 @@ - + @@ -10995,7 +9947,7 @@ - + @@ -11013,7 +9965,7 @@ - + @@ -11035,22 +9987,6 @@ - - - - - - - - - - - - - - - - @@ -11099,13 +10035,13 @@ - + - + @@ -11121,13 +10057,13 @@ - + - + @@ -11139,22 +10075,6 @@ - - - - - - - - - - - - - - - - @@ -11303,13 +10223,13 @@ - + - + @@ -11337,28 +10257,12 @@ - - - - - - - - - - - - - - - - - + @@ -11388,7 +10292,7 @@ - + @@ -11443,13 +10347,13 @@ - + - + @@ -11477,22 +10381,6 @@ - - - - - - - - - - - - - - - - @@ -11514,13 +10402,13 @@ - + - + @@ -11541,13 +10429,13 @@ - + - + @@ -11573,7 +10461,7 @@ - + @@ -11585,7 +10473,7 @@ - + @@ -11633,7 +10521,7 @@ - + @@ -11651,7 +10539,7 @@ - + @@ -11679,22 +10567,6 @@ - - - - - - - - - - - - - - - - @@ -11761,13 +10633,13 @@ - + - + @@ -11783,7 +10655,7 @@ - + @@ -11801,22 +10673,6 @@ - - - - - - - - - - - - - - - - @@ -11981,28 +10837,12 @@ - - - - - - - - - - - - - - - - - + @@ -12014,7 +10854,7 @@ - + @@ -12045,7 +10885,7 @@ - + @@ -12073,22 +10913,6 @@ - - - - - - - - - - - - - - - - @@ -12179,13 +11003,13 @@ - + - + @@ -12201,7 +11025,7 @@ - + @@ -12217,7 +11041,7 @@ - + @@ -12233,16 +11057,6 @@ - - - - - - - - - - @@ -12298,7 +11112,7 @@ - + @@ -12313,16 +11127,6 @@ - - - - - - - - - - @@ -12379,8 +11183,8 @@ - - + + @@ -12435,13 +11239,13 @@ - + - + @@ -12463,16 +11267,6 @@ - - - - - - - - - - @@ -12539,7 +11333,7 @@ - + @@ -12573,17 +11367,7 @@ - - - - - - - - - - - + @@ -12687,19 +11471,19 @@ - + - + - + @@ -12709,19 +11493,19 @@ - + - + - + @@ -12731,19 +11515,19 @@ - + - + - + @@ -12753,19 +11537,19 @@ - + - - + + - + @@ -12787,22 +11571,6 @@ - - - - - - - - - - - - - - - - @@ -12813,7 +11581,7 @@ - + @@ -12829,7 +11597,7 @@ - + @@ -12841,7 +11609,7 @@ - + @@ -12851,19 +11619,19 @@ - + - + - + @@ -12873,34 +11641,18 @@ - + - + - - - - - - - - - - - - - - - - @@ -12997,7 +11749,7 @@ - + @@ -13009,13 +11761,13 @@ - + - + @@ -13033,7 +11785,7 @@ - + @@ -13049,7 +11801,7 @@ - + @@ -13131,22 +11883,6 @@ - - - - - - - - - - - - - - - - @@ -13173,7 +11909,7 @@ - + @@ -13191,13 +11927,13 @@ - + - + @@ -13225,7 +11961,7 @@ - + @@ -13237,7 +11973,7 @@ - + @@ -13253,41 +11989,25 @@ - + - + - - - - - - - - - - - - - - - - - + - + diff --git a/jme3-testdata/src/main/resources/Models/Ninja/OgreXMLConverter.log b/jme3-testdata/src/main/resources/Models/Ninja/OgreXMLConverter.log new file mode 100644 index 0000000000..738faa9fcf --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Ninja/OgreXMLConverter.log @@ -0,0 +1,85 @@ +02:34:20: Creating resource group General +02:34:20: Creating resource group OgreInternal +02:34:20: Creating resource group OgreAutodetect +02:34:20: Registering ResourceManager for type Mesh +02:34:20: Registering ResourceManager for type Material +02:34:20: Registering ResourceManager for type Skeleton +02:34:20: XMLSkeletonSerializer writing skeleton data to C:\Users\USER\Desktop\Projects\Open Source\jmonkeyengine\jme3-testdata\src\main\resources\Models\Ninja\Ninja.skeleton.xml... +02:34:20: Populating DOM... +02:34:20: Exporting bones.. +02:34:20: There are 28 bones. +02:34:20: Exporting Bone number 0 +02:34:20: Exporting Bone number 1 +02:34:20: Exporting Bone number 2 +02:34:20: Exporting Bone number 3 +02:34:20: Exporting Bone number 4 +02:34:20: Exporting Bone number 5 +02:34:20: Exporting Bone number 6 +02:34:20: Exporting Bone number 7 +02:34:20: Exporting Bone number 8 +02:34:20: Exporting Bone number 9 +02:34:20: Exporting Bone number 10 +02:34:20: Exporting Bone number 11 +02:34:20: Exporting Bone number 12 +02:34:20: Exporting Bone number 13 +02:34:20: Exporting Bone number 14 +02:34:20: Exporting Bone number 15 +02:34:20: Exporting Bone number 16 +02:34:20: Exporting Bone number 17 +02:34:20: Exporting Bone number 18 +02:34:20: Exporting Bone number 19 +02:34:20: Exporting Bone number 20 +02:34:20: Exporting Bone number 21 +02:34:20: Exporting Bone number 22 +02:34:20: Exporting Bone number 23 +02:34:20: Exporting Bone number 24 +02:34:20: Exporting Bone number 25 +02:34:20: Exporting Bone number 26 +02:34:20: Exporting Bone number 27 +02:34:20: Bones exported. +02:34:20: Exporting animations, count=20 +02:34:20: Exporting animation: Attack1 +02:34:20: Animation exported. +02:34:20: Exporting animation: Attack2 +02:34:20: Animation exported. +02:34:20: Exporting animation: Attack3 +02:34:20: Animation exported. +02:34:20: Exporting animation: Backflip +02:34:20: Animation exported. +02:34:20: Exporting animation: Block +02:34:20: Animation exported. +02:34:20: Exporting animation: Climb +02:34:20: Animation exported. +02:34:20: Exporting animation: Crouch +02:34:20: Animation exported. +02:34:20: Exporting animation: Death1 +02:34:20: Animation exported. +02:34:20: Exporting animation: Death2 +02:34:20: Animation exported. +02:34:20: Exporting animation: HighJump +02:34:20: Animation exported. +02:34:20: Exporting animation: Idle1 +02:34:20: Animation exported. +02:34:20: Exporting animation: Idle2 +02:34:20: Animation exported. +02:34:20: Exporting animation: Idle3 +02:34:20: Animation exported. +02:34:20: Exporting animation: Jump +02:34:20: Animation exported. +02:34:20: Exporting animation: JumpNoHeight +02:34:20: Animation exported. +02:34:20: Exporting animation: Kick +02:34:20: Animation exported. +02:34:20: Exporting animation: SideKick +02:34:20: Animation exported. +02:34:20: Exporting animation: Spin +02:34:20: Animation exported. +02:34:20: Exporting animation: Stealth +02:34:20: Animation exported. +02:34:20: Exporting animation: Walk +02:34:20: Animation exported. +02:34:20: DOM populated, writing XML file.. +02:34:20: XMLSkeletonSerializer export successful. +02:34:20: Unregistering ResourceManager for type Skeleton +02:34:20: Unregistering ResourceManager for type Material +02:34:20: Unregistering ResourceManager for type Mesh diff --git a/jme3-testdata/src/main/resources/Models/Oto/OgreXMLConverter.log b/jme3-testdata/src/main/resources/Models/Oto/OgreXMLConverter.log new file mode 100644 index 0000000000..8d26aa4606 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Oto/OgreXMLConverter.log @@ -0,0 +1,42 @@ +02:11:07: Creating resource group General +02:11:07: Creating resource group OgreInternal +02:11:07: Creating resource group OgreAutodetect +02:11:07: Registering ResourceManager for type Mesh +02:11:07: Registering ResourceManager for type Material +02:11:07: Registering ResourceManager for type Skeleton +02:11:07: XMLSkeletonSerializer writing skeleton data to C:\Users\USER\Desktop\Projects\Open Source\jmonkeyengine\jme3-testdata\src\main\resources\Models\Oto\Oto.skeleton.xml... +02:11:07: Populating DOM... +02:11:07: Exporting bones.. +02:11:07: There are 15 bones. +02:11:07: Exporting Bone number 0 +02:11:07: Exporting Bone number 1 +02:11:07: Exporting Bone number 2 +02:11:07: Exporting Bone number 3 +02:11:07: Exporting Bone number 4 +02:11:07: Exporting Bone number 5 +02:11:07: Exporting Bone number 6 +02:11:07: Exporting Bone number 7 +02:11:07: Exporting Bone number 8 +02:11:07: Exporting Bone number 9 +02:11:07: Exporting Bone number 10 +02:11:07: Exporting Bone number 11 +02:11:07: Exporting Bone number 12 +02:11:07: Exporting Bone number 13 +02:11:07: Exporting Bone number 14 +02:11:07: Bones exported. +02:11:07: Exporting animations, count=5 +02:11:07: Exporting animation: Dodge +02:11:07: Animation exported. +02:11:07: Exporting animation: Walk +02:11:07: Animation exported. +02:11:07: Exporting animation: pull +02:11:07: Animation exported. +02:11:07: Exporting animation: push +02:11:07: Animation exported. +02:11:07: Exporting animation: stand +02:11:07: Animation exported. +02:11:07: DOM populated, writing XML file.. +02:11:07: XMLSkeletonSerializer export successful. +02:11:07: Unregistering ResourceManager for type Skeleton +02:11:07: Unregistering ResourceManager for type Material +02:11:07: Unregistering ResourceManager for type Mesh diff --git a/jme3-testdata/src/main/resources/Models/Oto/Oto.bin b/jme3-testdata/src/main/resources/Models/Oto/Oto.bin new file mode 100644 index 0000000000..083805b245 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Oto/Oto.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Oto/Oto.gltf b/jme3-testdata/src/main/resources/Models/Oto/Oto.gltf new file mode 100644 index 0000000000..dc42531a0c --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Oto/Oto.gltf @@ -0,0 +1,5888 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 15, + 16 + ] + } + ], + "nodes":[ + { + "name":"head", + "rotation":[ + 0.08536205440759659, + -1.070900346178405e-08, + -9.175812332173905e-10, + 0.9963499903678894 + ], + "translation":[ + -0.8126991391181946, + 1.58137047290802, + 1.4856898784637451 + ] + }, + { + "name":"hand.right", + "rotation":[ + -0.058054301887750626, + -0.06504412740468979, + 0.9888745546340942, + 0.12052406370639801 + ], + "scale":[ + 1.0000019073486328, + 1.0000001192092896, + 1.0000007152557373 + ], + "translation":[ + 1.0375628471374512, + 0.3154433071613312, + 0.8177039623260498 + ] + }, + { + "children":[ + 1 + ], + "name":"arm.right", + "rotation":[ + 0.05070662871003151, + -0.00821951124817133, + -0.6826773881912231, + 0.7289121150970459 + ], + "scale":[ + 1, + 0.9999998211860657, + 1 + ], + "translation":[ + 0.3799286186695099, + -1.0400831699371338, + 0.634462833404541 + ] + }, + { + "children":[ + 2 + ], + "name":"uparm.right", + "rotation":[ + -0.5276687741279602, + -0.8458757400512695, + -0.012284166179597378, + 0.07687058299779892 + ], + "scale":[ + 1, + 0.9999998211860657, + 1 + ], + "translation":[ + -2.5666065216064453, + 0.1491447538137436, + 1.181256890296936 + ] + }, + { + "name":"hand.left", + "rotation":[ + -0.05805647000670433, + 0.06504421681165695, + -0.9888740181922913, + 0.12052752822637558 + ], + "scale":[ + 0.9999977350234985, + 0.9999998807907104, + 0.9999991655349731 + ], + "translation":[ + -0.30658286809921265, + 1.092599868774414, + 0.7462673187255859 + ] + }, + { + "children":[ + 4 + ], + "name":"arm.left", + "rotation":[ + 0.05070379748940468, + 0.008224105462431908, + 0.6826791167259216, + 0.7289106845855713 + ], + "scale":[ + 0.9999999403953552, + 0.9999998211860657, + 1 + ], + "translation":[ + -1.0633695125579834, + -0.23811519145965576, + 0.6642343997955322 + ] + }, + { + "children":[ + 5 + ], + "name":"uparm.left", + "rotation":[ + -0.5276708006858826, + 0.8458744287490845, + 0.012280724011361599, + 0.07687117159366608 + ], + "scale":[ + 1, + 0.9999998807907104, + 1.0000001192092896 + ], + "translation":[ + 1.3524881601333618, + 2.124983072280884, + 1.221987009048462 + ] + }, + { + "children":[ + 0, + 3, + 6 + ], + "name":"spinehigh", + "rotation":[ + -0.007721413858234882, + -1.304908625598955e-09, + 1.335677808356195e-07, + 0.9999701976776123 + ], + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + -0.004165322985500097, + 0.00256460253149271, + 1.1020691394805908 + ] + }, + { + "name":"foot.right", + "rotation":[ + -0.590979278087616, + -0.06579727679491043, + 0.10471996665000916, + 0.7971498966217041 + ], + "scale":[ + 0.9999998807907104, + 0.9999998807907104, + 1 + ], + "translation":[ + 2.0086328983306885, + -1.2001644372940063, + -0.4166974723339081 + ] + }, + { + "children":[ + 8 + ], + "name":"leg.right", + "rotation":[ + 0.11362378299236298, + 0.025969699025154114, + 0.1527608335018158, + 0.9813660383224487 + ], + "scale":[ + 1, + 1, + 0.9999998211860657 + ], + "translation":[ + 0.0191442109644413, + 0.4021247923374176, + -1.960440754890442 + ] + }, + { + "children":[ + 9 + ], + "name":"hip.right", + "rotation":[ + 0.9609782099723816, + 0.27448558807373047, + 0.0018609233666211367, + 0.03427942097187042 + ], + "scale":[ + 1.000001072883606, + 1.0000005960464478, + 1.0000001192092896 + ], + "translation":[ + -0.7781664729118347, + -0.42497193813323975, + -0.08371999114751816 + ] + }, + { + "name":"foot.left", + "rotation":[ + -0.5909783840179443, + 0.06580521911382675, + -0.1047140508890152, + 0.7971506714820862 + ], + "translation":[ + -2.098972797393799, + 0.832064151763916, + -0.7420488595962524 + ] + }, + { + "children":[ + 11 + ], + "name":"leg.left", + "rotation":[ + 0.11361631751060486, + -0.025979405269026756, + -0.15276572108268738, + 0.9813659191131592 + ], + "scale":[ + 0.9999999403953552, + 1, + 1 + ], + "translation":[ + 0.21316705644130707, + 0.3400799632072449, + -1.960689902305603 + ] + }, + { + "children":[ + 12 + ], + "name":"hip.left", + "rotation":[ + 0.9609775543212891, + -0.27448800206184387, + -0.0018612109124660492, + 0.0342794731259346 + ], + "scale":[ + 0.9999999403953552, + 1, + 1 + ], + "translation":[ + 0.7751232385635376, + 0.3582860827445984, + -0.0796729177236557 + ] + }, + { + "children":[ + 7, + 10, + 13 + ], + "name":"spine", + "rotation":[ + -0.7118855118751526, + -8.60366924371192e-07, + -8.609430324213463e-07, + 0.7022956013679504 + ], + "translation":[ + 0, + 0.44135698676109314, + -0.030177999287843704 + ] + }, + { + "children":[ + 14 + ], + "name":"Oto" + }, + { + "mesh":0, + "name":"Oto.001", + "skin":0 + } + ], + "animations":[ + { + "channels":[ + { + "sampler":0, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + } + ], + "name":"Dodge", + "samplers":[ + { + "input":8, + "interpolation":"LINEAR", + "output":9 + }, + { + "input":8, + "interpolation":"LINEAR", + "output":10 + }, + { + "input":11, + "interpolation":"STEP", + "output":12 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":13 + }, + { + "input":8, + "interpolation":"LINEAR", + "output":14 + }, + { + "input":11, + "interpolation":"STEP", + "output":15 + }, + { + "input":11, + "interpolation":"STEP", + "output":16 + }, + { + "input":11, + "interpolation":"STEP", + "output":17 + }, + { + "input":11, + "interpolation":"STEP", + "output":18 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":19 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":20 + }, + { + "input":11, + "interpolation":"STEP", + "output":21 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":22 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":23 + }, + { + "input":11, + "interpolation":"STEP", + "output":24 + }, + { + "input":11, + "interpolation":"STEP", + "output":25 + }, + { + "input":11, + "interpolation":"STEP", + "output":26 + }, + { + "input":11, + "interpolation":"STEP", + "output":27 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":28 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":29 + }, + { + "input":11, + "interpolation":"STEP", + "output":30 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":31 + }, + { + "input":11, + "interpolation":"STEP", + "output":32 + }, + { + "input":11, + "interpolation":"STEP", + "output":33 + }, + { + "input":11, + "interpolation":"STEP", + "output":34 + }, + { + "input":11, + "interpolation":"STEP", + "output":35 + }, + { + "input":11, + "interpolation":"STEP", + "output":36 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":37 + }, + { + "input":8, + "interpolation":"LINEAR", + "output":38 + }, + { + "input":11, + "interpolation":"STEP", + "output":39 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":40 + }, + { + "input":8, + "interpolation":"LINEAR", + "output":41 + }, + { + "input":11, + "interpolation":"STEP", + "output":42 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":43 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":44 + }, + { + "input":11, + "interpolation":"STEP", + "output":45 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":46 + }, + { + "input":8, + "interpolation":"LINEAR", + "output":47 + }, + { + "input":11, + "interpolation":"STEP", + "output":48 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":49 + }, + { + "input":8, + "interpolation":"LINEAR", + "output":50 + }, + { + "input":11, + "interpolation":"STEP", + "output":51 + }, + { + "input":11, + "interpolation":"LINEAR", + "output":52 + }, + { + "input":8, + "interpolation":"LINEAR", + "output":53 + }, + { + "input":11, + "interpolation":"STEP", + "output":54 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + } + ], + "name":"pull", + "samplers":[ + { + "input":55, + "interpolation":"LINEAR", + "output":56 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":57 + }, + { + "input":58, + "interpolation":"STEP", + "output":59 + }, + { + "input":58, + "interpolation":"STEP", + "output":60 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":61 + }, + { + "input":58, + "interpolation":"STEP", + "output":62 + }, + { + "input":58, + "interpolation":"STEP", + "output":63 + }, + { + "input":58, + "interpolation":"STEP", + "output":64 + }, + { + "input":58, + "interpolation":"STEP", + "output":65 + }, + { + "input":58, + "interpolation":"STEP", + "output":66 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":67 + }, + { + "input":58, + "interpolation":"STEP", + "output":68 + }, + { + "input":58, + "interpolation":"STEP", + "output":69 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":70 + }, + { + "input":58, + "interpolation":"STEP", + "output":71 + }, + { + "input":58, + "interpolation":"STEP", + "output":72 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":73 + }, + { + "input":58, + "interpolation":"STEP", + "output":74 + }, + { + "input":58, + "interpolation":"STEP", + "output":75 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":76 + }, + { + "input":58, + "interpolation":"STEP", + "output":77 + }, + { + "input":58, + "interpolation":"STEP", + "output":78 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":79 + }, + { + "input":58, + "interpolation":"STEP", + "output":80 + }, + { + "input":58, + "interpolation":"STEP", + "output":81 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":82 + }, + { + "input":58, + "interpolation":"STEP", + "output":83 + }, + { + "input":58, + "interpolation":"STEP", + "output":84 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":85 + }, + { + "input":58, + "interpolation":"STEP", + "output":86 + }, + { + "input":58, + "interpolation":"STEP", + "output":87 + }, + { + "input":58, + "interpolation":"STEP", + "output":88 + }, + { + "input":58, + "interpolation":"STEP", + "output":89 + }, + { + "input":58, + "interpolation":"STEP", + "output":90 + }, + { + "input":58, + "interpolation":"STEP", + "output":91 + }, + { + "input":58, + "interpolation":"STEP", + "output":92 + }, + { + "input":58, + "interpolation":"STEP", + "output":93 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":94 + }, + { + "input":58, + "interpolation":"STEP", + "output":95 + }, + { + "input":58, + "interpolation":"STEP", + "output":96 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":97 + }, + { + "input":58, + "interpolation":"STEP", + "output":98 + }, + { + "input":58, + "interpolation":"STEP", + "output":99 + }, + { + "input":55, + "interpolation":"LINEAR", + "output":100 + }, + { + "input":58, + "interpolation":"STEP", + "output":101 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + } + ], + "name":"push", + "samplers":[ + { + "input":102, + "interpolation":"LINEAR", + "output":103 + }, + { + "input":104, + "interpolation":"STEP", + "output":105 + }, + { + "input":104, + "interpolation":"STEP", + "output":106 + }, + { + "input":104, + "interpolation":"STEP", + "output":107 + }, + { + "input":102, + "interpolation":"LINEAR", + "output":108 + }, + { + "input":104, + "interpolation":"STEP", + "output":109 + }, + { + "input":104, + "interpolation":"STEP", + "output":110 + }, + { + "input":104, + "interpolation":"STEP", + "output":111 + }, + { + "input":104, + "interpolation":"STEP", + "output":112 + }, + { + "input":104, + "interpolation":"STEP", + "output":113 + }, + { + "input":102, + "interpolation":"LINEAR", + "output":114 + }, + { + "input":104, + "interpolation":"STEP", + "output":115 + }, + { + "input":104, + "interpolation":"STEP", + "output":116 + }, + { + "input":104, + "interpolation":"STEP", + "output":117 + }, + { + "input":104, + "interpolation":"STEP", + "output":118 + }, + { + "input":104, + "interpolation":"STEP", + "output":119 + }, + { + "input":104, + "interpolation":"STEP", + "output":120 + }, + { + "input":104, + "interpolation":"STEP", + "output":121 + }, + { + "input":104, + "interpolation":"STEP", + "output":122 + }, + { + "input":102, + "interpolation":"LINEAR", + "output":123 + }, + { + "input":104, + "interpolation":"STEP", + "output":124 + }, + { + "input":104, + "interpolation":"STEP", + "output":125 + }, + { + "input":104, + "interpolation":"STEP", + "output":126 + }, + { + "input":104, + "interpolation":"STEP", + "output":127 + }, + { + "input":104, + "interpolation":"STEP", + "output":128 + }, + { + "input":104, + "interpolation":"STEP", + "output":129 + }, + { + "input":104, + "interpolation":"STEP", + "output":130 + }, + { + "input":104, + "interpolation":"STEP", + "output":131 + }, + { + "input":102, + "interpolation":"LINEAR", + "output":132 + }, + { + "input":104, + "interpolation":"STEP", + "output":133 + }, + { + "input":104, + "interpolation":"STEP", + "output":134 + }, + { + "input":102, + "interpolation":"LINEAR", + "output":135 + }, + { + "input":104, + "interpolation":"STEP", + "output":136 + }, + { + "input":104, + "interpolation":"STEP", + "output":137 + }, + { + "input":102, + "interpolation":"LINEAR", + "output":138 + }, + { + "input":104, + "interpolation":"STEP", + "output":139 + }, + { + "input":104, + "interpolation":"STEP", + "output":140 + }, + { + "input":102, + "interpolation":"LINEAR", + "output":141 + }, + { + "input":104, + "interpolation":"STEP", + "output":142 + }, + { + "input":104, + "interpolation":"STEP", + "output":143 + }, + { + "input":102, + "interpolation":"LINEAR", + "output":144 + }, + { + "input":104, + "interpolation":"STEP", + "output":145 + }, + { + "input":104, + "interpolation":"STEP", + "output":146 + }, + { + "input":102, + "interpolation":"LINEAR", + "output":147 + }, + { + "input":104, + "interpolation":"STEP", + "output":148 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + } + ], + "name":"stand", + "samplers":[ + { + "input":149, + "interpolation":"LINEAR", + "output":150 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":151 + }, + { + "input":149, + "interpolation":"STEP", + "output":152 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":153 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":154 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":155 + }, + { + "input":149, + "interpolation":"STEP", + "output":156 + }, + { + "input":149, + "interpolation":"STEP", + "output":157 + }, + { + "input":149, + "interpolation":"STEP", + "output":158 + }, + { + "input":149, + "interpolation":"STEP", + "output":159 + }, + { + "input":149, + "interpolation":"STEP", + "output":160 + }, + { + "input":149, + "interpolation":"STEP", + "output":161 + }, + { + "input":149, + "interpolation":"STEP", + "output":162 + }, + { + "input":149, + "interpolation":"STEP", + "output":163 + }, + { + "input":149, + "interpolation":"STEP", + "output":164 + }, + { + "input":149, + "interpolation":"STEP", + "output":165 + }, + { + "input":149, + "interpolation":"STEP", + "output":166 + }, + { + "input":149, + "interpolation":"STEP", + "output":167 + }, + { + "input":149, + "interpolation":"STEP", + "output":168 + }, + { + "input":149, + "interpolation":"STEP", + "output":169 + }, + { + "input":149, + "interpolation":"STEP", + "output":170 + }, + { + "input":149, + "interpolation":"STEP", + "output":171 + }, + { + "input":149, + "interpolation":"STEP", + "output":172 + }, + { + "input":149, + "interpolation":"STEP", + "output":173 + }, + { + "input":149, + "interpolation":"STEP", + "output":174 + }, + { + "input":149, + "interpolation":"STEP", + "output":175 + }, + { + "input":149, + "interpolation":"STEP", + "output":176 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":177 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":178 + }, + { + "input":149, + "interpolation":"STEP", + "output":179 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":180 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":181 + }, + { + "input":149, + "interpolation":"STEP", + "output":182 + }, + { + "input":149, + "interpolation":"STEP", + "output":183 + }, + { + "input":149, + "interpolation":"STEP", + "output":184 + }, + { + "input":149, + "interpolation":"STEP", + "output":185 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":186 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":187 + }, + { + "input":149, + "interpolation":"STEP", + "output":188 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":189 + }, + { + "input":149, + "interpolation":"LINEAR", + "output":190 + }, + { + "input":149, + "interpolation":"STEP", + "output":191 + }, + { + "input":149, + "interpolation":"STEP", + "output":192 + }, + { + "input":149, + "interpolation":"STEP", + "output":193 + }, + { + "input":149, + "interpolation":"STEP", + "output":194 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":11, + "path":"scale" + } + } + ], + "name":"Walk", + "samplers":[ + { + "input":195, + "interpolation":"LINEAR", + "output":196 + }, + { + "input":197, + "interpolation":"STEP", + "output":198 + }, + { + "input":197, + "interpolation":"STEP", + "output":199 + }, + { + "input":197, + "interpolation":"STEP", + "output":200 + }, + { + "input":195, + "interpolation":"LINEAR", + "output":201 + }, + { + "input":197, + "interpolation":"STEP", + "output":202 + }, + { + "input":197, + "interpolation":"STEP", + "output":203 + }, + { + "input":197, + "interpolation":"STEP", + "output":204 + }, + { + "input":197, + "interpolation":"STEP", + "output":205 + }, + { + "input":197, + "interpolation":"STEP", + "output":206 + }, + { + "input":195, + "interpolation":"LINEAR", + "output":207 + }, + { + "input":197, + "interpolation":"STEP", + "output":208 + }, + { + "input":197, + "interpolation":"STEP", + "output":209 + }, + { + "input":197, + "interpolation":"STEP", + "output":210 + }, + { + "input":197, + "interpolation":"STEP", + "output":211 + }, + { + "input":197, + "interpolation":"STEP", + "output":212 + }, + { + "input":197, + "interpolation":"STEP", + "output":213 + }, + { + "input":197, + "interpolation":"STEP", + "output":214 + }, + { + "input":197, + "interpolation":"STEP", + "output":215 + }, + { + "input":195, + "interpolation":"LINEAR", + "output":216 + }, + { + "input":197, + "interpolation":"STEP", + "output":217 + }, + { + "input":197, + "interpolation":"STEP", + "output":218 + }, + { + "input":197, + "interpolation":"STEP", + "output":219 + }, + { + "input":197, + "interpolation":"STEP", + "output":220 + }, + { + "input":197, + "interpolation":"STEP", + "output":221 + }, + { + "input":197, + "interpolation":"STEP", + "output":222 + }, + { + "input":197, + "interpolation":"STEP", + "output":223 + }, + { + "input":197, + "interpolation":"STEP", + "output":224 + }, + { + "input":195, + "interpolation":"LINEAR", + "output":225 + }, + { + "input":197, + "interpolation":"STEP", + "output":226 + }, + { + "input":197, + "interpolation":"STEP", + "output":227 + }, + { + "input":195, + "interpolation":"LINEAR", + "output":228 + }, + { + "input":197, + "interpolation":"STEP", + "output":229 + }, + { + "input":197, + "interpolation":"STEP", + "output":230 + }, + { + "input":195, + "interpolation":"LINEAR", + "output":231 + }, + { + "input":197, + "interpolation":"STEP", + "output":232 + }, + { + "input":197, + "interpolation":"STEP", + "output":233 + }, + { + "input":195, + "interpolation":"LINEAR", + "output":234 + }, + { + "input":197, + "interpolation":"STEP", + "output":235 + }, + { + "input":197, + "interpolation":"STEP", + "output":236 + }, + { + "input":195, + "interpolation":"LINEAR", + "output":237 + }, + { + "input":197, + "interpolation":"STEP", + "output":238 + }, + { + "input":197, + "interpolation":"STEP", + "output":239 + }, + { + "input":195, + "interpolation":"LINEAR", + "output":240 + }, + { + "input":197, + "interpolation":"STEP", + "output":241 + } + ] + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Material.002/SOLID/TEX/bluewarrior1024.j/VertCol", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Oto", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "COLOR_0":2, + "COLOR_1":3, + "JOINTS_0":4, + "WEIGHTS_0":5 + }, + "indices":6, + "material":0 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"Oto", + "uri":"Oto.jpg" + } + ], + "skins":[ + { + "inverseBindMatrices":7, + "joints":[ + 14, + 7, + 0, + 3, + 2, + 1, + 6, + 5, + 4, + 10, + 9, + 8, + 13, + 12, + 11 + ], + "name":"Oto" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":4278, + "max":[ + 3.2395710945129395, + 5.1292338371276855, + 1.3643510341644287 + ], + "min":[ + -3.2687830924987793, + -4.764244079589844, + -1.3459219932556152 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":4278, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5121, + "count":4278, + "normalized":true, + "type":"VEC4" + }, + { + "bufferView":3, + "componentType":5126, + "count":4278, + "type":"VEC3" + }, + { + "bufferView":4, + "componentType":5121, + "count":4278, + "type":"VEC4" + }, + { + "bufferView":5, + "componentType":5126, + "count":4278, + "type":"VEC4" + }, + { + "bufferView":6, + "componentType":5123, + "count":11976, + "type":"SCALAR" + }, + { + "bufferView":7, + "componentType":5126, + "count":15, + "type":"MAT4" + }, + { + "bufferView":8, + "componentType":5126, + "count":5, + "max":[ + 0.16 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":9, + "componentType":5126, + "count":5, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":5, + "type":"VEC4" + }, + { + "bufferView":11, + "componentType":5126, + "count":2, + "max":[ + 0.16 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":5, + "type":"VEC4" + }, + { + "bufferView":15, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":16, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":17, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":18, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":19, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":20, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":21, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":22, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":23, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":24, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":25, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":26, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":27, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":28, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":29, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":30, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":31, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":32, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":33, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":34, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":35, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":36, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":37, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":38, + "componentType":5126, + "count":5, + "type":"VEC4" + }, + { + "bufferView":39, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":40, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":41, + "componentType":5126, + "count":5, + "type":"VEC4" + }, + { + "bufferView":42, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":43, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":44, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":45, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":46, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":47, + "componentType":5126, + "count":5, + "type":"VEC4" + }, + { + "bufferView":48, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":49, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":50, + "componentType":5126, + "count":5, + "type":"VEC4" + }, + { + "bufferView":51, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":52, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":53, + "componentType":5126, + "count":5, + "type":"VEC4" + }, + { + "bufferView":54, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":55, + "componentType":5126, + "count":19, + "max":[ + 0.72 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":56, + "componentType":5126, + "count":19, + "type":"VEC3" + }, + { + "bufferView":57, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":58, + "componentType":5126, + "count":2, + "max":[ + 0.72 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":59, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":60, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":61, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":62, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":63, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":64, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":65, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":66, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":67, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":68, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":69, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":70, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":71, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":72, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":73, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":74, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":75, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":76, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":77, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":78, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":79, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":80, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":81, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":82, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":83, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":84, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":85, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":86, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":87, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":88, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":89, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":90, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":91, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":92, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":93, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":94, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":95, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":96, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":97, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":98, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":99, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":100, + "componentType":5126, + "count":19, + "type":"VEC4" + }, + { + "bufferView":101, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":102, + "componentType":5126, + "count":41, + "max":[ + 1.6 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":103, + "componentType":5126, + "count":41, + "type":"VEC3" + }, + { + "bufferView":104, + "componentType":5126, + "count":2, + "max":[ + 1.6 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":105, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":106, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":107, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":108, + "componentType":5126, + "count":41, + "type":"VEC4" + }, + { + "bufferView":109, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":110, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":111, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":112, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":113, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":114, + "componentType":5126, + "count":41, + "type":"VEC4" + }, + { + "bufferView":115, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":116, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":117, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":118, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":119, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":120, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":121, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":122, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":123, + "componentType":5126, + "count":41, + "type":"VEC4" + }, + { + "bufferView":124, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":125, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":126, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":127, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":128, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":129, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":130, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":131, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":132, + "componentType":5126, + "count":41, + "type":"VEC4" + }, + { + "bufferView":133, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":134, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":135, + "componentType":5126, + "count":41, + "type":"VEC4" + }, + { + "bufferView":136, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":137, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":138, + "componentType":5126, + "count":41, + "type":"VEC4" + }, + { + "bufferView":139, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":140, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":141, + "componentType":5126, + "count":41, + "type":"VEC4" + }, + { + "bufferView":142, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":143, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":144, + "componentType":5126, + "count":41, + "type":"VEC4" + }, + { + "bufferView":145, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":146, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":147, + "componentType":5126, + "count":41, + "type":"VEC4" + }, + { + "bufferView":148, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":149, + "componentType":5126, + "count":1, + "max":[ + 0 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":150, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":151, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":152, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":153, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":154, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":155, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":156, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":157, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":158, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":159, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":160, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":161, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":162, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":163, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":164, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":165, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":166, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":167, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":168, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":169, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":170, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":171, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":172, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":173, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":174, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":175, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":176, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":177, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":178, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":179, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":180, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":181, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":182, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":183, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":184, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":185, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":186, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":187, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":188, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":189, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":190, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":191, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":192, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":193, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":194, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":195, + "componentType":5126, + "count":32, + "max":[ + 1.24 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":196, + "componentType":5126, + "count":32, + "type":"VEC3" + }, + { + "bufferView":197, + "componentType":5126, + "count":2, + "max":[ + 1.24 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":198, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":199, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":200, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":201, + "componentType":5126, + "count":32, + "type":"VEC4" + }, + { + "bufferView":202, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":203, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":204, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":205, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":206, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":207, + "componentType":5126, + "count":32, + "type":"VEC4" + }, + { + "bufferView":208, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":209, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":210, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":211, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":212, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":213, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":214, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":215, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":216, + "componentType":5126, + "count":32, + "type":"VEC4" + }, + { + "bufferView":217, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":218, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":219, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":220, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":221, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":222, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":223, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":224, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":225, + "componentType":5126, + "count":32, + "type":"VEC4" + }, + { + "bufferView":226, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":227, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":228, + "componentType":5126, + "count":32, + "type":"VEC4" + }, + { + "bufferView":229, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":230, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":231, + "componentType":5126, + "count":32, + "type":"VEC4" + }, + { + "bufferView":232, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":233, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":234, + "componentType":5126, + "count":32, + "type":"VEC4" + }, + { + "bufferView":235, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":236, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":237, + "componentType":5126, + "count":32, + "type":"VEC4" + }, + { + "bufferView":238, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":239, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":240, + "componentType":5126, + "count":32, + "type":"VEC4" + }, + { + "bufferView":241, + "componentType":5126, + "count":2, + "type":"VEC3" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":51336, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":51336, + "byteOffset":51336, + "target":34962 + }, + { + "buffer":0, + "byteLength":17112, + "byteOffset":102672, + "target":34962 + }, + { + "buffer":0, + "byteLength":51336, + "byteOffset":119784, + "target":34962 + }, + { + "buffer":0, + "byteLength":17112, + "byteOffset":171120, + "target":34962 + }, + { + "buffer":0, + "byteLength":68448, + "byteOffset":188232, + "target":34962 + }, + { + "buffer":0, + "byteLength":23952, + "byteOffset":256680, + "target":34963 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":280632 + }, + { + "buffer":0, + "byteLength":20, + "byteOffset":281592 + }, + { + "buffer":0, + "byteLength":60, + "byteOffset":281612 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":281672 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":281752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":281760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":281784 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":281808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":281888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":281912 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":281936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":281968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":281992 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282072 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282152 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282232 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282312 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282392 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282472 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":282496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282600 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":282624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282728 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":282752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282808 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":282832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":282936 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":282960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283064 + }, + { + "buffer":0, + "byteLength":80, + "byteOffset":283088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283168 + }, + { + "buffer":0, + "byteLength":76, + "byteOffset":283192 + }, + { + "buffer":0, + "byteLength":228, + "byteOffset":283268 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":283496 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":283800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":283832 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":283856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284184 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":284208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284264 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":284288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284616 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":284640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":284968 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":284992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285320 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":285344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":285672 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":285696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286024 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":286048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286352 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286376 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":286400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286728 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":286752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286808 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":286832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":286888 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":286912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":287216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":287240 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":287264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":287568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":287592 + }, + { + "buffer":0, + "byteLength":304, + "byteOffset":287616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":287920 + }, + { + "buffer":0, + "byteLength":164, + "byteOffset":287944 + }, + { + "buffer":0, + "byteLength":492, + "byteOffset":288108 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":288600 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":288608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":288664 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":288688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289368 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":289392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":289448 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":289472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":290128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":290152 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":290176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":290208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":290232 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":290256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":290288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":290312 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":290336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":290992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":291016 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":291040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":291072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":291096 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":291120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":291152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":291176 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":291200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":291856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":291880 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":291904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":292560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":292584 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":292608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":293264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":293288 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":293312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":293968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":293992 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":294016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":294672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":294696 + }, + { + "buffer":0, + "byteLength":656, + "byteOffset":294720 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":295376 + }, + { + "buffer":0, + "byteLength":4, + "byteOffset":295400 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295404 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295416 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295432 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295444 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295456 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295472 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295484 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295496 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295512 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295524 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295536 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295552 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295564 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295576 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295592 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295604 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295616 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295632 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295644 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295656 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295672 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295684 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295696 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295712 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295724 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295736 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295752 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295764 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295776 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295792 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295804 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295816 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295832 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295844 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295856 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295872 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295884 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295896 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295912 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295924 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295936 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295952 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295964 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":295976 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":295992 + }, + { + "buffer":0, + "byteLength":128, + "byteOffset":296004 + }, + { + "buffer":0, + "byteLength":384, + "byteOffset":296132 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":296516 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":296524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":296556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":296580 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":296604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297116 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297140 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":297164 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297220 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":297244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297780 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":297804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297860 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":297884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297916 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297940 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":297964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":298476 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":298500 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":298524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":298556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":298580 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":298604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":298636 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":298660 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":298684 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":299196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":299220 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":299244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":299756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":299780 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":299804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":300316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":300340 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":300364 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":300876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":300900 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":300924 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":301436 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":301460 + }, + { + "buffer":0, + "byteLength":512, + "byteOffset":301484 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":301996 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":302020, + "uri":"Oto.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Oto/Oto.mesh b/jme3-testdata/src/main/resources/Models/Oto/Oto.mesh new file mode 100644 index 0000000000..65c45b25a6 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Oto/Oto.mesh differ diff --git a/jme3-testdata/src/main/resources/Models/Oto/Oto.skeleton b/jme3-testdata/src/main/resources/Models/Oto/Oto.skeleton new file mode 100644 index 0000000000..1fc19e3ac3 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Oto/Oto.skeleton differ diff --git a/jme3-testdata/src/main/resources/Models/Oto/Oto.skeleton.xml b/jme3-testdata/src/main/resources/Models/Oto/Oto.skeleton.xml index 9e256af1ad..1cee76a656 100644 --- a/jme3-testdata/src/main/resources/Models/Oto/Oto.skeleton.xml +++ b/jme3-testdata/src/main/resources/Models/Oto/Oto.skeleton.xml @@ -1,8801 +1,6692 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/jme3-testdata/src/main/resources/Models/Sign Post/OgreXMLConverter.log b/jme3-testdata/src/main/resources/Models/Sign Post/OgreXMLConverter.log new file mode 100644 index 0000000000..ec7ed95a55 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Sign Post/OgreXMLConverter.log @@ -0,0 +1,28 @@ +02:16:10: Creating resource group General +02:16:10: Creating resource group OgreInternal +02:16:10: Creating resource group OgreAutodetect +02:16:10: Registering ResourceManager for type Mesh +02:16:10: Registering ResourceManager for type Material +02:16:10: Registering ResourceManager for type Skeleton +02:16:10: XMLMeshSerializer reading mesh data from C:\Users\USER\Desktop\Projects\Open Source\jmonkeyengine\jme3-testdata\src\main\resources\Models\Sign Post\Sign_Post.mesh.xml... +02:16:10: Reading submeshes... +02:16:10: Reading geometry... +02:16:10: Geometry done... +02:16:10: Submeshes done. +02:16:10: XMLMeshSerializer import successful. +02:16:10: MeshSerializer writing mesh data to stream ... +02:16:10: File header written. +02:16:10: Writing mesh data... +02:16:10: Writing submesh... +02:16:10: Exporting submesh texture aliases... +02:16:10: Submesh texture aliases exported. +02:16:10: Submesh exported. +02:16:10: Exporting bounds information.... +02:16:10: Bounds information exported. +02:16:10: Exporting submesh name table... +02:16:10: Submesh name table exported. +02:16:10: Mesh data exported. +02:16:10: MeshSerializer export successful. +02:16:10: Unregistering ResourceManager for type Skeleton +02:16:10: Unregistering ResourceManager for type Material +02:16:10: Unregistering ResourceManager for type Mesh diff --git a/jme3-testdata/src/main/resources/Models/Sign Post/Sign Post.mesh.xml b/jme3-testdata/src/main/resources/Models/Sign Post/Sign Post.mesh.xml deleted file mode 100644 index 8fcd4334bb..0000000000 --- a/jme3-testdata/src/main/resources/Models/Sign Post/Sign Post.mesh.xml +++ /dev/null @@ -1,1547 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/Sign Post/SignPost.bin b/jme3-testdata/src/main/resources/Models/Sign Post/SignPost.bin new file mode 100644 index 0000000000..338c1e2105 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Sign Post/SignPost.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Sign Post/SignPost.gltf b/jme3-testdata/src/main/resources/Models/Sign Post/SignPost.gltf new file mode 100644 index 0000000000..6b2c9d4a0c --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Sign Post/SignPost.gltf @@ -0,0 +1,108 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"Sign_Post" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Signpost/SOLID/TEX/signpost_color.jpg", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Sign_Post", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1 + }, + "indices":2, + "material":0 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":275, + "max":[ + 0.7639359831809998, + 4.2598700523376465, + 1.5214840173721313 + ], + "min":[ + -1.5116039514541626, + -0.6751610040664673, + -1.5214849710464478 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":275, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5123, + "count":480, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":3300, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":3300, + "byteOffset":3300, + "target":34962 + }, + { + "buffer":0, + "byteLength":960, + "byteOffset":6600, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":7560, + "uri":"SignPost.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Sinbad/OgreXMLConverter.log b/jme3-testdata/src/main/resources/Models/Sinbad/OgreXMLConverter.log new file mode 100644 index 0000000000..73a3d88e17 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Sinbad/OgreXMLConverter.log @@ -0,0 +1,116 @@ +00:34:33: Creating resource group General +00:34:33: Creating resource group OgreInternal +00:34:33: Creating resource group OgreAutodetect +00:34:33: Registering ResourceManager for type Mesh +00:34:33: Registering ResourceManager for type Material +00:34:33: Registering ResourceManager for type Skeleton +00:34:34: XMLSkeletonSerializer writing skeleton data to C:\Users\USER\Desktop\Projects\Open Source\jmonkeyengine\jme3-testdata\src\main\resources\Models\Sinbad\Sinbad.skeleton.xml... +00:34:34: Populating DOM... +00:34:34: Exporting bones.. +00:34:34: There are 69 bones. +00:34:34: Exporting Bone number 0 +00:34:34: Exporting Bone number 1 +00:34:34: Exporting Bone number 2 +00:34:34: Exporting Bone number 3 +00:34:34: Exporting Bone number 4 +00:34:34: Exporting Bone number 5 +00:34:34: Exporting Bone number 6 +00:34:34: Exporting Bone number 7 +00:34:34: Exporting Bone number 8 +00:34:34: Exporting Bone number 9 +00:34:34: Exporting Bone number 10 +00:34:34: Exporting Bone number 11 +00:34:34: Exporting Bone number 12 +00:34:34: Exporting Bone number 13 +00:34:34: Exporting Bone number 14 +00:34:34: Exporting Bone number 15 +00:34:34: Exporting Bone number 16 +00:34:34: Exporting Bone number 17 +00:34:34: Exporting Bone number 18 +00:34:34: Exporting Bone number 19 +00:34:34: Exporting Bone number 20 +00:34:34: Exporting Bone number 21 +00:34:34: Exporting Bone number 22 +00:34:34: Exporting Bone number 23 +00:34:34: Exporting Bone number 24 +00:34:34: Exporting Bone number 25 +00:34:34: Exporting Bone number 26 +00:34:34: Exporting Bone number 27 +00:34:34: Exporting Bone number 28 +00:34:34: Exporting Bone number 29 +00:34:34: Exporting Bone number 30 +00:34:34: Exporting Bone number 31 +00:34:34: Exporting Bone number 32 +00:34:34: Exporting Bone number 33 +00:34:34: Exporting Bone number 34 +00:34:34: Exporting Bone number 35 +00:34:34: Exporting Bone number 36 +00:34:34: Exporting Bone number 37 +00:34:34: Exporting Bone number 38 +00:34:34: Exporting Bone number 39 +00:34:34: Exporting Bone number 40 +00:34:34: Exporting Bone number 41 +00:34:34: Exporting Bone number 42 +00:34:34: Exporting Bone number 43 +00:34:34: Exporting Bone number 44 +00:34:34: Exporting Bone number 45 +00:34:34: Exporting Bone number 46 +00:34:34: Exporting Bone number 47 +00:34:34: Exporting Bone number 48 +00:34:34: Exporting Bone number 49 +00:34:34: Exporting Bone number 50 +00:34:34: Exporting Bone number 51 +00:34:34: Exporting Bone number 52 +00:34:34: Exporting Bone number 53 +00:34:34: Exporting Bone number 54 +00:34:34: Exporting Bone number 55 +00:34:34: Exporting Bone number 56 +00:34:34: Exporting Bone number 57 +00:34:34: Exporting Bone number 58 +00:34:34: Exporting Bone number 59 +00:34:34: Exporting Bone number 60 +00:34:34: Exporting Bone number 61 +00:34:34: Exporting Bone number 62 +00:34:34: Exporting Bone number 63 +00:34:34: Exporting Bone number 64 +00:34:34: Exporting Bone number 65 +00:34:34: Exporting Bone number 66 +00:34:34: Exporting Bone number 67 +00:34:34: Exporting Bone number 68 +00:34:34: Bones exported. +00:34:34: Exporting animations, count=15 +00:34:34: Exporting animation: Dance +00:34:34: Animation exported. +00:34:34: Exporting animation: DrawSwords +00:34:34: Animation exported. +00:34:34: Exporting animation: HandsClosed +00:34:34: Animation exported. +00:34:34: Exporting animation: HandsRelaxed +00:34:34: Animation exported. +00:34:34: Exporting animation: IdleBase +00:34:34: Animation exported. +00:34:34: Exporting animation: IdleTop +00:34:34: Animation exported. +00:34:34: Exporting animation: JumpEnd +00:34:34: Animation exported. +00:34:34: Exporting animation: JumpLoop +00:34:34: Animation exported. +00:34:34: Exporting animation: JumpStart +00:34:34: Animation exported. +00:34:34: Exporting animation: RunBase +00:34:34: Animation exported. +00:34:34: Exporting animation: RunTop +00:34:34: Animation exported. +00:34:34: Exporting animation: SliceHorizontal +00:34:34: Animation exported. +00:34:34: Exporting animation: SliceVertical +00:34:34: Animation exported. +00:34:34: Exporting animation: StandUpBack +00:34:34: Animation exported. +00:34:34: Exporting animation: StandUpFront +00:34:34: Animation exported. +00:34:34: DOM populated, writing XML file.. +00:34:35: XMLSkeletonSerializer export successful. +00:34:35: Unregistering ResourceManager for type Skeleton +00:34:35: Unregistering ResourceManager for type Material +00:34:35: Unregistering ResourceManager for type Mesh diff --git a/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.bin b/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.bin new file mode 100644 index 0000000000..097f58f137 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.gltf b/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.gltf new file mode 100644 index 0000000000..c657a062c5 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.gltf @@ -0,0 +1,74075 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 69, + 70 + ] + } + ], + "nodes":[ + { + "name":"Handle.R", + "rotation":[ + -0.7899926900863647, + 0.594924807548523, + -0.14658275246620178, + 0.022124208509922028 + ], + "scale":[ + 1.0000001192092896, + 1, + 1 + ], + "translation":[ + 0.455133855342865, + -0.8363372683525085, + -0.43717682361602783 + ] + }, + { + "name":"IndexFingerDist.R", + "rotation":[ + -0.0007206645677797496, + -0.15726983547210693, + -0.06298791617155075, + 0.9855446219444275 + ], + "scale":[ + 0.9999999403953552, + 0.9999999403953552, + 0.9999998807907104 + ], + "translation":[ + 0.21553835272789001, + 0.04966425895690918, + 0.2210792899131775 + ] + }, + { + "children":[ + 1 + ], + "name":"IndexFingerMed.R", + "rotation":[ + -0.019676296040415764, + -0.19407996535301208, + -0.03263648599386215, + 0.9802452325820923 + ], + "scale":[ + 0.9999998807907104, + 0.9999998807907104, + 1 + ], + "translation":[ + -0.2909463047981262, + 0.11965376138687134, + -0.13818538188934326 + ] + }, + { + "children":[ + 2 + ], + "name":"IndexFingerProx.R", + "rotation":[ + -0.0041282144375145435, + 0.014628549106419086, + 0.0038871769793331623, + 0.9998769164085388 + ], + "scale":[ + 0.9999998807907104, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation":[ + 0.25484180450439453, + -0.5232642292976379, + -0.6063616871833801 + ] + }, + { + "name":"RingFingerDist.R", + "rotation":[ + 0.06181474030017853, + -0.06427156925201416, + -0.09506997466087341, + 0.9914684891700745 + ], + "scale":[ + 0.9999998807907104, + 0.9999998211860657, + 1 + ], + "translation":[ + -0.0023751556873321533, + -0.24394261837005615, + -0.08524307608604431 + ] + }, + { + "children":[ + 4 + ], + "name":"RingFingerMed.R", + "rotation":[ + 0.12741325795650482, + -0.23324185609817505, + -0.08398184180259705, + 0.9603703618049622 + ], + "scale":[ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998807907104 + ], + "translation":[ + -0.26980865001678467, + -0.1458444595336914, + -0.2394985556602478 + ] + }, + { + "children":[ + 5 + ], + "name":"RingFingerProx.R", + "rotation":[ + -0.025119723752141, + -0.08698227256536484, + -0.03959331288933754, + 0.9951058030128479 + ], + "scale":[ + 1, + 0.9999998807907104, + 1 + ], + "translation":[ + 0.2214316725730896, + 0.010849237442016602, + -0.715979814529419 + ] + }, + { + "name":"MiddleFingerDist.R", + "rotation":[ + 0.06240208074450493, + -0.20882150530815125, + -0.19177426397800446, + 0.9569337964057922 + ], + "scale":[ + 1, + 1.0000001192092896, + 1 + ], + "translation":[ + 0.3337901830673218, + 0.012746363878250122, + 0.04472309350967407 + ] + }, + { + "children":[ + 7 + ], + "name":"MiddleFingerMed.R", + "rotation":[ + 0.04315083473920822, + -0.2964530885219574, + -0.05874321982264519, + 0.9522619843482971 + ], + "scale":[ + 0.9999999403953552, + 0.9999998807907104, + 0.9999999403953552 + ], + "translation":[ + -0.1171032190322876, + 0.3755241334438324, + -0.11113429069519043 + ] + }, + { + "children":[ + 8 + ], + "name":"MiddleFingerProx.R", + "rotation":[ + -0.016016777604818344, + 0.06061257794499397, + 0.0443626306951046, + 0.9970464110374451 + ], + "scale":[ + 1.0000001192092896, + 0.9999999403953552, + 1 + ], + "translation":[ + 0.21701201796531677, + -0.24683552980422974, + -0.686177670955658 + ] + }, + { + "name":"ThumbDist.R", + "rotation":[ + 0.04866788536310196, + 0.023134775459766388, + -0.06582310795783997, + 0.9963752031326294 + ], + "scale":[ + 1.0000001192092896, + 1, + 1.0000001192092896 + ], + "translation":[ + -0.08719517290592194, + -0.1723143458366394, + -0.23661524057388306 + ] + }, + { + "children":[ + 10 + ], + "name":"ThumbMed.R", + "rotation":[ + -0.23070327937602997, + -0.19260048866271973, + 0.10763560980558395, + 0.9476791024208069 + ], + "scale":[ + 0.9999999403953552, + 1, + 1 + ], + "translation":[ + 0.11871245503425598, + -0.3168470859527588, + -0.4093644618988037 + ] + }, + { + "children":[ + 11 + ], + "name":"ThumbProx.R", + "rotation":[ + 0.2729961574077606, + -0.12946222722530365, + -0.11070045083761215, + 0.9468147158622742 + ], + "scale":[ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation":[ + 0.1511363685131073, + -0.40338897705078125, + -0.02546525001525879 + ] + }, + { + "name":"PinkyDist.R", + "rotation":[ + 0.0791652500629425, + -0.08450048416852951, + -0.16139867901802063, + 0.9800729751586914 + ], + "scale":[ + 0.9999999403953552, + 1, + 1 + ], + "translation":[ + 0.15305107831954956, + 0.03578507900238037, + 0.12062764167785645 + ] + }, + { + "children":[ + 13 + ], + "name":"PinkyMed.R", + "rotation":[ + 0.1437438577413559, + -0.16705143451690674, + -0.07293739914894104, + 0.9726827144622803 + ], + "translation":[ + -0.008862972259521484, + 0.26453089714050293, + 0.037505388259887695 + ] + }, + { + "children":[ + 14 + ], + "name":"PinkyProx.R", + "rotation":[ + -0.05651703104376793, + -0.041082415729761124, + -0.017732132226228714, + 0.9973984360694885 + ], + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + 0.26645514369010925, + 0.23748433589935303, + -0.6845012903213501 + ] + }, + { + "children":[ + 0, + 3, + 6, + 9, + 12, + 15 + ], + "name":"Hand.R", + "rotation":[ + 0.02344973012804985, + -0.0326082780957222, + -0.06937001645565033, + 0.9967821836471558 + ], + "scale":[ + 0.9999999403953552, + 1, + 0.9999998807907104 + ], + "translation":[ + 0.7513506412506104, + 0.7184484601020813, + -0.5876809358596802 + ] + }, + { + "children":[ + 16 + ], + "name":"Ulna.R", + "rotation":[ + 0.3682035803794861, + -0.06845934689044952, + -0.7526703476905823, + 0.5415042638778687 + ], + "scale":[ + 0.9999998807907104, + 0.9999998807907104, + 1 + ], + "translation":[ + 0.7113929390907288, + -0.8885753750801086, + -1.4601882696151733 + ] + }, + { + "children":[ + 17 + ], + "name":"Humerus.R", + "rotation":[ + -0.21025781333446503, + -0.30301758646965027, + 0.6520094871520996, + 0.6624618172645569 + ], + "scale":[ + 1, + 0.9999999403953552, + 0.9999998807907104 + ], + "translation":[ + 0.8781689405441284, + 0.7250679731369019, + 1.144085168838501 + ] + }, + { + "children":[ + 18 + ], + "name":"Clavicle.R", + "rotation":[ + -0.44492605328559875, + -0.5664791464805603, + -0.4806078374385834, + 0.5001582503318787 + ], + "scale":[ + 1, + 0.9999999403953552, + 1.0000001192092896 + ], + "translation":[ + 0.8082868456840515, + 0.9601918458938599, + 0.2680882215499878 + ] + }, + { + "name":"Cheek.L", + "rotation":[ + 0.5426102876663208, + -0.6307802796363831, + -0.18725994229316711, + 0.5221341848373413 + ], + "scale":[ + 1, + 1.0000001192092896, + 1 + ], + "translation":[ + 0.5502147078514099, + 0.5205035209655762, + -0.11129165440797806 + ] + }, + { + "name":"LowerLip", + "rotation":[ + 4.278300821169978e-06, + 0.251711905002594, + 1.6112115190480836e-05, + 0.9678022265434265 + ], + "scale":[ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation":[ + 0.001359742833301425, + 0.09626971930265427, + -0.09910085797309875 + ] + }, + { + "name":"TongueTip", + "rotation":[ + 7.42320594326884e-07, + -0.16663353145122528, + -3.2279563129122835e-06, + 0.9860188961029053 + ], + "translation":[ + 0.08399372547864914, + -0.18118950724601746, + 0.11270169168710709 + ] + }, + { + "children":[ + 22 + ], + "name":"TongueMid", + "rotation":[ + -5.721226870036844e-08, + -0.17843207716941833, + -4.682490725826938e-06, + 0.9839522838592529 + ], + "scale":[ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation":[ + 0.3051466941833496, + 0.07630682736635208, + -0.05994069203734398 + ] + }, + { + "children":[ + 23 + ], + "name":"TongueBase", + "rotation":[ + 8.306215590891952e-07, + 0.35945212841033936, + 4.587845523928991e-06, + 0.9331635236740112 + ], + "scale":[ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation":[ + -0.05260823667049408, + 0.2245129644870758, + -0.17967303097248077 + ] + }, + { + "children":[ + 21, + 24 + ], + "name":"Jaw", + "rotation":[ + 1.0258385145789362e-06, + -0.8886419534683228, + 5.294045877235476e-07, + 0.4586016535758972 + ], + "translation":[ + 0.08518694341182709, + 0.07258480787277222, + 0.23898375034332275 + ] + }, + { + "name":"Cheek.R", + "rotation":[ + -0.5426095724105835, + -0.6307804584503174, + 0.18726161122322083, + 0.5221341252326965 + ], + "scale":[ + 0.9999998807907104, + 0.9999998211860657, + 1 + ], + "translation":[ + 0.3325181305408478, + 0.6844765543937683, + -0.08349160104990005 + ] + }, + { + "name":"Eye.L", + "rotation":[ + 0.5682374835014343, + -0.5099195837974548, + -0.4742518663406372, + 0.4383758306503296 + ], + "scale":[ + 1, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation":[ + 0.7510586977005005, + 0.4904617965221405, + 0.33210429549217224 + ] + }, + { + "name":"UpperLip", + "rotation":[ + 8.440952683486103e-07, + -0.7696898579597473, + 7.001333983680524e-07, + 0.6384180188179016 + ], + "translation":[ + 0.10451578348875046, + 0.103169284760952, + 0.2099442183971405 + ] + }, + { + "name":"Eye.R", + "rotation":[ + 0.664423942565918, + -0.37609925866127014, + -0.5666648745536804, + 0.30980828404426575 + ], + "scale":[ + 0.9999999403953552, + 1, + 1 + ], + "translation":[ + 0.3226427733898163, + 0.8131528496742249, + 0.3868113160133362 + ] + }, + { + "name":"Brow.L", + "rotation":[ + 0.5231366157531738, + -0.28023821115493774, + -0.2833949029445648, + 0.7533140182495117 + ], + "translation":[ + 0.688748836517334, + 0.5191489458084106, + 0.18166770040988922 + ] + }, + { + "name":"Brow.C", + "rotation":[ + 2.9488185191439698e-06, + -0.7332741022109985, + 2.1544146022733912e-07, + 0.6799331903457642 + ], + "translation":[ + 0.5145847797393799, + 0.6488237380981445, + 0.2026778757572174 + ] + }, + { + "name":"Brow.R", + "rotation":[ + -0.5231379270553589, + -0.28023990988731384, + 0.28339922428131104, + 0.7533108592033386 + ], + "scale":[ + 1, + 1.0000001192092896, + 1 + ], + "translation":[ + 0.34205299615859985, + 0.7802847027778625, + 0.22594046592712402 + ] + }, + { + "children":[ + 20, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32 + ], + "name":"Head", + "rotation":[ + -4.638689915736904e-06, + 0.16574712097644806, + 2.9198811262176605e-06, + 0.9861682653427124 + ], + "translation":[ + 0.1872643232345581, + 0.302625834941864, + -0.13134004175662994 + ] + }, + { + "children":[ + 33 + ], + "name":"Neck", + "rotation":[ + 5.120507466926938e-06, + -0.10548019409179688, + -4.257910859450931e-06, + 0.9944214224815369 + ], + "scale":[ + 0.9999998211860657, + 1, + 0.9999998211860657 + ], + "translation":[ + 1.0259796380996704, + 1.127289056777954, + 0.6181120276451111 + ] + }, + { + "name":"Sheath.R", + "rotation":[ + -0.5894052982330322, + 0.6134273409843445, + 0.27465879917144775, + 0.4481861889362335 + ], + "scale":[ + 0.9999998807907104, + 0.9999998211860657, + 0.9999999403953552 + ], + "translation":[ + 0.31740641593933105, + 2.155580520629883, + -0.0699855238199234 + ] + }, + { + "name":"Handle.L", + "rotation":[ + -0.6135765910148621, + -0.775596022605896, + -0.1474025547504425, + 0.01571882702410221 + ], + "scale":[ + 1, + 1.000000238418579, + 0.9999999403953552 + ], + "translation":[ + 0.39706844091415405, + 0.8374741077423096, + -0.48859965801239014 + ] + }, + { + "name":"MiddleFingerDist.L", + "rotation":[ + -0.062402572482824326, + -0.20881682634353638, + 0.19177566468715668, + 0.9569345116615295 + ], + "scale":[ + 0.9999998211860657, + 0.9999997615814209, + 0.9999999403953552 + ], + "translation":[ + -0.24880224466323853, + -0.015305638313293457, + 0.22681009769439697 + ] + }, + { + "children":[ + 37 + ], + "name":"MiddleFingerMed.L", + "rotation":[ + -0.043149013072252274, + -0.29645389318466187, + 0.058741793036460876, + 0.9522618651390076 + ], + "translation":[ + 0.13519710302352905, + 0.12496381998062134, + -0.3649500608444214 + ] + }, + { + "children":[ + 38 + ], + "name":"MiddleFingerProx.L", + "rotation":[ + 0.00014530980843119323, + 0.06269583851099014, + 0.20958544313907623, + 0.9757782220840454 + ], + "scale":[ + 0.9999999403953552, + 1.0000001192092896, + 1 + ], + "translation":[ + -0.03284424543380737, + 0.3422454595565796, + -0.6787277460098267 + ] + }, + { + "name":"ThumbDist.L", + "rotation":[ + -0.04866805672645569, + 0.02313663437962532, + 0.06582286208868027, + 0.9963752031326294 + ], + "scale":[ + 0.9999999403953552, + 0.9999998807907104, + 0.9999998807907104 + ], + "translation":[ + -0.2768641710281372, + -0.12034961581230164, + -0.046306729316711426 + ] + }, + { + "children":[ + 40 + ], + "name":"ThumbMed.L", + "rotation":[ + 0.23070192337036133, + -0.19259892404079437, + -0.10763456672430038, + 0.9476798176765442 + ], + "scale":[ + 1.0000001192092896, + 1, + 1.0000001192092896 + ], + "translation":[ + -0.25005555152893066, + -0.03385213017463684, + -0.4673241972923279 + ] + }, + { + "children":[ + 41 + ], + "name":"ThumbProx.L", + "rotation":[ + -0.2313065379858017, + -0.19437462091445923, + 0.3468726575374603, + 0.8879162073135376 + ], + "translation":[ + 0.20490917563438416, + 0.3776360750198364, + -0.04027724266052246 + ] + }, + { + "name":"RingFingerDist.L", + "rotation":[ + -0.0618138425052166, + -0.06427118927240372, + 0.09506842494010925, + 0.9914687275886536 + ], + "scale":[ + 1, + 1.0000001192092896, + 1 + ], + "translation":[ + -0.11990618705749512, + 0.22307485342025757, + 0.051388323307037354 + ] + }, + { + "children":[ + 43 + ], + "name":"RingFingerMed.L", + "rotation":[ + -0.12741416692733765, + -0.23323944211006165, + 0.08398351818323135, + 0.960370659828186 + ], + "translation":[ + -0.1549639105796814, + 0.0708765760064125, + -0.3498424291610718 + ] + }, + { + "children":[ + 44 + ], + "name":"RingFingerProx.L", + "rotation":[ + 0.04633157700300217, + -0.07778371870517731, + 0.2903123199939728, + 0.9526394009590149 + ], + "translation":[ + -0.09199988842010498, + 0.09658920764923096, + -0.7375640869140625 + ] + }, + { + "name":"PinkyDist.L", + "rotation":[ + -0.07916203886270523, + -0.08449642360210419, + 0.16139984130859375, + 0.9800733923912048 + ], + "scale":[ + 1, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation":[ + 0.0630578100681305, + -0.17739075422286987, + -0.06174325942993164 + ] + }, + { + "children":[ + 46 + ], + "name":"PinkyMed.L", + "rotation":[ + -0.1437421590089798, + -0.16705235838890076, + 0.07293636351823807, + 0.9726828932762146 + ], + "scale":[ + 1, + 0.9999999403953552, + 1 + ], + "translation":[ + 0.024323999881744385, + -0.004147887229919434, + -0.266182541847229 + ] + }, + { + "children":[ + 47 + ], + "name":"PinkyProx.L", + "rotation":[ + 0.06507792323827744, + -0.025427700951695442, + 0.26974138617515564, + 0.9603946805000305 + ], + "scale":[ + 1, + 1, + 0.9999999403953552 + ], + "translation":[ + -0.08406609296798706, + -0.13580048084259033, + -0.7552796602249146 + ] + }, + { + "name":"IndexFingerDist.L", + "rotation":[ + 0.0007254505762830377, + -0.1572723388671875, + 0.06298600882291794, + 0.9855443835258484 + ], + "scale":[ + 1, + 1.0000001192092896, + 1 + ], + "translation":[ + 0.12679627537727356, + -0.25361350178718567, + 0.131919264793396 + ] + }, + { + "children":[ + 49 + ], + "name":"IndexFingerMed.L", + "rotation":[ + 0.019677160307765007, + -0.19407562911510468, + 0.03263990208506584, + 0.9802459478378296 + ], + "scale":[ + 1, + 1, + 0.9999999403953552 + ], + "translation":[ + 0.1293201446533203, + 0.12279742956161499, + -0.2937030792236328 + ] + }, + { + "children":[ + 50 + ], + "name":"IndexFingerProx.L", + "rotation":[ + 0.0002905850124079734, + 0.015204084105789661, + 0.24945367872714996, + 0.9682673215866089 + ], + "scale":[ + 1, + 1, + 1.0000001192092896 + ], + "translation":[ + 0.08790108561515808, + 0.5911257266998291, + -0.5910043716430664 + ] + }, + { + "children":[ + 36, + 39, + 42, + 45, + 48, + 51 + ], + "name":"Hand.L", + "rotation":[ + -0.021251624450087547, + -0.03408792242407799, + -0.36750534176826477, + 0.9291535019874573 + ], + "scale":[ + 1, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation":[ + 0.5289239883422852, + 0.19342190027236938, + -1.0530403852462769 + ] + }, + { + "children":[ + 52 + ], + "name":"Ulna.L", + "rotation":[ + -0.3745061457157135, + 0.002344785025343299, + 0.841427206993103, + 0.38953807950019836 + ], + "scale":[ + 1, + 1, + 0.9999998807907104 + ], + "translation":[ + 0.2341075837612152, + 1.1219381093978882, + -1.454056978225708 + ] + }, + { + "children":[ + 53 + ], + "name":"Humerus.L", + "rotation":[ + 0.21025441586971283, + -0.30301448702812195, + -0.6520097851753235, + 0.6624639630317688 + ], + "scale":[ + 0.9999998807907104, + 0.9999999403953552, + 0.9999998807907104 + ], + "translation":[ + 0.5205835103988647, + -1.3132370710372925, + -0.7811543941497803 + ] + }, + { + "children":[ + 54 + ], + "name":"Clavicle.L", + "rotation":[ + 0.4449276030063629, + -0.566481351852417, + 0.480605810880661, + 0.5001564025878906 + ], + "translation":[ + 0.8082868456840515, + 0.9601918458938599, + 0.2680882215499878 + ] + }, + { + "name":"Sheath.L", + "rotation":[ + 0.692379355430603, + 0.4960312247276306, + -0.29651713371276855, + 0.4320202171802521 + ], + "scale":[ + 0.9999998807907104, + 0.9999998211860657, + 1.0000001192092896 + ], + "translation":[ + 1.9510434865951538, + 0.8249548077583313, + -0.2430550456047058 + ] + }, + { + "children":[ + 19, + 34, + 35, + 55, + 56 + ], + "name":"Chest", + "rotation":[ + -1.404725225029324e-07, + -0.1543707549571991, + -1.2739280919049634e-06, + 0.9880130290985107 + ], + "translation":[ + 0.004866418894380331, + 0.05349653214216232, + 0.5729926228523254 + ] + }, + { + "children":[ + 57 + ], + "name":"Stomach", + "rotation":[ + 0.11603303253650665, + -2.678943644696119e-07, + -0.9932453632354736, + 0 + ], + "translation":[ + -0.034781817346811295, + -5.215406986280868e-07, + 0.6320326924324036 + ] + }, + { + "children":[ + 58 + ], + "name":"Waist", + "rotation":[ + 1.1273323941018987e-10, + -0.0004882810462731868, + 2.3087774536634242e-07, + 0.9999998807907104 + ], + "translation":[ + -0.19272799789905548, + 0, + -0.44416600465774536 + ] + }, + { + "name":"Toe.L", + "rotation":[ + -0.04054461419582367, + 0.20984870195388794, + -0.046190135180950165, + 0.9758002758026123 + ], + "scale":[ + 0.9999998807907104, + 0.9999999403953552, + 0.9999999403953552 + ], + "translation":[ + -0.11146407574415207, + -0.4897264242172241, + -0.5777967572212219 + ] + }, + { + "children":[ + 60 + ], + "name":"Foot.L", + "rotation":[ + -0.0480215884745121, + 0.5597661733627319, + -0.04401899501681328, + 0.8260860443115234 + ], + "scale":[ + 1, + 1.0000001192092896, + 0.9999999403953552 + ], + "translation":[ + -1.7770464420318604, + -0.32821565866470337, + -0.16945353150367737 + ] + }, + { + "children":[ + 61 + ], + "name":"Calf.L", + "rotation":[ + -0.03276720270514488, + -0.17617949843406677, + -0.012538425624370575, + 0.9837327003479004 + ], + "scale":[ + 0.9999999403953552, + 1, + 0.9999999403953552 + ], + "translation":[ + 0.07403014600276947, + 1.6233717203140259, + 0.21561527252197266 + ] + }, + { + "children":[ + 62 + ], + "name":"Thigh.L", + "rotation":[ + -0.9806245565414429, + -0.04378915950655937, + -0.10092253237962723, + 0.16208817064762115 + ], + "scale":[ + 0.9999998807907104, + 0.9999999403953552, + 0.9999990463256836 + ], + "translation":[ + -0.001484000007621944, + 0.6385179758071899, + -1.0332800149917603 + ] + }, + { + "name":"Toe.R", + "rotation":[ + 0.040543943643569946, + 0.20984837412834167, + 0.04618439823389053, + 0.975800633430481 + ], + "translation":[ + -0.1114853024482727, + 0.4895232617855072, + -0.5779700875282288 + ] + }, + { + "children":[ + 64 + ], + "name":"Foot.R", + "rotation":[ + 0.0480266734957695, + 0.5597691535949707, + 0.044024981558322906, + 0.8260833621025085 + ], + "scale":[ + 1, + 1.0000001192092896, + 1.0000001192092896 + ], + "translation":[ + -1.7769675254821777, + 0.32861724495887756, + -0.16950029134750366 + ] + }, + { + "children":[ + 65 + ], + "name":"Calf.R", + "rotation":[ + 0.03276519477367401, + -0.17618192732334137, + 0.012537426315248013, + 0.983732283115387 + ], + "translation":[ + 0.07403092086315155, + -1.6233810186386108, + 0.2156165987253189 + ] + }, + { + "children":[ + 66 + ], + "name":"Thigh.R", + "rotation":[ + 0.980624794960022, + -0.04378814622759819, + 0.10092170536518097, + 0.16208769381046295 + ], + "scale":[ + 1.0000001192092896, + 1.0000001192092896, + 1.000001311302185 + ], + "translation":[ + -0.001484000007621944, + -0.6385179758071899, + -1.0332800149917603 + ] + }, + { + "children":[ + 59, + 63, + 67 + ], + "name":"Root", + "rotation":[ + -0.5, + -0.5, + -0.5, + 0.5 + ] + }, + { + "children":[ + 68 + ], + "name":"Sinbad" + }, + { + "mesh":0, + "name":"Sinbad.001", + "skin":0 + } + ], + "animations":[ + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"Dance", + "samplers":[ + { + "input":36, + "interpolation":"LINEAR", + "output":37 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":38 + }, + { + "input":39, + "interpolation":"STEP", + "output":40 + }, + { + "input":39, + "interpolation":"STEP", + "output":41 + }, + { + "input":39, + "interpolation":"STEP", + "output":42 + }, + { + "input":39, + "interpolation":"STEP", + "output":43 + }, + { + "input":39, + "interpolation":"STEP", + "output":44 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":45 + }, + { + "input":39, + "interpolation":"STEP", + "output":46 + }, + { + "input":39, + "interpolation":"STEP", + "output":47 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":48 + }, + { + "input":39, + "interpolation":"STEP", + "output":49 + }, + { + "input":39, + "interpolation":"STEP", + "output":50 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":51 + }, + { + "input":39, + "interpolation":"STEP", + "output":52 + }, + { + "input":39, + "interpolation":"STEP", + "output":53 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":54 + }, + { + "input":39, + "interpolation":"STEP", + "output":55 + }, + { + "input":39, + "interpolation":"STEP", + "output":56 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":57 + }, + { + "input":39, + "interpolation":"STEP", + "output":58 + }, + { + "input":39, + "interpolation":"STEP", + "output":59 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":60 + }, + { + "input":39, + "interpolation":"STEP", + "output":61 + }, + { + "input":39, + "interpolation":"STEP", + "output":62 + }, + { + "input":39, + "interpolation":"STEP", + "output":63 + }, + { + "input":39, + "interpolation":"STEP", + "output":64 + }, + { + "input":39, + "interpolation":"STEP", + "output":65 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":66 + }, + { + "input":39, + "interpolation":"STEP", + "output":67 + }, + { + "input":39, + "interpolation":"STEP", + "output":68 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":69 + }, + { + "input":39, + "interpolation":"STEP", + "output":70 + }, + { + "input":39, + "interpolation":"STEP", + "output":71 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":72 + }, + { + "input":39, + "interpolation":"STEP", + "output":73 + }, + { + "input":39, + "interpolation":"STEP", + "output":74 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":75 + }, + { + "input":39, + "interpolation":"STEP", + "output":76 + }, + { + "input":39, + "interpolation":"STEP", + "output":77 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":78 + }, + { + "input":39, + "interpolation":"STEP", + "output":79 + }, + { + "input":39, + "interpolation":"STEP", + "output":80 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":81 + }, + { + "input":39, + "interpolation":"STEP", + "output":82 + }, + { + "input":39, + "interpolation":"STEP", + "output":83 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":84 + }, + { + "input":39, + "interpolation":"STEP", + "output":85 + }, + { + "input":39, + "interpolation":"STEP", + "output":86 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":87 + }, + { + "input":39, + "interpolation":"STEP", + "output":88 + }, + { + "input":39, + "interpolation":"STEP", + "output":89 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":90 + }, + { + "input":39, + "interpolation":"STEP", + "output":91 + }, + { + "input":39, + "interpolation":"STEP", + "output":92 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":93 + }, + { + "input":39, + "interpolation":"STEP", + "output":94 + }, + { + "input":39, + "interpolation":"STEP", + "output":95 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":96 + }, + { + "input":39, + "interpolation":"STEP", + "output":97 + }, + { + "input":39, + "interpolation":"STEP", + "output":98 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":99 + }, + { + "input":39, + "interpolation":"STEP", + "output":100 + }, + { + "input":39, + "interpolation":"STEP", + "output":101 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":102 + }, + { + "input":39, + "interpolation":"STEP", + "output":103 + }, + { + "input":39, + "interpolation":"STEP", + "output":104 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":105 + }, + { + "input":39, + "interpolation":"STEP", + "output":106 + }, + { + "input":39, + "interpolation":"STEP", + "output":107 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":108 + }, + { + "input":39, + "interpolation":"STEP", + "output":109 + }, + { + "input":39, + "interpolation":"STEP", + "output":110 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":111 + }, + { + "input":39, + "interpolation":"STEP", + "output":112 + }, + { + "input":39, + "interpolation":"STEP", + "output":113 + }, + { + "input":39, + "interpolation":"STEP", + "output":114 + }, + { + "input":39, + "interpolation":"STEP", + "output":115 + }, + { + "input":39, + "interpolation":"STEP", + "output":116 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":117 + }, + { + "input":39, + "interpolation":"STEP", + "output":118 + }, + { + "input":39, + "interpolation":"STEP", + "output":119 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":120 + }, + { + "input":39, + "interpolation":"STEP", + "output":121 + }, + { + "input":39, + "interpolation":"STEP", + "output":122 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":123 + }, + { + "input":39, + "interpolation":"STEP", + "output":124 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":125 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":126 + }, + { + "input":39, + "interpolation":"STEP", + "output":127 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":128 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":129 + }, + { + "input":39, + "interpolation":"STEP", + "output":130 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":131 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":132 + }, + { + "input":39, + "interpolation":"STEP", + "output":133 + }, + { + "input":39, + "interpolation":"STEP", + "output":134 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":135 + }, + { + "input":39, + "interpolation":"STEP", + "output":136 + }, + { + "input":39, + "interpolation":"STEP", + "output":137 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":138 + }, + { + "input":39, + "interpolation":"STEP", + "output":139 + }, + { + "input":39, + "interpolation":"STEP", + "output":140 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":141 + }, + { + "input":39, + "interpolation":"STEP", + "output":142 + }, + { + "input":39, + "interpolation":"STEP", + "output":143 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":144 + }, + { + "input":39, + "interpolation":"STEP", + "output":145 + }, + { + "input":39, + "interpolation":"STEP", + "output":146 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":147 + }, + { + "input":39, + "interpolation":"STEP", + "output":148 + }, + { + "input":39, + "interpolation":"STEP", + "output":149 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":150 + }, + { + "input":39, + "interpolation":"STEP", + "output":151 + }, + { + "input":39, + "interpolation":"STEP", + "output":152 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":153 + }, + { + "input":39, + "interpolation":"STEP", + "output":154 + }, + { + "input":39, + "interpolation":"STEP", + "output":155 + }, + { + "input":39, + "interpolation":"STEP", + "output":156 + }, + { + "input":39, + "interpolation":"STEP", + "output":157 + }, + { + "input":39, + "interpolation":"STEP", + "output":158 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":159 + }, + { + "input":39, + "interpolation":"STEP", + "output":160 + }, + { + "input":39, + "interpolation":"STEP", + "output":161 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":162 + }, + { + "input":39, + "interpolation":"STEP", + "output":163 + }, + { + "input":39, + "interpolation":"STEP", + "output":164 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":165 + }, + { + "input":39, + "interpolation":"STEP", + "output":166 + }, + { + "input":39, + "interpolation":"STEP", + "output":167 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":168 + }, + { + "input":39, + "interpolation":"STEP", + "output":169 + }, + { + "input":39, + "interpolation":"STEP", + "output":170 + }, + { + "input":39, + "interpolation":"STEP", + "output":171 + }, + { + "input":39, + "interpolation":"STEP", + "output":172 + }, + { + "input":39, + "interpolation":"STEP", + "output":173 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":174 + }, + { + "input":39, + "interpolation":"STEP", + "output":175 + }, + { + "input":39, + "interpolation":"STEP", + "output":176 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":177 + }, + { + "input":39, + "interpolation":"STEP", + "output":178 + }, + { + "input":39, + "interpolation":"STEP", + "output":179 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":180 + }, + { + "input":39, + "interpolation":"STEP", + "output":181 + }, + { + "input":39, + "interpolation":"STEP", + "output":182 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":183 + }, + { + "input":39, + "interpolation":"STEP", + "output":184 + }, + { + "input":39, + "interpolation":"STEP", + "output":185 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":186 + }, + { + "input":39, + "interpolation":"STEP", + "output":187 + }, + { + "input":39, + "interpolation":"STEP", + "output":188 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":189 + }, + { + "input":39, + "interpolation":"STEP", + "output":190 + }, + { + "input":39, + "interpolation":"STEP", + "output":191 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":192 + }, + { + "input":39, + "interpolation":"STEP", + "output":193 + }, + { + "input":39, + "interpolation":"STEP", + "output":194 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":195 + }, + { + "input":39, + "interpolation":"STEP", + "output":196 + }, + { + "input":39, + "interpolation":"STEP", + "output":197 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":198 + }, + { + "input":39, + "interpolation":"STEP", + "output":199 + }, + { + "input":39, + "interpolation":"STEP", + "output":200 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":201 + }, + { + "input":39, + "interpolation":"STEP", + "output":202 + }, + { + "input":39, + "interpolation":"STEP", + "output":203 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":204 + }, + { + "input":39, + "interpolation":"STEP", + "output":205 + }, + { + "input":39, + "interpolation":"STEP", + "output":206 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":207 + }, + { + "input":39, + "interpolation":"STEP", + "output":208 + }, + { + "input":39, + "interpolation":"STEP", + "output":209 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":210 + }, + { + "input":39, + "interpolation":"STEP", + "output":211 + }, + { + "input":39, + "interpolation":"STEP", + "output":212 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":213 + }, + { + "input":39, + "interpolation":"STEP", + "output":214 + }, + { + "input":39, + "interpolation":"STEP", + "output":215 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":216 + }, + { + "input":39, + "interpolation":"STEP", + "output":217 + }, + { + "input":39, + "interpolation":"STEP", + "output":218 + }, + { + "input":39, + "interpolation":"STEP", + "output":219 + }, + { + "input":39, + "interpolation":"STEP", + "output":220 + }, + { + "input":39, + "interpolation":"STEP", + "output":221 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":222 + }, + { + "input":39, + "interpolation":"LINEAR", + "output":223 + }, + { + "input":39, + "interpolation":"LINEAR", + "output":224 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":225 + }, + { + "input":39, + "interpolation":"LINEAR", + "output":226 + }, + { + "input":39, + "interpolation":"LINEAR", + "output":227 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":228 + }, + { + "input":39, + "interpolation":"STEP", + "output":229 + }, + { + "input":39, + "interpolation":"STEP", + "output":230 + }, + { + "input":39, + "interpolation":"STEP", + "output":231 + }, + { + "input":39, + "interpolation":"STEP", + "output":232 + }, + { + "input":39, + "interpolation":"STEP", + "output":233 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":234 + }, + { + "input":39, + "interpolation":"STEP", + "output":235 + }, + { + "input":39, + "interpolation":"STEP", + "output":236 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":237 + }, + { + "input":39, + "interpolation":"STEP", + "output":238 + }, + { + "input":39, + "interpolation":"STEP", + "output":239 + }, + { + "input":36, + "interpolation":"LINEAR", + "output":240 + }, + { + "input":39, + "interpolation":"STEP", + "output":241 + }, + { + "input":39, + "interpolation":"STEP", + "output":242 + }, + { + "input":39, + "interpolation":"STEP", + "output":243 + }, + { + "input":39, + "interpolation":"STEP", + "output":244 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"DrawSwords", + "samplers":[ + { + "input":245, + "interpolation":"STEP", + "output":246 + }, + { + "input":245, + "interpolation":"STEP", + "output":247 + }, + { + "input":245, + "interpolation":"STEP", + "output":248 + }, + { + "input":245, + "interpolation":"STEP", + "output":249 + }, + { + "input":245, + "interpolation":"STEP", + "output":250 + }, + { + "input":245, + "interpolation":"STEP", + "output":251 + }, + { + "input":245, + "interpolation":"STEP", + "output":252 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":254 + }, + { + "input":245, + "interpolation":"STEP", + "output":255 + }, + { + "input":245, + "interpolation":"STEP", + "output":256 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":257 + }, + { + "input":245, + "interpolation":"STEP", + "output":258 + }, + { + "input":245, + "interpolation":"STEP", + "output":259 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":260 + }, + { + "input":245, + "interpolation":"STEP", + "output":261 + }, + { + "input":245, + "interpolation":"STEP", + "output":262 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":263 + }, + { + "input":245, + "interpolation":"STEP", + "output":264 + }, + { + "input":245, + "interpolation":"STEP", + "output":265 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":266 + }, + { + "input":245, + "interpolation":"STEP", + "output":267 + }, + { + "input":245, + "interpolation":"STEP", + "output":268 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":269 + }, + { + "input":245, + "interpolation":"STEP", + "output":270 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":271 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":272 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":273 + }, + { + "input":245, + "interpolation":"STEP", + "output":274 + }, + { + "input":245, + "interpolation":"STEP", + "output":275 + }, + { + "input":245, + "interpolation":"STEP", + "output":276 + }, + { + "input":245, + "interpolation":"STEP", + "output":277 + }, + { + "input":245, + "interpolation":"STEP", + "output":278 + }, + { + "input":245, + "interpolation":"STEP", + "output":279 + }, + { + "input":245, + "interpolation":"STEP", + "output":280 + }, + { + "input":245, + "interpolation":"STEP", + "output":281 + }, + { + "input":245, + "interpolation":"STEP", + "output":282 + }, + { + "input":245, + "interpolation":"STEP", + "output":283 + }, + { + "input":245, + "interpolation":"STEP", + "output":284 + }, + { + "input":245, + "interpolation":"STEP", + "output":285 + }, + { + "input":245, + "interpolation":"STEP", + "output":286 + }, + { + "input":245, + "interpolation":"STEP", + "output":287 + }, + { + "input":245, + "interpolation":"STEP", + "output":288 + }, + { + "input":245, + "interpolation":"STEP", + "output":289 + }, + { + "input":245, + "interpolation":"STEP", + "output":290 + }, + { + "input":245, + "interpolation":"STEP", + "output":291 + }, + { + "input":245, + "interpolation":"STEP", + "output":292 + }, + { + "input":245, + "interpolation":"STEP", + "output":293 + }, + { + "input":245, + "interpolation":"STEP", + "output":294 + }, + { + "input":245, + "interpolation":"STEP", + "output":295 + }, + { + "input":245, + "interpolation":"STEP", + "output":296 + }, + { + "input":245, + "interpolation":"STEP", + "output":297 + }, + { + "input":245, + "interpolation":"STEP", + "output":298 + }, + { + "input":245, + "interpolation":"STEP", + "output":299 + }, + { + "input":245, + "interpolation":"STEP", + "output":300 + }, + { + "input":245, + "interpolation":"STEP", + "output":301 + }, + { + "input":245, + "interpolation":"STEP", + "output":302 + }, + { + "input":245, + "interpolation":"STEP", + "output":303 + }, + { + "input":245, + "interpolation":"STEP", + "output":304 + }, + { + "input":245, + "interpolation":"STEP", + "output":305 + }, + { + "input":245, + "interpolation":"STEP", + "output":306 + }, + { + "input":245, + "interpolation":"STEP", + "output":307 + }, + { + "input":245, + "interpolation":"STEP", + "output":308 + }, + { + "input":245, + "interpolation":"STEP", + "output":309 + }, + { + "input":245, + "interpolation":"STEP", + "output":310 + }, + { + "input":245, + "interpolation":"STEP", + "output":311 + }, + { + "input":245, + "interpolation":"STEP", + "output":312 + }, + { + "input":245, + "interpolation":"STEP", + "output":313 + }, + { + "input":245, + "interpolation":"STEP", + "output":314 + }, + { + "input":245, + "interpolation":"STEP", + "output":315 + }, + { + "input":245, + "interpolation":"STEP", + "output":316 + }, + { + "input":245, + "interpolation":"STEP", + "output":317 + }, + { + "input":245, + "interpolation":"STEP", + "output":318 + }, + { + "input":245, + "interpolation":"STEP", + "output":319 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":320 + }, + { + "input":245, + "interpolation":"STEP", + "output":321 + }, + { + "input":245, + "interpolation":"STEP", + "output":322 + }, + { + "input":245, + "interpolation":"STEP", + "output":323 + }, + { + "input":245, + "interpolation":"STEP", + "output":324 + }, + { + "input":245, + "interpolation":"STEP", + "output":325 + }, + { + "input":245, + "interpolation":"STEP", + "output":326 + }, + { + "input":245, + "interpolation":"STEP", + "output":327 + }, + { + "input":245, + "interpolation":"STEP", + "output":328 + }, + { + "input":245, + "interpolation":"STEP", + "output":329 + }, + { + "input":245, + "interpolation":"STEP", + "output":330 + }, + { + "input":245, + "interpolation":"STEP", + "output":331 + }, + { + "input":245, + "interpolation":"STEP", + "output":332 + }, + { + "input":245, + "interpolation":"STEP", + "output":333 + }, + { + "input":245, + "interpolation":"STEP", + "output":334 + }, + { + "input":245, + "interpolation":"STEP", + "output":335 + }, + { + "input":245, + "interpolation":"STEP", + "output":336 + }, + { + "input":245, + "interpolation":"STEP", + "output":337 + }, + { + "input":245, + "interpolation":"STEP", + "output":338 + }, + { + "input":245, + "interpolation":"STEP", + "output":339 + }, + { + "input":245, + "interpolation":"STEP", + "output":340 + }, + { + "input":245, + "interpolation":"STEP", + "output":341 + }, + { + "input":245, + "interpolation":"STEP", + "output":342 + }, + { + "input":245, + "interpolation":"STEP", + "output":343 + }, + { + "input":245, + "interpolation":"STEP", + "output":344 + }, + { + "input":245, + "interpolation":"STEP", + "output":345 + }, + { + "input":245, + "interpolation":"STEP", + "output":346 + }, + { + "input":245, + "interpolation":"STEP", + "output":347 + }, + { + "input":245, + "interpolation":"STEP", + "output":348 + }, + { + "input":245, + "interpolation":"STEP", + "output":349 + }, + { + "input":245, + "interpolation":"STEP", + "output":350 + }, + { + "input":245, + "interpolation":"STEP", + "output":351 + }, + { + "input":245, + "interpolation":"STEP", + "output":352 + }, + { + "input":245, + "interpolation":"STEP", + "output":353 + }, + { + "input":245, + "interpolation":"STEP", + "output":354 + }, + { + "input":245, + "interpolation":"STEP", + "output":355 + }, + { + "input":245, + "interpolation":"STEP", + "output":356 + }, + { + "input":245, + "interpolation":"STEP", + "output":357 + }, + { + "input":245, + "interpolation":"STEP", + "output":358 + }, + { + "input":245, + "interpolation":"STEP", + "output":359 + }, + { + "input":245, + "interpolation":"STEP", + "output":360 + }, + { + "input":245, + "interpolation":"STEP", + "output":361 + }, + { + "input":245, + "interpolation":"STEP", + "output":362 + }, + { + "input":245, + "interpolation":"STEP", + "output":363 + }, + { + "input":245, + "interpolation":"STEP", + "output":364 + }, + { + "input":245, + "interpolation":"STEP", + "output":365 + }, + { + "input":245, + "interpolation":"STEP", + "output":366 + }, + { + "input":245, + "interpolation":"STEP", + "output":367 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":368 + }, + { + "input":245, + "interpolation":"STEP", + "output":369 + }, + { + "input":245, + "interpolation":"STEP", + "output":370 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":371 + }, + { + "input":245, + "interpolation":"STEP", + "output":372 + }, + { + "input":245, + "interpolation":"STEP", + "output":373 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":374 + }, + { + "input":245, + "interpolation":"STEP", + "output":375 + }, + { + "input":245, + "interpolation":"STEP", + "output":376 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":377 + }, + { + "input":245, + "interpolation":"STEP", + "output":378 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":379 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":380 + }, + { + "input":253, + "interpolation":"LINEAR", + "output":381 + }, + { + "input":245, + "interpolation":"STEP", + "output":382 + }, + { + "input":245, + "interpolation":"STEP", + "output":383 + }, + { + "input":245, + "interpolation":"STEP", + "output":384 + }, + { + "input":245, + "interpolation":"STEP", + "output":385 + }, + { + "input":245, + "interpolation":"STEP", + "output":386 + }, + { + "input":245, + "interpolation":"STEP", + "output":387 + }, + { + "input":245, + "interpolation":"STEP", + "output":388 + }, + { + "input":245, + "interpolation":"STEP", + "output":389 + }, + { + "input":245, + "interpolation":"STEP", + "output":390 + }, + { + "input":245, + "interpolation":"STEP", + "output":391 + }, + { + "input":245, + "interpolation":"STEP", + "output":392 + }, + { + "input":245, + "interpolation":"STEP", + "output":393 + }, + { + "input":245, + "interpolation":"STEP", + "output":394 + }, + { + "input":245, + "interpolation":"STEP", + "output":395 + }, + { + "input":245, + "interpolation":"STEP", + "output":396 + }, + { + "input":245, + "interpolation":"STEP", + "output":397 + }, + { + "input":245, + "interpolation":"STEP", + "output":398 + }, + { + "input":245, + "interpolation":"STEP", + "output":399 + }, + { + "input":245, + "interpolation":"STEP", + "output":400 + }, + { + "input":245, + "interpolation":"STEP", + "output":401 + }, + { + "input":245, + "interpolation":"STEP", + "output":402 + }, + { + "input":245, + "interpolation":"STEP", + "output":403 + }, + { + "input":245, + "interpolation":"STEP", + "output":404 + }, + { + "input":245, + "interpolation":"STEP", + "output":405 + }, + { + "input":245, + "interpolation":"STEP", + "output":406 + }, + { + "input":245, + "interpolation":"STEP", + "output":407 + }, + { + "input":245, + "interpolation":"STEP", + "output":408 + }, + { + "input":245, + "interpolation":"STEP", + "output":409 + }, + { + "input":245, + "interpolation":"STEP", + "output":410 + }, + { + "input":245, + "interpolation":"STEP", + "output":411 + }, + { + "input":245, + "interpolation":"STEP", + "output":412 + }, + { + "input":245, + "interpolation":"STEP", + "output":413 + }, + { + "input":245, + "interpolation":"STEP", + "output":414 + }, + { + "input":245, + "interpolation":"STEP", + "output":415 + }, + { + "input":245, + "interpolation":"STEP", + "output":416 + }, + { + "input":245, + "interpolation":"STEP", + "output":417 + }, + { + "input":245, + "interpolation":"STEP", + "output":418 + }, + { + "input":245, + "interpolation":"STEP", + "output":419 + }, + { + "input":245, + "interpolation":"STEP", + "output":420 + }, + { + "input":245, + "interpolation":"STEP", + "output":421 + }, + { + "input":245, + "interpolation":"STEP", + "output":422 + }, + { + "input":245, + "interpolation":"STEP", + "output":423 + }, + { + "input":245, + "interpolation":"STEP", + "output":424 + }, + { + "input":245, + "interpolation":"STEP", + "output":425 + }, + { + "input":245, + "interpolation":"STEP", + "output":426 + }, + { + "input":245, + "interpolation":"STEP", + "output":427 + }, + { + "input":245, + "interpolation":"STEP", + "output":428 + }, + { + "input":245, + "interpolation":"STEP", + "output":429 + }, + { + "input":245, + "interpolation":"STEP", + "output":430 + }, + { + "input":245, + "interpolation":"STEP", + "output":431 + }, + { + "input":245, + "interpolation":"STEP", + "output":432 + }, + { + "input":245, + "interpolation":"STEP", + "output":433 + }, + { + "input":245, + "interpolation":"STEP", + "output":434 + }, + { + "input":245, + "interpolation":"STEP", + "output":435 + }, + { + "input":245, + "interpolation":"STEP", + "output":436 + }, + { + "input":245, + "interpolation":"STEP", + "output":437 + }, + { + "input":245, + "interpolation":"STEP", + "output":438 + }, + { + "input":245, + "interpolation":"STEP", + "output":439 + }, + { + "input":245, + "interpolation":"STEP", + "output":440 + }, + { + "input":245, + "interpolation":"STEP", + "output":441 + }, + { + "input":245, + "interpolation":"STEP", + "output":442 + }, + { + "input":245, + "interpolation":"STEP", + "output":443 + }, + { + "input":245, + "interpolation":"STEP", + "output":444 + }, + { + "input":245, + "interpolation":"STEP", + "output":445 + }, + { + "input":245, + "interpolation":"STEP", + "output":446 + }, + { + "input":245, + "interpolation":"STEP", + "output":447 + }, + { + "input":245, + "interpolation":"STEP", + "output":448 + }, + { + "input":245, + "interpolation":"STEP", + "output":449 + }, + { + "input":245, + "interpolation":"STEP", + "output":450 + }, + { + "input":245, + "interpolation":"STEP", + "output":451 + }, + { + "input":245, + "interpolation":"STEP", + "output":452 + }, + { + "input":245, + "interpolation":"STEP", + "output":453 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"HandsClosed", + "samplers":[ + { + "input":454, + "interpolation":"STEP", + "output":455 + }, + { + "input":454, + "interpolation":"STEP", + "output":456 + }, + { + "input":454, + "interpolation":"STEP", + "output":457 + }, + { + "input":454, + "interpolation":"STEP", + "output":458 + }, + { + "input":454, + "interpolation":"STEP", + "output":459 + }, + { + "input":454, + "interpolation":"STEP", + "output":460 + }, + { + "input":454, + "interpolation":"STEP", + "output":461 + }, + { + "input":454, + "interpolation":"STEP", + "output":462 + }, + { + "input":454, + "interpolation":"STEP", + "output":463 + }, + { + "input":454, + "interpolation":"STEP", + "output":464 + }, + { + "input":454, + "interpolation":"STEP", + "output":465 + }, + { + "input":454, + "interpolation":"STEP", + "output":466 + }, + { + "input":454, + "interpolation":"STEP", + "output":467 + }, + { + "input":454, + "interpolation":"STEP", + "output":468 + }, + { + "input":454, + "interpolation":"STEP", + "output":469 + }, + { + "input":454, + "interpolation":"STEP", + "output":470 + }, + { + "input":454, + "interpolation":"STEP", + "output":471 + }, + { + "input":454, + "interpolation":"STEP", + "output":472 + }, + { + "input":454, + "interpolation":"STEP", + "output":473 + }, + { + "input":454, + "interpolation":"STEP", + "output":474 + }, + { + "input":454, + "interpolation":"STEP", + "output":475 + }, + { + "input":454, + "interpolation":"STEP", + "output":476 + }, + { + "input":454, + "interpolation":"STEP", + "output":477 + }, + { + "input":454, + "interpolation":"STEP", + "output":478 + }, + { + "input":454, + "interpolation":"STEP", + "output":479 + }, + { + "input":454, + "interpolation":"STEP", + "output":480 + }, + { + "input":454, + "interpolation":"STEP", + "output":481 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":482 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":483 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":484 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":485 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":486 + }, + { + "input":454, + "interpolation":"STEP", + "output":487 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":488 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":489 + }, + { + "input":454, + "interpolation":"STEP", + "output":490 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":491 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":492 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":493 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":494 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":495 + }, + { + "input":454, + "interpolation":"STEP", + "output":496 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":497 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":498 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":499 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":500 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":501 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":502 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":503 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":504 + }, + { + "input":454, + "interpolation":"STEP", + "output":505 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":506 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":507 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":508 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":509 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":510 + }, + { + "input":454, + "interpolation":"STEP", + "output":511 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":512 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":513 + }, + { + "input":454, + "interpolation":"STEP", + "output":514 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":515 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":516 + }, + { + "input":454, + "interpolation":"STEP", + "output":517 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":518 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":519 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":520 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":521 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":522 + }, + { + "input":454, + "interpolation":"STEP", + "output":523 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":524 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":525 + }, + { + "input":454, + "interpolation":"STEP", + "output":526 + }, + { + "input":454, + "interpolation":"STEP", + "output":527 + }, + { + "input":454, + "interpolation":"STEP", + "output":528 + }, + { + "input":454, + "interpolation":"STEP", + "output":529 + }, + { + "input":454, + "interpolation":"STEP", + "output":530 + }, + { + "input":454, + "interpolation":"STEP", + "output":531 + }, + { + "input":454, + "interpolation":"STEP", + "output":532 + }, + { + "input":454, + "interpolation":"STEP", + "output":533 + }, + { + "input":454, + "interpolation":"STEP", + "output":534 + }, + { + "input":454, + "interpolation":"STEP", + "output":535 + }, + { + "input":454, + "interpolation":"STEP", + "output":536 + }, + { + "input":454, + "interpolation":"STEP", + "output":537 + }, + { + "input":454, + "interpolation":"STEP", + "output":538 + }, + { + "input":454, + "interpolation":"STEP", + "output":539 + }, + { + "input":454, + "interpolation":"STEP", + "output":540 + }, + { + "input":454, + "interpolation":"STEP", + "output":541 + }, + { + "input":454, + "interpolation":"STEP", + "output":542 + }, + { + "input":454, + "interpolation":"STEP", + "output":543 + }, + { + "input":454, + "interpolation":"STEP", + "output":544 + }, + { + "input":454, + "interpolation":"STEP", + "output":545 + }, + { + "input":454, + "interpolation":"STEP", + "output":546 + }, + { + "input":454, + "interpolation":"STEP", + "output":547 + }, + { + "input":454, + "interpolation":"STEP", + "output":548 + }, + { + "input":454, + "interpolation":"STEP", + "output":549 + }, + { + "input":454, + "interpolation":"STEP", + "output":550 + }, + { + "input":454, + "interpolation":"STEP", + "output":551 + }, + { + "input":454, + "interpolation":"STEP", + "output":552 + }, + { + "input":454, + "interpolation":"STEP", + "output":553 + }, + { + "input":454, + "interpolation":"STEP", + "output":554 + }, + { + "input":454, + "interpolation":"STEP", + "output":555 + }, + { + "input":454, + "interpolation":"STEP", + "output":556 + }, + { + "input":454, + "interpolation":"STEP", + "output":557 + }, + { + "input":454, + "interpolation":"STEP", + "output":558 + }, + { + "input":454, + "interpolation":"STEP", + "output":559 + }, + { + "input":454, + "interpolation":"STEP", + "output":560 + }, + { + "input":454, + "interpolation":"STEP", + "output":561 + }, + { + "input":454, + "interpolation":"STEP", + "output":562 + }, + { + "input":454, + "interpolation":"STEP", + "output":563 + }, + { + "input":454, + "interpolation":"STEP", + "output":564 + }, + { + "input":454, + "interpolation":"STEP", + "output":565 + }, + { + "input":454, + "interpolation":"STEP", + "output":566 + }, + { + "input":454, + "interpolation":"STEP", + "output":567 + }, + { + "input":454, + "interpolation":"STEP", + "output":568 + }, + { + "input":454, + "interpolation":"STEP", + "output":569 + }, + { + "input":454, + "interpolation":"STEP", + "output":570 + }, + { + "input":454, + "interpolation":"STEP", + "output":571 + }, + { + "input":454, + "interpolation":"STEP", + "output":572 + }, + { + "input":454, + "interpolation":"STEP", + "output":573 + }, + { + "input":454, + "interpolation":"STEP", + "output":574 + }, + { + "input":454, + "interpolation":"STEP", + "output":575 + }, + { + "input":454, + "interpolation":"STEP", + "output":576 + }, + { + "input":454, + "interpolation":"STEP", + "output":577 + }, + { + "input":454, + "interpolation":"STEP", + "output":578 + }, + { + "input":454, + "interpolation":"STEP", + "output":579 + }, + { + "input":454, + "interpolation":"STEP", + "output":580 + }, + { + "input":454, + "interpolation":"STEP", + "output":581 + }, + { + "input":454, + "interpolation":"STEP", + "output":582 + }, + { + "input":454, + "interpolation":"STEP", + "output":583 + }, + { + "input":454, + "interpolation":"STEP", + "output":584 + }, + { + "input":454, + "interpolation":"STEP", + "output":585 + }, + { + "input":454, + "interpolation":"STEP", + "output":586 + }, + { + "input":454, + "interpolation":"STEP", + "output":587 + }, + { + "input":454, + "interpolation":"STEP", + "output":588 + }, + { + "input":454, + "interpolation":"STEP", + "output":589 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":590 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":591 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":592 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":593 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":594 + }, + { + "input":454, + "interpolation":"STEP", + "output":595 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":596 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":597 + }, + { + "input":454, + "interpolation":"STEP", + "output":598 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":599 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":600 + }, + { + "input":454, + "interpolation":"STEP", + "output":601 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":602 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":603 + }, + { + "input":454, + "interpolation":"STEP", + "output":604 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":605 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":606 + }, + { + "input":454, + "interpolation":"STEP", + "output":607 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":608 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":609 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":610 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":611 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":612 + }, + { + "input":454, + "interpolation":"STEP", + "output":613 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":614 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":615 + }, + { + "input":454, + "interpolation":"STEP", + "output":616 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":617 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":618 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":619 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":620 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":621 + }, + { + "input":454, + "interpolation":"STEP", + "output":622 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":623 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":624 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":625 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":626 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":627 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":628 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":629 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":630 + }, + { + "input":454, + "interpolation":"STEP", + "output":631 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":632 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":633 + }, + { + "input":454, + "interpolation":"STEP", + "output":634 + }, + { + "input":454, + "interpolation":"STEP", + "output":635 + }, + { + "input":454, + "interpolation":"STEP", + "output":636 + }, + { + "input":454, + "interpolation":"STEP", + "output":637 + }, + { + "input":454, + "interpolation":"STEP", + "output":638 + }, + { + "input":454, + "interpolation":"STEP", + "output":639 + }, + { + "input":454, + "interpolation":"STEP", + "output":640 + }, + { + "input":454, + "interpolation":"STEP", + "output":641 + }, + { + "input":454, + "interpolation":"STEP", + "output":642 + }, + { + "input":454, + "interpolation":"STEP", + "output":643 + }, + { + "input":454, + "interpolation":"STEP", + "output":644 + }, + { + "input":454, + "interpolation":"STEP", + "output":645 + }, + { + "input":454, + "interpolation":"STEP", + "output":646 + }, + { + "input":454, + "interpolation":"STEP", + "output":647 + }, + { + "input":454, + "interpolation":"STEP", + "output":648 + }, + { + "input":454, + "interpolation":"STEP", + "output":649 + }, + { + "input":454, + "interpolation":"STEP", + "output":650 + }, + { + "input":454, + "interpolation":"STEP", + "output":651 + }, + { + "input":454, + "interpolation":"STEP", + "output":652 + }, + { + "input":454, + "interpolation":"STEP", + "output":653 + }, + { + "input":454, + "interpolation":"STEP", + "output":654 + }, + { + "input":454, + "interpolation":"STEP", + "output":655 + }, + { + "input":454, + "interpolation":"STEP", + "output":656 + }, + { + "input":454, + "interpolation":"STEP", + "output":657 + }, + { + "input":454, + "interpolation":"STEP", + "output":658 + }, + { + "input":454, + "interpolation":"STEP", + "output":659 + }, + { + "input":454, + "interpolation":"STEP", + "output":660 + }, + { + "input":454, + "interpolation":"STEP", + "output":661 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"HandsRelaxed", + "samplers":[ + { + "input":454, + "interpolation":"STEP", + "output":662 + }, + { + "input":454, + "interpolation":"STEP", + "output":663 + }, + { + "input":454, + "interpolation":"STEP", + "output":664 + }, + { + "input":454, + "interpolation":"STEP", + "output":665 + }, + { + "input":454, + "interpolation":"STEP", + "output":666 + }, + { + "input":454, + "interpolation":"STEP", + "output":667 + }, + { + "input":454, + "interpolation":"STEP", + "output":668 + }, + { + "input":454, + "interpolation":"STEP", + "output":669 + }, + { + "input":454, + "interpolation":"STEP", + "output":670 + }, + { + "input":454, + "interpolation":"STEP", + "output":671 + }, + { + "input":454, + "interpolation":"STEP", + "output":672 + }, + { + "input":454, + "interpolation":"STEP", + "output":673 + }, + { + "input":454, + "interpolation":"STEP", + "output":674 + }, + { + "input":454, + "interpolation":"STEP", + "output":675 + }, + { + "input":454, + "interpolation":"STEP", + "output":676 + }, + { + "input":454, + "interpolation":"STEP", + "output":677 + }, + { + "input":454, + "interpolation":"STEP", + "output":678 + }, + { + "input":454, + "interpolation":"STEP", + "output":679 + }, + { + "input":454, + "interpolation":"STEP", + "output":680 + }, + { + "input":454, + "interpolation":"STEP", + "output":681 + }, + { + "input":454, + "interpolation":"STEP", + "output":682 + }, + { + "input":454, + "interpolation":"STEP", + "output":683 + }, + { + "input":454, + "interpolation":"STEP", + "output":684 + }, + { + "input":454, + "interpolation":"STEP", + "output":685 + }, + { + "input":454, + "interpolation":"STEP", + "output":686 + }, + { + "input":454, + "interpolation":"STEP", + "output":687 + }, + { + "input":454, + "interpolation":"STEP", + "output":688 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":689 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":690 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":691 + }, + { + "input":454, + "interpolation":"STEP", + "output":692 + }, + { + "input":454, + "interpolation":"STEP", + "output":693 + }, + { + "input":454, + "interpolation":"STEP", + "output":694 + }, + { + "input":454, + "interpolation":"STEP", + "output":695 + }, + { + "input":454, + "interpolation":"STEP", + "output":696 + }, + { + "input":454, + "interpolation":"STEP", + "output":697 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":698 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":699 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":700 + }, + { + "input":454, + "interpolation":"STEP", + "output":701 + }, + { + "input":454, + "interpolation":"STEP", + "output":702 + }, + { + "input":454, + "interpolation":"STEP", + "output":703 + }, + { + "input":454, + "interpolation":"STEP", + "output":704 + }, + { + "input":454, + "interpolation":"STEP", + "output":705 + }, + { + "input":454, + "interpolation":"STEP", + "output":706 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":707 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":708 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":709 + }, + { + "input":454, + "interpolation":"STEP", + "output":710 + }, + { + "input":454, + "interpolation":"STEP", + "output":711 + }, + { + "input":454, + "interpolation":"STEP", + "output":712 + }, + { + "input":454, + "interpolation":"STEP", + "output":713 + }, + { + "input":454, + "interpolation":"STEP", + "output":714 + }, + { + "input":454, + "interpolation":"STEP", + "output":715 + }, + { + "input":454, + "interpolation":"STEP", + "output":716 + }, + { + "input":454, + "interpolation":"STEP", + "output":717 + }, + { + "input":454, + "interpolation":"STEP", + "output":718 + }, + { + "input":454, + "interpolation":"STEP", + "output":719 + }, + { + "input":454, + "interpolation":"STEP", + "output":720 + }, + { + "input":454, + "interpolation":"STEP", + "output":721 + }, + { + "input":454, + "interpolation":"STEP", + "output":722 + }, + { + "input":454, + "interpolation":"STEP", + "output":723 + }, + { + "input":454, + "interpolation":"STEP", + "output":724 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":725 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":726 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":727 + }, + { + "input":454, + "interpolation":"STEP", + "output":728 + }, + { + "input":454, + "interpolation":"STEP", + "output":729 + }, + { + "input":454, + "interpolation":"STEP", + "output":730 + }, + { + "input":454, + "interpolation":"STEP", + "output":731 + }, + { + "input":454, + "interpolation":"STEP", + "output":732 + }, + { + "input":454, + "interpolation":"STEP", + "output":733 + }, + { + "input":454, + "interpolation":"STEP", + "output":734 + }, + { + "input":454, + "interpolation":"STEP", + "output":735 + }, + { + "input":454, + "interpolation":"STEP", + "output":736 + }, + { + "input":454, + "interpolation":"STEP", + "output":737 + }, + { + "input":454, + "interpolation":"STEP", + "output":738 + }, + { + "input":454, + "interpolation":"STEP", + "output":739 + }, + { + "input":454, + "interpolation":"STEP", + "output":740 + }, + { + "input":454, + "interpolation":"STEP", + "output":741 + }, + { + "input":454, + "interpolation":"STEP", + "output":742 + }, + { + "input":454, + "interpolation":"STEP", + "output":743 + }, + { + "input":454, + "interpolation":"STEP", + "output":744 + }, + { + "input":454, + "interpolation":"STEP", + "output":745 + }, + { + "input":454, + "interpolation":"STEP", + "output":746 + }, + { + "input":454, + "interpolation":"STEP", + "output":747 + }, + { + "input":454, + "interpolation":"STEP", + "output":748 + }, + { + "input":454, + "interpolation":"STEP", + "output":749 + }, + { + "input":454, + "interpolation":"STEP", + "output":750 + }, + { + "input":454, + "interpolation":"STEP", + "output":751 + }, + { + "input":454, + "interpolation":"STEP", + "output":752 + }, + { + "input":454, + "interpolation":"STEP", + "output":753 + }, + { + "input":454, + "interpolation":"STEP", + "output":754 + }, + { + "input":454, + "interpolation":"STEP", + "output":755 + }, + { + "input":454, + "interpolation":"STEP", + "output":756 + }, + { + "input":454, + "interpolation":"STEP", + "output":757 + }, + { + "input":454, + "interpolation":"STEP", + "output":758 + }, + { + "input":454, + "interpolation":"STEP", + "output":759 + }, + { + "input":454, + "interpolation":"STEP", + "output":760 + }, + { + "input":454, + "interpolation":"STEP", + "output":761 + }, + { + "input":454, + "interpolation":"STEP", + "output":762 + }, + { + "input":454, + "interpolation":"STEP", + "output":763 + }, + { + "input":454, + "interpolation":"STEP", + "output":764 + }, + { + "input":454, + "interpolation":"STEP", + "output":765 + }, + { + "input":454, + "interpolation":"STEP", + "output":766 + }, + { + "input":454, + "interpolation":"STEP", + "output":767 + }, + { + "input":454, + "interpolation":"STEP", + "output":768 + }, + { + "input":454, + "interpolation":"STEP", + "output":769 + }, + { + "input":454, + "interpolation":"STEP", + "output":770 + }, + { + "input":454, + "interpolation":"STEP", + "output":771 + }, + { + "input":454, + "interpolation":"STEP", + "output":772 + }, + { + "input":454, + "interpolation":"STEP", + "output":773 + }, + { + "input":454, + "interpolation":"STEP", + "output":774 + }, + { + "input":454, + "interpolation":"STEP", + "output":775 + }, + { + "input":454, + "interpolation":"STEP", + "output":776 + }, + { + "input":454, + "interpolation":"STEP", + "output":777 + }, + { + "input":454, + "interpolation":"STEP", + "output":778 + }, + { + "input":454, + "interpolation":"STEP", + "output":779 + }, + { + "input":454, + "interpolation":"STEP", + "output":780 + }, + { + "input":454, + "interpolation":"STEP", + "output":781 + }, + { + "input":454, + "interpolation":"STEP", + "output":782 + }, + { + "input":454, + "interpolation":"STEP", + "output":783 + }, + { + "input":454, + "interpolation":"STEP", + "output":784 + }, + { + "input":454, + "interpolation":"STEP", + "output":785 + }, + { + "input":454, + "interpolation":"STEP", + "output":786 + }, + { + "input":454, + "interpolation":"STEP", + "output":787 + }, + { + "input":454, + "interpolation":"STEP", + "output":788 + }, + { + "input":454, + "interpolation":"STEP", + "output":789 + }, + { + "input":454, + "interpolation":"STEP", + "output":790 + }, + { + "input":454, + "interpolation":"STEP", + "output":791 + }, + { + "input":454, + "interpolation":"STEP", + "output":792 + }, + { + "input":454, + "interpolation":"STEP", + "output":793 + }, + { + "input":454, + "interpolation":"STEP", + "output":794 + }, + { + "input":454, + "interpolation":"STEP", + "output":795 + }, + { + "input":454, + "interpolation":"STEP", + "output":796 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":797 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":798 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":799 + }, + { + "input":454, + "interpolation":"STEP", + "output":800 + }, + { + "input":454, + "interpolation":"STEP", + "output":801 + }, + { + "input":454, + "interpolation":"STEP", + "output":802 + }, + { + "input":454, + "interpolation":"STEP", + "output":803 + }, + { + "input":454, + "interpolation":"STEP", + "output":804 + }, + { + "input":454, + "interpolation":"STEP", + "output":805 + }, + { + "input":454, + "interpolation":"STEP", + "output":806 + }, + { + "input":454, + "interpolation":"STEP", + "output":807 + }, + { + "input":454, + "interpolation":"STEP", + "output":808 + }, + { + "input":454, + "interpolation":"STEP", + "output":809 + }, + { + "input":454, + "interpolation":"STEP", + "output":810 + }, + { + "input":454, + "interpolation":"STEP", + "output":811 + }, + { + "input":454, + "interpolation":"STEP", + "output":812 + }, + { + "input":454, + "interpolation":"STEP", + "output":813 + }, + { + "input":454, + "interpolation":"STEP", + "output":814 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":815 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":816 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":817 + }, + { + "input":454, + "interpolation":"STEP", + "output":818 + }, + { + "input":454, + "interpolation":"STEP", + "output":819 + }, + { + "input":454, + "interpolation":"STEP", + "output":820 + }, + { + "input":454, + "interpolation":"STEP", + "output":821 + }, + { + "input":454, + "interpolation":"STEP", + "output":822 + }, + { + "input":454, + "interpolation":"STEP", + "output":823 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":824 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":825 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":826 + }, + { + "input":454, + "interpolation":"STEP", + "output":827 + }, + { + "input":454, + "interpolation":"STEP", + "output":828 + }, + { + "input":454, + "interpolation":"STEP", + "output":829 + }, + { + "input":454, + "interpolation":"STEP", + "output":830 + }, + { + "input":454, + "interpolation":"STEP", + "output":831 + }, + { + "input":454, + "interpolation":"STEP", + "output":832 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":833 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":834 + }, + { + "input":454, + "interpolation":"LINEAR", + "output":835 + }, + { + "input":454, + "interpolation":"STEP", + "output":836 + }, + { + "input":454, + "interpolation":"STEP", + "output":837 + }, + { + "input":454, + "interpolation":"STEP", + "output":838 + }, + { + "input":454, + "interpolation":"STEP", + "output":839 + }, + { + "input":454, + "interpolation":"STEP", + "output":840 + }, + { + "input":454, + "interpolation":"STEP", + "output":841 + }, + { + "input":454, + "interpolation":"STEP", + "output":842 + }, + { + "input":454, + "interpolation":"STEP", + "output":843 + }, + { + "input":454, + "interpolation":"STEP", + "output":844 + }, + { + "input":454, + "interpolation":"STEP", + "output":845 + }, + { + "input":454, + "interpolation":"STEP", + "output":846 + }, + { + "input":454, + "interpolation":"STEP", + "output":847 + }, + { + "input":454, + "interpolation":"STEP", + "output":848 + }, + { + "input":454, + "interpolation":"STEP", + "output":849 + }, + { + "input":454, + "interpolation":"STEP", + "output":850 + }, + { + "input":454, + "interpolation":"STEP", + "output":851 + }, + { + "input":454, + "interpolation":"STEP", + "output":852 + }, + { + "input":454, + "interpolation":"STEP", + "output":853 + }, + { + "input":454, + "interpolation":"STEP", + "output":854 + }, + { + "input":454, + "interpolation":"STEP", + "output":855 + }, + { + "input":454, + "interpolation":"STEP", + "output":856 + }, + { + "input":454, + "interpolation":"STEP", + "output":857 + }, + { + "input":454, + "interpolation":"STEP", + "output":858 + }, + { + "input":454, + "interpolation":"STEP", + "output":859 + }, + { + "input":454, + "interpolation":"STEP", + "output":860 + }, + { + "input":454, + "interpolation":"STEP", + "output":861 + }, + { + "input":454, + "interpolation":"STEP", + "output":862 + }, + { + "input":454, + "interpolation":"STEP", + "output":863 + }, + { + "input":454, + "interpolation":"STEP", + "output":864 + }, + { + "input":454, + "interpolation":"STEP", + "output":865 + }, + { + "input":454, + "interpolation":"STEP", + "output":866 + }, + { + "input":454, + "interpolation":"STEP", + "output":867 + }, + { + "input":454, + "interpolation":"STEP", + "output":868 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"IdleBase", + "samplers":[ + { + "input":869, + "interpolation":"LINEAR", + "output":870 + }, + { + "input":871, + "interpolation":"STEP", + "output":872 + }, + { + "input":871, + "interpolation":"STEP", + "output":873 + }, + { + "input":871, + "interpolation":"STEP", + "output":874 + }, + { + "input":871, + "interpolation":"STEP", + "output":875 + }, + { + "input":871, + "interpolation":"STEP", + "output":876 + }, + { + "input":871, + "interpolation":"STEP", + "output":877 + }, + { + "input":871, + "interpolation":"STEP", + "output":878 + }, + { + "input":871, + "interpolation":"STEP", + "output":879 + }, + { + "input":871, + "interpolation":"STEP", + "output":880 + }, + { + "input":871, + "interpolation":"STEP", + "output":881 + }, + { + "input":871, + "interpolation":"STEP", + "output":882 + }, + { + "input":871, + "interpolation":"STEP", + "output":883 + }, + { + "input":871, + "interpolation":"STEP", + "output":884 + }, + { + "input":871, + "interpolation":"STEP", + "output":885 + }, + { + "input":871, + "interpolation":"STEP", + "output":886 + }, + { + "input":871, + "interpolation":"STEP", + "output":887 + }, + { + "input":871, + "interpolation":"STEP", + "output":888 + }, + { + "input":871, + "interpolation":"STEP", + "output":889 + }, + { + "input":871, + "interpolation":"STEP", + "output":890 + }, + { + "input":871, + "interpolation":"STEP", + "output":891 + }, + { + "input":871, + "interpolation":"STEP", + "output":892 + }, + { + "input":871, + "interpolation":"STEP", + "output":893 + }, + { + "input":871, + "interpolation":"STEP", + "output":894 + }, + { + "input":871, + "interpolation":"STEP", + "output":895 + }, + { + "input":871, + "interpolation":"STEP", + "output":896 + }, + { + "input":871, + "interpolation":"STEP", + "output":897 + }, + { + "input":871, + "interpolation":"STEP", + "output":898 + }, + { + "input":871, + "interpolation":"STEP", + "output":899 + }, + { + "input":871, + "interpolation":"STEP", + "output":900 + }, + { + "input":871, + "interpolation":"STEP", + "output":901 + }, + { + "input":871, + "interpolation":"STEP", + "output":902 + }, + { + "input":871, + "interpolation":"STEP", + "output":903 + }, + { + "input":871, + "interpolation":"STEP", + "output":904 + }, + { + "input":871, + "interpolation":"STEP", + "output":905 + }, + { + "input":871, + "interpolation":"STEP", + "output":906 + }, + { + "input":871, + "interpolation":"STEP", + "output":907 + }, + { + "input":871, + "interpolation":"STEP", + "output":908 + }, + { + "input":871, + "interpolation":"STEP", + "output":909 + }, + { + "input":871, + "interpolation":"STEP", + "output":910 + }, + { + "input":871, + "interpolation":"STEP", + "output":911 + }, + { + "input":871, + "interpolation":"STEP", + "output":912 + }, + { + "input":871, + "interpolation":"STEP", + "output":913 + }, + { + "input":871, + "interpolation":"STEP", + "output":914 + }, + { + "input":871, + "interpolation":"STEP", + "output":915 + }, + { + "input":871, + "interpolation":"STEP", + "output":916 + }, + { + "input":871, + "interpolation":"STEP", + "output":917 + }, + { + "input":871, + "interpolation":"STEP", + "output":918 + }, + { + "input":871, + "interpolation":"STEP", + "output":919 + }, + { + "input":871, + "interpolation":"STEP", + "output":920 + }, + { + "input":871, + "interpolation":"STEP", + "output":921 + }, + { + "input":871, + "interpolation":"STEP", + "output":922 + }, + { + "input":871, + "interpolation":"STEP", + "output":923 + }, + { + "input":871, + "interpolation":"STEP", + "output":924 + }, + { + "input":871, + "interpolation":"STEP", + "output":925 + }, + { + "input":871, + "interpolation":"STEP", + "output":926 + }, + { + "input":871, + "interpolation":"STEP", + "output":927 + }, + { + "input":871, + "interpolation":"STEP", + "output":928 + }, + { + "input":871, + "interpolation":"STEP", + "output":929 + }, + { + "input":871, + "interpolation":"STEP", + "output":930 + }, + { + "input":871, + "interpolation":"STEP", + "output":931 + }, + { + "input":871, + "interpolation":"STEP", + "output":932 + }, + { + "input":871, + "interpolation":"STEP", + "output":933 + }, + { + "input":871, + "interpolation":"STEP", + "output":934 + }, + { + "input":871, + "interpolation":"STEP", + "output":935 + }, + { + "input":871, + "interpolation":"STEP", + "output":936 + }, + { + "input":871, + "interpolation":"STEP", + "output":937 + }, + { + "input":871, + "interpolation":"STEP", + "output":938 + }, + { + "input":871, + "interpolation":"STEP", + "output":939 + }, + { + "input":871, + "interpolation":"STEP", + "output":940 + }, + { + "input":871, + "interpolation":"STEP", + "output":941 + }, + { + "input":871, + "interpolation":"STEP", + "output":942 + }, + { + "input":871, + "interpolation":"STEP", + "output":943 + }, + { + "input":871, + "interpolation":"STEP", + "output":944 + }, + { + "input":871, + "interpolation":"STEP", + "output":945 + }, + { + "input":871, + "interpolation":"STEP", + "output":946 + }, + { + "input":871, + "interpolation":"STEP", + "output":947 + }, + { + "input":871, + "interpolation":"STEP", + "output":948 + }, + { + "input":871, + "interpolation":"STEP", + "output":949 + }, + { + "input":871, + "interpolation":"STEP", + "output":950 + }, + { + "input":871, + "interpolation":"STEP", + "output":951 + }, + { + "input":871, + "interpolation":"STEP", + "output":952 + }, + { + "input":871, + "interpolation":"STEP", + "output":953 + }, + { + "input":871, + "interpolation":"STEP", + "output":954 + }, + { + "input":871, + "interpolation":"STEP", + "output":955 + }, + { + "input":871, + "interpolation":"STEP", + "output":956 + }, + { + "input":871, + "interpolation":"STEP", + "output":957 + }, + { + "input":871, + "interpolation":"STEP", + "output":958 + }, + { + "input":871, + "interpolation":"STEP", + "output":959 + }, + { + "input":871, + "interpolation":"STEP", + "output":960 + }, + { + "input":871, + "interpolation":"STEP", + "output":961 + }, + { + "input":871, + "interpolation":"STEP", + "output":962 + }, + { + "input":871, + "interpolation":"STEP", + "output":963 + }, + { + "input":871, + "interpolation":"STEP", + "output":964 + }, + { + "input":871, + "interpolation":"STEP", + "output":965 + }, + { + "input":871, + "interpolation":"STEP", + "output":966 + }, + { + "input":871, + "interpolation":"STEP", + "output":967 + }, + { + "input":871, + "interpolation":"STEP", + "output":968 + }, + { + "input":871, + "interpolation":"STEP", + "output":969 + }, + { + "input":871, + "interpolation":"STEP", + "output":970 + }, + { + "input":871, + "interpolation":"STEP", + "output":971 + }, + { + "input":871, + "interpolation":"STEP", + "output":972 + }, + { + "input":871, + "interpolation":"STEP", + "output":973 + }, + { + "input":871, + "interpolation":"STEP", + "output":974 + }, + { + "input":871, + "interpolation":"STEP", + "output":975 + }, + { + "input":871, + "interpolation":"STEP", + "output":976 + }, + { + "input":871, + "interpolation":"STEP", + "output":977 + }, + { + "input":871, + "interpolation":"STEP", + "output":978 + }, + { + "input":871, + "interpolation":"STEP", + "output":979 + }, + { + "input":871, + "interpolation":"STEP", + "output":980 + }, + { + "input":871, + "interpolation":"STEP", + "output":981 + }, + { + "input":871, + "interpolation":"STEP", + "output":982 + }, + { + "input":871, + "interpolation":"STEP", + "output":983 + }, + { + "input":871, + "interpolation":"STEP", + "output":984 + }, + { + "input":871, + "interpolation":"STEP", + "output":985 + }, + { + "input":871, + "interpolation":"STEP", + "output":986 + }, + { + "input":871, + "interpolation":"STEP", + "output":987 + }, + { + "input":871, + "interpolation":"STEP", + "output":988 + }, + { + "input":871, + "interpolation":"STEP", + "output":989 + }, + { + "input":871, + "interpolation":"STEP", + "output":990 + }, + { + "input":871, + "interpolation":"STEP", + "output":991 + }, + { + "input":871, + "interpolation":"STEP", + "output":992 + }, + { + "input":871, + "interpolation":"STEP", + "output":993 + }, + { + "input":871, + "interpolation":"STEP", + "output":994 + }, + { + "input":871, + "interpolation":"STEP", + "output":995 + }, + { + "input":871, + "interpolation":"STEP", + "output":996 + }, + { + "input":871, + "interpolation":"STEP", + "output":997 + }, + { + "input":871, + "interpolation":"STEP", + "output":998 + }, + { + "input":871, + "interpolation":"STEP", + "output":999 + }, + { + "input":871, + "interpolation":"STEP", + "output":1000 + }, + { + "input":871, + "interpolation":"STEP", + "output":1001 + }, + { + "input":871, + "interpolation":"STEP", + "output":1002 + }, + { + "input":871, + "interpolation":"STEP", + "output":1003 + }, + { + "input":871, + "interpolation":"STEP", + "output":1004 + }, + { + "input":871, + "interpolation":"STEP", + "output":1005 + }, + { + "input":871, + "interpolation":"STEP", + "output":1006 + }, + { + "input":871, + "interpolation":"STEP", + "output":1007 + }, + { + "input":871, + "interpolation":"STEP", + "output":1008 + }, + { + "input":871, + "interpolation":"STEP", + "output":1009 + }, + { + "input":871, + "interpolation":"STEP", + "output":1010 + }, + { + "input":871, + "interpolation":"STEP", + "output":1011 + }, + { + "input":871, + "interpolation":"STEP", + "output":1012 + }, + { + "input":871, + "interpolation":"STEP", + "output":1013 + }, + { + "input":871, + "interpolation":"STEP", + "output":1014 + }, + { + "input":871, + "interpolation":"STEP", + "output":1015 + }, + { + "input":871, + "interpolation":"STEP", + "output":1016 + }, + { + "input":871, + "interpolation":"STEP", + "output":1017 + }, + { + "input":871, + "interpolation":"STEP", + "output":1018 + }, + { + "input":871, + "interpolation":"STEP", + "output":1019 + }, + { + "input":871, + "interpolation":"STEP", + "output":1020 + }, + { + "input":871, + "interpolation":"STEP", + "output":1021 + }, + { + "input":871, + "interpolation":"STEP", + "output":1022 + }, + { + "input":871, + "interpolation":"STEP", + "output":1023 + }, + { + "input":871, + "interpolation":"STEP", + "output":1024 + }, + { + "input":871, + "interpolation":"STEP", + "output":1025 + }, + { + "input":871, + "interpolation":"STEP", + "output":1026 + }, + { + "input":871, + "interpolation":"STEP", + "output":1027 + }, + { + "input":871, + "interpolation":"STEP", + "output":1028 + }, + { + "input":871, + "interpolation":"STEP", + "output":1029 + }, + { + "input":871, + "interpolation":"STEP", + "output":1030 + }, + { + "input":871, + "interpolation":"STEP", + "output":1031 + }, + { + "input":871, + "interpolation":"STEP", + "output":1032 + }, + { + "input":871, + "interpolation":"STEP", + "output":1033 + }, + { + "input":871, + "interpolation":"STEP", + "output":1034 + }, + { + "input":871, + "interpolation":"STEP", + "output":1035 + }, + { + "input":871, + "interpolation":"STEP", + "output":1036 + }, + { + "input":871, + "interpolation":"STEP", + "output":1037 + }, + { + "input":871, + "interpolation":"STEP", + "output":1038 + }, + { + "input":871, + "interpolation":"STEP", + "output":1039 + }, + { + "input":871, + "interpolation":"STEP", + "output":1040 + }, + { + "input":871, + "interpolation":"STEP", + "output":1041 + }, + { + "input":871, + "interpolation":"STEP", + "output":1042 + }, + { + "input":871, + "interpolation":"STEP", + "output":1043 + }, + { + "input":871, + "interpolation":"STEP", + "output":1044 + }, + { + "input":871, + "interpolation":"STEP", + "output":1045 + }, + { + "input":871, + "interpolation":"STEP", + "output":1046 + }, + { + "input":871, + "interpolation":"STEP", + "output":1047 + }, + { + "input":871, + "interpolation":"STEP", + "output":1048 + }, + { + "input":871, + "interpolation":"STEP", + "output":1049 + }, + { + "input":871, + "interpolation":"STEP", + "output":1050 + }, + { + "input":871, + "interpolation":"STEP", + "output":1051 + }, + { + "input":871, + "interpolation":"STEP", + "output":1052 + }, + { + "input":871, + "interpolation":"STEP", + "output":1053 + }, + { + "input":871, + "interpolation":"STEP", + "output":1054 + }, + { + "input":869, + "interpolation":"LINEAR", + "output":1055 + }, + { + "input":871, + "interpolation":"LINEAR", + "output":1056 + }, + { + "input":871, + "interpolation":"LINEAR", + "output":1057 + }, + { + "input":869, + "interpolation":"LINEAR", + "output":1058 + }, + { + "input":871, + "interpolation":"LINEAR", + "output":1059 + }, + { + "input":871, + "interpolation":"LINEAR", + "output":1060 + }, + { + "input":869, + "interpolation":"LINEAR", + "output":1061 + }, + { + "input":871, + "interpolation":"STEP", + "output":1062 + }, + { + "input":871, + "interpolation":"STEP", + "output":1063 + }, + { + "input":871, + "interpolation":"STEP", + "output":1064 + }, + { + "input":871, + "interpolation":"STEP", + "output":1065 + }, + { + "input":871, + "interpolation":"STEP", + "output":1066 + }, + { + "input":869, + "interpolation":"LINEAR", + "output":1067 + }, + { + "input":871, + "interpolation":"STEP", + "output":1068 + }, + { + "input":871, + "interpolation":"STEP", + "output":1069 + }, + { + "input":869, + "interpolation":"LINEAR", + "output":1070 + }, + { + "input":871, + "interpolation":"STEP", + "output":1071 + }, + { + "input":871, + "interpolation":"LINEAR", + "output":1072 + }, + { + "input":869, + "interpolation":"LINEAR", + "output":1073 + }, + { + "input":871, + "interpolation":"STEP", + "output":1074 + }, + { + "input":871, + "interpolation":"STEP", + "output":1075 + }, + { + "input":871, + "interpolation":"STEP", + "output":1076 + }, + { + "input":871, + "interpolation":"STEP", + "output":1077 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"IdleTop", + "samplers":[ + { + "input":1078, + "interpolation":"STEP", + "output":1079 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1080 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1081 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1082 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1083 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1084 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1085 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1087 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1088 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1089 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1090 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1091 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1092 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1093 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1094 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1095 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1096 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1097 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1098 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1099 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1100 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1101 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1102 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1103 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1104 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1105 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1106 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1107 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1108 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1109 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1110 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1111 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1112 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1113 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1114 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1115 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1116 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1117 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1118 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1119 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1120 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1121 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1122 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1123 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1124 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1125 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1126 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1127 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1128 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1129 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1130 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1131 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1132 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1133 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1134 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1135 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1136 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1137 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1138 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1139 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1140 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1141 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1142 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1143 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1144 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1145 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1146 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1147 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1148 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1149 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1150 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1151 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1152 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1153 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1154 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1155 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1156 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1157 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1158 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1159 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1160 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1161 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1162 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1163 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1164 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1165 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1166 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1167 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1168 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1169 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1170 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1171 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1172 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1173 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1174 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1175 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1176 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1177 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1178 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1179 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1180 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1181 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1182 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1183 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1184 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1185 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1186 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1187 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1188 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1189 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1190 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1191 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1192 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1193 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1194 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1195 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1196 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1197 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1198 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1199 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1200 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1201 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1202 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1203 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1204 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1205 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1206 + }, + { + "input":1086, + "interpolation":"LINEAR", + "output":1207 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1208 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1209 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1210 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1211 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1212 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1213 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1214 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1215 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1216 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1217 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1218 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1219 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1220 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1221 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1222 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1223 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1224 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1225 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1226 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1227 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1228 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1229 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1230 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1231 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1232 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1233 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1234 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1235 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1236 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1237 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1238 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1239 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1240 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1241 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1242 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1243 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1244 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1245 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1246 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1247 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1248 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1249 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1250 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1251 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1252 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1253 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1254 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1255 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1256 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1257 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1258 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1259 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1260 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1261 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1262 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1263 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1264 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1265 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1266 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1267 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1268 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1269 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1270 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1271 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1272 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1273 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1274 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1275 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1276 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1277 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1278 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1279 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1280 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1281 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1282 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1283 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1284 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1285 + }, + { + "input":1078, + "interpolation":"STEP", + "output":1286 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"JumpEnd", + "samplers":[ + { + "input":1287, + "interpolation":"LINEAR", + "output":1288 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1290 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1291 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1292 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1293 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1294 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1295 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1296 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1297 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1298 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1299 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1300 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1301 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1302 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1303 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1304 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1305 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1306 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1307 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1308 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1309 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1310 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1311 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1312 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1313 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1314 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1315 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1316 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1317 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1318 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1319 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1320 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1321 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1322 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1323 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1324 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1325 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1326 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1327 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1328 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1329 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1330 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1331 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1332 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1333 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1334 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1335 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1336 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1337 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1338 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1339 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1340 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1341 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1342 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1343 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1344 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1345 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1346 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1347 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1348 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1349 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1350 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1351 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1352 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1353 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1354 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1355 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1356 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1357 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1358 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1359 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1360 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1361 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1362 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1363 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1364 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1365 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1366 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1367 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1368 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1369 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1370 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1371 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1372 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1373 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1374 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1375 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1376 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1377 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1378 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1379 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1380 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1381 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1382 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1383 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1384 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1385 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1386 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1387 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1388 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1389 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1390 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1391 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1392 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1393 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1394 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1395 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1396 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1397 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1398 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1399 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1400 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1401 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1402 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1403 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1404 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1405 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1406 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1407 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1408 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1409 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1410 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1411 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1412 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1413 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1414 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1415 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1416 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1417 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1418 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1419 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1420 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1421 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1422 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1423 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1424 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1425 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1426 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1427 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1428 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1429 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1430 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1431 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1432 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1433 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1434 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1435 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1436 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1437 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1438 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1439 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1440 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1441 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1442 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1443 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1444 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1445 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1446 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1447 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1448 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1449 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1450 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1451 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1452 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1453 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1454 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1455 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1456 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1457 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1458 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1459 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1460 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1461 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1462 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1463 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1464 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1465 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1466 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1467 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1468 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1469 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1470 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1471 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1472 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1473 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1474 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1475 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1476 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1477 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1478 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1479 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1480 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1481 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1482 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1483 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1484 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1485 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1486 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1487 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1488 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1489 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1490 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1491 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1492 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1493 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1494 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1495 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"JumpLoop", + "samplers":[ + { + "input":1496, + "interpolation":"STEP", + "output":1497 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1498 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1499 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1500 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1501 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1502 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1503 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1504 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1505 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1506 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1507 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1508 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1509 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1510 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1511 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1512 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1514 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1515 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1516 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1517 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1518 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1519 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1520 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1521 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1522 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1523 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1524 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1525 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1526 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1527 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1528 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1529 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1530 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1531 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1532 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1533 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1534 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1535 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1536 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1537 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1538 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1539 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1540 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1541 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1542 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1543 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1544 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1545 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1546 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1547 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1548 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1549 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1550 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1551 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1552 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1553 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1554 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1555 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1556 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1557 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1558 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1559 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1560 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1561 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1562 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1563 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1564 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1565 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1566 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1567 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1568 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1569 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1570 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1571 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1572 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1573 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1574 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1575 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1576 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1577 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1578 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1579 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1580 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1581 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1582 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1583 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1584 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1585 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1586 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1587 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1588 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1589 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1590 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1591 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1592 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1593 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1594 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1595 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1596 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1597 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1598 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1599 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1600 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1601 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1602 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1603 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1604 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1605 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1606 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1607 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1608 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1609 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1610 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1611 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1612 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1613 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1614 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1615 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1616 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1617 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1618 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1619 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1620 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1621 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1622 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1623 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1624 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1625 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1626 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1627 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1628 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1629 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1630 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1631 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1632 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1633 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1634 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1635 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1636 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1637 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1638 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1639 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1640 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1641 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1642 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1643 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1644 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1645 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1646 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1647 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1648 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1649 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1650 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1651 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1652 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1653 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1654 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1655 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1656 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1657 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1658 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1659 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1660 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1661 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1662 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1663 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1664 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1665 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1666 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1667 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1668 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1669 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1670 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1671 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1672 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1673 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1674 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1675 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1676 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1677 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1678 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1679 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1680 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1681 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1682 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1683 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1684 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1685 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1686 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1687 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1688 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1689 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1690 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1691 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1692 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1693 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1694 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1695 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1696 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1697 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1698 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1699 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1700 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1701 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1702 + }, + { + "input":1513, + "interpolation":"LINEAR", + "output":1703 + }, + { + "input":1496, + "interpolation":"STEP", + "output":1704 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"JumpStart", + "samplers":[ + { + "input":1287, + "interpolation":"LINEAR", + "output":1705 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1706 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1707 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1708 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1709 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1710 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1711 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1712 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1713 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1714 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1715 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1716 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1717 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1718 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1719 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1720 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1721 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1722 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1723 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1724 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1725 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1726 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1727 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1728 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1729 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1730 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1731 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1732 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1733 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1734 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1735 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1736 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1737 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1738 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1739 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1740 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1741 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1742 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1743 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1744 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1745 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1746 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1747 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1748 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1749 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1750 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1751 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1752 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1753 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1754 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1755 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1756 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1757 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1758 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1759 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1760 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1761 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1762 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1763 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1764 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1765 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1766 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1767 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1768 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1769 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1770 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1771 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1772 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1773 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1774 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1775 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1776 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1777 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1778 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1779 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1780 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1781 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1782 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1783 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1784 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1785 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1786 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1787 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1788 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1789 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1790 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1791 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1792 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1793 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1794 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1795 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1796 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1797 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1798 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1799 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1800 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1801 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1802 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1803 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1804 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1805 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1806 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1807 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1808 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1809 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1810 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1811 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1812 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1813 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1814 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1815 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1816 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1817 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1818 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1819 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1820 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1821 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1822 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1823 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1824 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1825 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1826 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1827 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1828 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1829 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1830 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1831 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1832 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1833 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1834 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1835 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1836 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1837 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1838 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1839 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1840 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1841 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1842 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1843 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1844 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1845 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1846 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1847 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1848 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1849 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1850 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1851 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1852 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1853 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1854 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1855 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1856 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1857 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1858 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1859 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1860 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1861 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1862 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1863 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1864 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1865 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1866 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1867 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1868 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1869 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1870 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1871 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1872 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1873 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1874 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1875 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1876 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1877 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1878 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1879 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1880 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1881 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1882 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1883 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1884 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1885 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1886 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1887 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1888 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1889 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1890 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1891 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1892 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1893 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1894 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1895 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1896 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1897 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1898 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1899 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1900 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1901 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1902 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1903 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1904 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1905 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1906 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1907 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1908 + }, + { + "input":1289, + "interpolation":"LINEAR", + "output":1909 + }, + { + "input":1287, + "interpolation":"LINEAR", + "output":1910 + }, + { + "input":1289, + "interpolation":"STEP", + "output":1911 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"RunBase", + "samplers":[ + { + "input":1912, + "interpolation":"LINEAR", + "output":1913 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1915 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1916 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1917 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1918 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1919 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1920 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1921 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1922 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1923 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1924 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1925 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1926 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1927 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1928 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1929 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1930 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1931 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1932 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1933 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1934 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1935 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1936 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1937 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1938 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1939 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1940 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1941 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1942 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1943 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1944 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1945 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1946 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1947 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1948 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1949 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1950 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1951 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1952 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1953 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1954 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1955 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1956 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1957 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1958 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1959 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1960 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1961 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1962 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1963 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1964 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1965 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1966 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1967 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1968 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1969 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1970 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1971 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1972 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1973 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1974 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1975 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1976 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1977 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1978 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1979 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1980 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1981 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1982 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1983 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1984 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1985 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1986 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1987 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1988 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1989 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1990 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1991 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1992 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1993 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1994 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1995 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1996 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1997 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1998 + }, + { + "input":1914, + "interpolation":"STEP", + "output":1999 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2000 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2001 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2002 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2003 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2004 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2005 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2006 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2007 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2008 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2009 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2010 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2011 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2012 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2013 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2014 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2015 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2016 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2017 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2018 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2019 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2020 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2021 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2022 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2023 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2024 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2025 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2026 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2027 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2028 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2029 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2030 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2031 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2032 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2033 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2034 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2035 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2036 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2037 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2038 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2039 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2040 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2041 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2042 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2043 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2044 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2045 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2046 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2047 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2048 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2049 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2050 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2051 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2052 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2053 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2054 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2055 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2056 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2057 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2058 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2059 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2060 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2061 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2062 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2063 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2064 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2065 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2066 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2067 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2068 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2069 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2070 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2071 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2072 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2073 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2074 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2075 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2076 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2077 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2078 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2079 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2080 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2081 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2082 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2083 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2084 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2085 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2086 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2087 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2088 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2089 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2090 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2091 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2092 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2093 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2094 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2095 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2096 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2097 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2098 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2099 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2100 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2101 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2102 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2103 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2104 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2105 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2106 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2107 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2108 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2109 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2110 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2111 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2112 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2113 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2114 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2115 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2116 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2117 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2118 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2119 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2120 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"RunTop", + "samplers":[ + { + "input":1914, + "interpolation":"STEP", + "output":2121 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2122 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2123 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2124 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2125 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2126 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2127 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2128 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2129 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2130 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2131 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2132 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2133 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2134 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2135 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2136 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2137 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2138 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2139 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2140 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2141 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2142 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2143 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2144 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2145 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2146 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2147 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2148 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2149 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2150 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2151 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2152 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2153 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2154 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2155 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2156 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2157 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2158 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2159 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2160 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2161 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2162 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2163 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2164 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2165 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2166 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2167 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2168 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2169 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2170 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2171 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2172 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2173 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2174 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2175 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2176 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2177 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2178 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2179 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2180 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2181 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2182 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2183 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2184 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2185 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2186 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2187 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2188 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2189 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2190 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2191 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2192 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2193 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2194 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2195 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2196 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2197 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2198 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2199 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2200 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2201 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2202 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2203 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2204 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2205 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2206 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2207 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2208 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2209 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2210 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2211 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2212 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2213 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2214 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2215 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2216 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2217 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2218 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2219 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2220 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2221 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2222 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2223 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2224 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2225 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2226 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2227 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2228 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2229 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2230 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2231 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2232 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2233 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2234 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2235 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2236 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2237 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2238 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2239 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2240 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2241 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2242 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2243 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2244 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2245 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2246 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2247 + }, + { + "input":1912, + "interpolation":"LINEAR", + "output":2248 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2249 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2250 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2251 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2252 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2253 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2254 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2255 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2256 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2257 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2258 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2259 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2260 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2261 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2262 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2263 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2264 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2265 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2266 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2267 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2268 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2269 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2270 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2271 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2272 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2273 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2274 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2275 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2276 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2277 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2278 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2279 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2280 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2281 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2282 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2283 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2284 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2285 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2286 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2287 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2288 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2289 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2290 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2291 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2292 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2293 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2294 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2295 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2296 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2297 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2298 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2299 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2300 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2301 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2302 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2303 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2304 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2305 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2306 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2307 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2308 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2309 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2310 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2311 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2312 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2313 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2314 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2315 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2316 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2317 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2318 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2319 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2320 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2321 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2322 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2323 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2324 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2325 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2326 + }, + { + "input":1914, + "interpolation":"STEP", + "output":2327 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"SliceHorizontal", + "samplers":[ + { + "input":2328, + "interpolation":"STEP", + "output":2329 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2330 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2331 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2332 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2334 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2335 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2336 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2337 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2338 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2339 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2340 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2341 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2342 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2343 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2344 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2345 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2346 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2347 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2348 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2349 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2350 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2351 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2352 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2353 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2354 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2355 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2356 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2357 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2358 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2359 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2360 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2361 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2362 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2363 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2364 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2365 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2366 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2367 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2368 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2369 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2370 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2371 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2372 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2373 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2374 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2375 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2376 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2377 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2378 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2379 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2380 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2381 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2382 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2383 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2384 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2385 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2386 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2387 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2388 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2389 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2390 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2391 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2392 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2393 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2394 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2395 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2396 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2397 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2398 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2399 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2400 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2401 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2402 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2403 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2404 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2405 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2406 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2407 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2408 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2409 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2410 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2411 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2412 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2413 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2414 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2415 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2416 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2417 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2418 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2419 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2420 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2421 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2422 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2423 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2424 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2425 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2426 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2427 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2428 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2429 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2430 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2431 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2432 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2433 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2434 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2435 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2436 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2437 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2438 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2439 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2440 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2441 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2442 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2443 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2444 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2445 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2446 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2447 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2448 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2449 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2450 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2451 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2452 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2453 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2454 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2455 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2456 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2457 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2458 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2459 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2460 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2461 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2462 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2463 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2464 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2465 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2466 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2467 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2468 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2469 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2470 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2471 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2472 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2473 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2474 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2475 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2476 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2477 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2478 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2479 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2480 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2481 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2482 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2483 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2484 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2485 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2486 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2487 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2488 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2489 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2490 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2491 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2492 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2493 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2494 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2495 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2496 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2497 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2498 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2499 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2500 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2501 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2502 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2503 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2504 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2505 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2506 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2507 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2508 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2509 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2510 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2511 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2512 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2513 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2514 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2515 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2516 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2517 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2518 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2519 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2520 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2521 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2522 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2523 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2524 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2525 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2526 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2527 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2528 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2529 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2530 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2531 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2532 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2533 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2534 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2535 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2536 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"SliceVertical", + "samplers":[ + { + "input":2328, + "interpolation":"STEP", + "output":2537 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2538 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2539 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2540 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2541 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2542 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2543 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2544 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2545 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2546 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2547 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2548 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2549 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2550 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2551 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2552 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2553 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2554 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2555 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2556 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2557 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2558 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2559 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2560 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2561 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2562 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2563 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2564 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2565 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2566 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2567 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2568 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2569 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2570 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2571 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2572 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2573 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2574 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2575 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2576 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2577 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2578 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2579 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2580 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2581 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2582 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2583 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2584 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2585 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2586 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2587 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2588 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2589 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2590 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2591 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2592 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2593 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2594 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2595 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2596 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2597 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2598 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2599 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2600 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2601 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2602 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2603 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2604 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2605 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2606 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2607 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2608 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2609 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2610 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2611 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2612 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2613 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2614 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2615 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2616 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2617 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2618 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2619 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2620 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2621 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2622 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2623 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2624 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2625 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2626 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2627 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2628 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2629 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2630 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2631 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2632 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2633 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2634 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2635 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2636 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2637 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2638 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2639 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2640 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2641 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2642 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2643 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2644 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2645 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2646 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2647 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2648 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2649 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2650 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2651 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2652 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2653 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2654 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2655 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2656 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2657 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2658 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2659 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2660 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2661 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2662 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2663 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2664 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2665 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2666 + }, + { + "input":2333, + "interpolation":"LINEAR", + "output":2667 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2668 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2669 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2670 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2671 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2672 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2673 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2674 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2675 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2676 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2677 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2678 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2679 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2680 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2681 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2682 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2683 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2684 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2685 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2686 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2687 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2688 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2689 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2690 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2691 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2692 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2693 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2694 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2695 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2696 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2697 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2698 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2699 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2700 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2701 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2702 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2703 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2704 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2705 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2706 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2707 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2708 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2709 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2710 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2711 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2712 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2713 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2714 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2715 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2716 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2717 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2718 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2719 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2720 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2721 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2722 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2723 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2724 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2725 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2726 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2727 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2728 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2729 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2730 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2731 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2732 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2733 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2734 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2735 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2736 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2737 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2738 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2739 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2740 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2741 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2742 + }, + { + "input":2328, + "interpolation":"STEP", + "output":2743 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"StandUpBack", + "samplers":[ + { + "input":2744, + "interpolation":"LINEAR", + "output":2745 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2746 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2748 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2749 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2750 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2751 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2752 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2753 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2754 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2755 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2756 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2757 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2758 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2759 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2760 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2761 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2762 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2763 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2764 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2765 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2766 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2767 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2768 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2769 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2770 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2771 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2772 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2773 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2774 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2775 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2776 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2777 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2778 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2779 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2780 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2781 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2782 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2783 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2784 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2785 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2786 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2787 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2788 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2789 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2790 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2791 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2792 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2793 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2794 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2795 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2796 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2797 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2798 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2799 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2800 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2801 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2802 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2803 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2804 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2805 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2806 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2807 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2808 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2809 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2810 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2811 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2812 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2813 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2814 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2815 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2816 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2817 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2818 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2819 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2820 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2821 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2822 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2823 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2824 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2825 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2826 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2827 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2828 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2829 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2830 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2831 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2832 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2833 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2834 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2835 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2836 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2837 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2838 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2839 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2840 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2841 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2842 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2843 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2844 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2845 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2846 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2847 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2848 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2849 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2850 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2851 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2852 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2853 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2854 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2855 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2856 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2857 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2858 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2859 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2860 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2861 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2862 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2863 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2864 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2865 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2866 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2867 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2868 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2869 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2870 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2871 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2872 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2873 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2874 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2875 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2876 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2877 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2878 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2879 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2880 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2881 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2882 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2883 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2884 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2885 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2886 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2887 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2888 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2889 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2890 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2891 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2892 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2893 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2894 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2895 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2896 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2897 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2898 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2899 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2900 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2901 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2902 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2903 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2904 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2905 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2906 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2907 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2908 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2909 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2910 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2911 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2912 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2913 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2914 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2915 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2916 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2917 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2918 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2919 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2920 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2921 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2922 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2923 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2924 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2925 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2926 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2927 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2928 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2929 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2930 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2931 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2932 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2933 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2934 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2935 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2936 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2937 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2938 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2939 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2940 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2941 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2942 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2943 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2944 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2945 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2946 + }, + { + "input":2747, + "interpolation":"LINEAR", + "output":2947 + }, + { + "input":2744, + "interpolation":"LINEAR", + "output":2948 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2949 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2950 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2951 + }, + { + "input":2747, + "interpolation":"STEP", + "output":2952 + } + ] + }, + { + "channels":[ + { + "sampler":0, + "target":{ + "node":68, + "path":"translation" + } + }, + { + "sampler":1, + "target":{ + "node":68, + "path":"rotation" + } + }, + { + "sampler":2, + "target":{ + "node":68, + "path":"scale" + } + }, + { + "sampler":3, + "target":{ + "node":59, + "path":"translation" + } + }, + { + "sampler":4, + "target":{ + "node":59, + "path":"rotation" + } + }, + { + "sampler":5, + "target":{ + "node":59, + "path":"scale" + } + }, + { + "sampler":6, + "target":{ + "node":58, + "path":"translation" + } + }, + { + "sampler":7, + "target":{ + "node":58, + "path":"rotation" + } + }, + { + "sampler":8, + "target":{ + "node":58, + "path":"scale" + } + }, + { + "sampler":9, + "target":{ + "node":57, + "path":"translation" + } + }, + { + "sampler":10, + "target":{ + "node":57, + "path":"rotation" + } + }, + { + "sampler":11, + "target":{ + "node":57, + "path":"scale" + } + }, + { + "sampler":12, + "target":{ + "node":19, + "path":"translation" + } + }, + { + "sampler":13, + "target":{ + "node":19, + "path":"rotation" + } + }, + { + "sampler":14, + "target":{ + "node":19, + "path":"scale" + } + }, + { + "sampler":15, + "target":{ + "node":18, + "path":"translation" + } + }, + { + "sampler":16, + "target":{ + "node":18, + "path":"rotation" + } + }, + { + "sampler":17, + "target":{ + "node":18, + "path":"scale" + } + }, + { + "sampler":18, + "target":{ + "node":17, + "path":"translation" + } + }, + { + "sampler":19, + "target":{ + "node":17, + "path":"rotation" + } + }, + { + "sampler":20, + "target":{ + "node":17, + "path":"scale" + } + }, + { + "sampler":21, + "target":{ + "node":16, + "path":"translation" + } + }, + { + "sampler":22, + "target":{ + "node":16, + "path":"rotation" + } + }, + { + "sampler":23, + "target":{ + "node":16, + "path":"scale" + } + }, + { + "sampler":24, + "target":{ + "node":0, + "path":"translation" + } + }, + { + "sampler":25, + "target":{ + "node":0, + "path":"rotation" + } + }, + { + "sampler":26, + "target":{ + "node":0, + "path":"scale" + } + }, + { + "sampler":27, + "target":{ + "node":3, + "path":"translation" + } + }, + { + "sampler":28, + "target":{ + "node":3, + "path":"rotation" + } + }, + { + "sampler":29, + "target":{ + "node":3, + "path":"scale" + } + }, + { + "sampler":30, + "target":{ + "node":2, + "path":"translation" + } + }, + { + "sampler":31, + "target":{ + "node":2, + "path":"rotation" + } + }, + { + "sampler":32, + "target":{ + "node":2, + "path":"scale" + } + }, + { + "sampler":33, + "target":{ + "node":1, + "path":"translation" + } + }, + { + "sampler":34, + "target":{ + "node":1, + "path":"rotation" + } + }, + { + "sampler":35, + "target":{ + "node":1, + "path":"scale" + } + }, + { + "sampler":36, + "target":{ + "node":6, + "path":"translation" + } + }, + { + "sampler":37, + "target":{ + "node":6, + "path":"rotation" + } + }, + { + "sampler":38, + "target":{ + "node":6, + "path":"scale" + } + }, + { + "sampler":39, + "target":{ + "node":5, + "path":"translation" + } + }, + { + "sampler":40, + "target":{ + "node":5, + "path":"rotation" + } + }, + { + "sampler":41, + "target":{ + "node":5, + "path":"scale" + } + }, + { + "sampler":42, + "target":{ + "node":4, + "path":"translation" + } + }, + { + "sampler":43, + "target":{ + "node":4, + "path":"rotation" + } + }, + { + "sampler":44, + "target":{ + "node":4, + "path":"scale" + } + }, + { + "sampler":45, + "target":{ + "node":9, + "path":"translation" + } + }, + { + "sampler":46, + "target":{ + "node":9, + "path":"rotation" + } + }, + { + "sampler":47, + "target":{ + "node":9, + "path":"scale" + } + }, + { + "sampler":48, + "target":{ + "node":8, + "path":"translation" + } + }, + { + "sampler":49, + "target":{ + "node":8, + "path":"rotation" + } + }, + { + "sampler":50, + "target":{ + "node":8, + "path":"scale" + } + }, + { + "sampler":51, + "target":{ + "node":7, + "path":"translation" + } + }, + { + "sampler":52, + "target":{ + "node":7, + "path":"rotation" + } + }, + { + "sampler":53, + "target":{ + "node":7, + "path":"scale" + } + }, + { + "sampler":54, + "target":{ + "node":12, + "path":"translation" + } + }, + { + "sampler":55, + "target":{ + "node":12, + "path":"rotation" + } + }, + { + "sampler":56, + "target":{ + "node":12, + "path":"scale" + } + }, + { + "sampler":57, + "target":{ + "node":11, + "path":"translation" + } + }, + { + "sampler":58, + "target":{ + "node":11, + "path":"rotation" + } + }, + { + "sampler":59, + "target":{ + "node":11, + "path":"scale" + } + }, + { + "sampler":60, + "target":{ + "node":10, + "path":"translation" + } + }, + { + "sampler":61, + "target":{ + "node":10, + "path":"rotation" + } + }, + { + "sampler":62, + "target":{ + "node":10, + "path":"scale" + } + }, + { + "sampler":63, + "target":{ + "node":15, + "path":"translation" + } + }, + { + "sampler":64, + "target":{ + "node":15, + "path":"rotation" + } + }, + { + "sampler":65, + "target":{ + "node":15, + "path":"scale" + } + }, + { + "sampler":66, + "target":{ + "node":14, + "path":"translation" + } + }, + { + "sampler":67, + "target":{ + "node":14, + "path":"rotation" + } + }, + { + "sampler":68, + "target":{ + "node":14, + "path":"scale" + } + }, + { + "sampler":69, + "target":{ + "node":13, + "path":"translation" + } + }, + { + "sampler":70, + "target":{ + "node":13, + "path":"rotation" + } + }, + { + "sampler":71, + "target":{ + "node":13, + "path":"scale" + } + }, + { + "sampler":72, + "target":{ + "node":34, + "path":"translation" + } + }, + { + "sampler":73, + "target":{ + "node":34, + "path":"rotation" + } + }, + { + "sampler":74, + "target":{ + "node":34, + "path":"scale" + } + }, + { + "sampler":75, + "target":{ + "node":33, + "path":"translation" + } + }, + { + "sampler":76, + "target":{ + "node":33, + "path":"rotation" + } + }, + { + "sampler":77, + "target":{ + "node":33, + "path":"scale" + } + }, + { + "sampler":78, + "target":{ + "node":20, + "path":"translation" + } + }, + { + "sampler":79, + "target":{ + "node":20, + "path":"rotation" + } + }, + { + "sampler":80, + "target":{ + "node":20, + "path":"scale" + } + }, + { + "sampler":81, + "target":{ + "node":25, + "path":"translation" + } + }, + { + "sampler":82, + "target":{ + "node":25, + "path":"rotation" + } + }, + { + "sampler":83, + "target":{ + "node":25, + "path":"scale" + } + }, + { + "sampler":84, + "target":{ + "node":21, + "path":"translation" + } + }, + { + "sampler":85, + "target":{ + "node":21, + "path":"rotation" + } + }, + { + "sampler":86, + "target":{ + "node":21, + "path":"scale" + } + }, + { + "sampler":87, + "target":{ + "node":24, + "path":"translation" + } + }, + { + "sampler":88, + "target":{ + "node":24, + "path":"rotation" + } + }, + { + "sampler":89, + "target":{ + "node":24, + "path":"scale" + } + }, + { + "sampler":90, + "target":{ + "node":23, + "path":"translation" + } + }, + { + "sampler":91, + "target":{ + "node":23, + "path":"rotation" + } + }, + { + "sampler":92, + "target":{ + "node":23, + "path":"scale" + } + }, + { + "sampler":93, + "target":{ + "node":22, + "path":"translation" + } + }, + { + "sampler":94, + "target":{ + "node":22, + "path":"rotation" + } + }, + { + "sampler":95, + "target":{ + "node":22, + "path":"scale" + } + }, + { + "sampler":96, + "target":{ + "node":26, + "path":"translation" + } + }, + { + "sampler":97, + "target":{ + "node":26, + "path":"rotation" + } + }, + { + "sampler":98, + "target":{ + "node":26, + "path":"scale" + } + }, + { + "sampler":99, + "target":{ + "node":27, + "path":"translation" + } + }, + { + "sampler":100, + "target":{ + "node":27, + "path":"rotation" + } + }, + { + "sampler":101, + "target":{ + "node":27, + "path":"scale" + } + }, + { + "sampler":102, + "target":{ + "node":28, + "path":"translation" + } + }, + { + "sampler":103, + "target":{ + "node":28, + "path":"rotation" + } + }, + { + "sampler":104, + "target":{ + "node":28, + "path":"scale" + } + }, + { + "sampler":105, + "target":{ + "node":29, + "path":"translation" + } + }, + { + "sampler":106, + "target":{ + "node":29, + "path":"rotation" + } + }, + { + "sampler":107, + "target":{ + "node":29, + "path":"scale" + } + }, + { + "sampler":108, + "target":{ + "node":30, + "path":"translation" + } + }, + { + "sampler":109, + "target":{ + "node":30, + "path":"rotation" + } + }, + { + "sampler":110, + "target":{ + "node":30, + "path":"scale" + } + }, + { + "sampler":111, + "target":{ + "node":31, + "path":"translation" + } + }, + { + "sampler":112, + "target":{ + "node":31, + "path":"rotation" + } + }, + { + "sampler":113, + "target":{ + "node":31, + "path":"scale" + } + }, + { + "sampler":114, + "target":{ + "node":32, + "path":"translation" + } + }, + { + "sampler":115, + "target":{ + "node":32, + "path":"rotation" + } + }, + { + "sampler":116, + "target":{ + "node":32, + "path":"scale" + } + }, + { + "sampler":117, + "target":{ + "node":35, + "path":"translation" + } + }, + { + "sampler":118, + "target":{ + "node":35, + "path":"rotation" + } + }, + { + "sampler":119, + "target":{ + "node":35, + "path":"scale" + } + }, + { + "sampler":120, + "target":{ + "node":55, + "path":"translation" + } + }, + { + "sampler":121, + "target":{ + "node":55, + "path":"rotation" + } + }, + { + "sampler":122, + "target":{ + "node":55, + "path":"scale" + } + }, + { + "sampler":123, + "target":{ + "node":54, + "path":"translation" + } + }, + { + "sampler":124, + "target":{ + "node":54, + "path":"rotation" + } + }, + { + "sampler":125, + "target":{ + "node":54, + "path":"scale" + } + }, + { + "sampler":126, + "target":{ + "node":53, + "path":"translation" + } + }, + { + "sampler":127, + "target":{ + "node":53, + "path":"rotation" + } + }, + { + "sampler":128, + "target":{ + "node":53, + "path":"scale" + } + }, + { + "sampler":129, + "target":{ + "node":52, + "path":"translation" + } + }, + { + "sampler":130, + "target":{ + "node":52, + "path":"rotation" + } + }, + { + "sampler":131, + "target":{ + "node":52, + "path":"scale" + } + }, + { + "sampler":132, + "target":{ + "node":36, + "path":"translation" + } + }, + { + "sampler":133, + "target":{ + "node":36, + "path":"rotation" + } + }, + { + "sampler":134, + "target":{ + "node":36, + "path":"scale" + } + }, + { + "sampler":135, + "target":{ + "node":39, + "path":"translation" + } + }, + { + "sampler":136, + "target":{ + "node":39, + "path":"rotation" + } + }, + { + "sampler":137, + "target":{ + "node":39, + "path":"scale" + } + }, + { + "sampler":138, + "target":{ + "node":38, + "path":"translation" + } + }, + { + "sampler":139, + "target":{ + "node":38, + "path":"rotation" + } + }, + { + "sampler":140, + "target":{ + "node":38, + "path":"scale" + } + }, + { + "sampler":141, + "target":{ + "node":37, + "path":"translation" + } + }, + { + "sampler":142, + "target":{ + "node":37, + "path":"rotation" + } + }, + { + "sampler":143, + "target":{ + "node":37, + "path":"scale" + } + }, + { + "sampler":144, + "target":{ + "node":42, + "path":"translation" + } + }, + { + "sampler":145, + "target":{ + "node":42, + "path":"rotation" + } + }, + { + "sampler":146, + "target":{ + "node":42, + "path":"scale" + } + }, + { + "sampler":147, + "target":{ + "node":41, + "path":"translation" + } + }, + { + "sampler":148, + "target":{ + "node":41, + "path":"rotation" + } + }, + { + "sampler":149, + "target":{ + "node":41, + "path":"scale" + } + }, + { + "sampler":150, + "target":{ + "node":40, + "path":"translation" + } + }, + { + "sampler":151, + "target":{ + "node":40, + "path":"rotation" + } + }, + { + "sampler":152, + "target":{ + "node":40, + "path":"scale" + } + }, + { + "sampler":153, + "target":{ + "node":45, + "path":"translation" + } + }, + { + "sampler":154, + "target":{ + "node":45, + "path":"rotation" + } + }, + { + "sampler":155, + "target":{ + "node":45, + "path":"scale" + } + }, + { + "sampler":156, + "target":{ + "node":44, + "path":"translation" + } + }, + { + "sampler":157, + "target":{ + "node":44, + "path":"rotation" + } + }, + { + "sampler":158, + "target":{ + "node":44, + "path":"scale" + } + }, + { + "sampler":159, + "target":{ + "node":43, + "path":"translation" + } + }, + { + "sampler":160, + "target":{ + "node":43, + "path":"rotation" + } + }, + { + "sampler":161, + "target":{ + "node":43, + "path":"scale" + } + }, + { + "sampler":162, + "target":{ + "node":48, + "path":"translation" + } + }, + { + "sampler":163, + "target":{ + "node":48, + "path":"rotation" + } + }, + { + "sampler":164, + "target":{ + "node":48, + "path":"scale" + } + }, + { + "sampler":165, + "target":{ + "node":47, + "path":"translation" + } + }, + { + "sampler":166, + "target":{ + "node":47, + "path":"rotation" + } + }, + { + "sampler":167, + "target":{ + "node":47, + "path":"scale" + } + }, + { + "sampler":168, + "target":{ + "node":46, + "path":"translation" + } + }, + { + "sampler":169, + "target":{ + "node":46, + "path":"rotation" + } + }, + { + "sampler":170, + "target":{ + "node":46, + "path":"scale" + } + }, + { + "sampler":171, + "target":{ + "node":51, + "path":"translation" + } + }, + { + "sampler":172, + "target":{ + "node":51, + "path":"rotation" + } + }, + { + "sampler":173, + "target":{ + "node":51, + "path":"scale" + } + }, + { + "sampler":174, + "target":{ + "node":50, + "path":"translation" + } + }, + { + "sampler":175, + "target":{ + "node":50, + "path":"rotation" + } + }, + { + "sampler":176, + "target":{ + "node":50, + "path":"scale" + } + }, + { + "sampler":177, + "target":{ + "node":49, + "path":"translation" + } + }, + { + "sampler":178, + "target":{ + "node":49, + "path":"rotation" + } + }, + { + "sampler":179, + "target":{ + "node":49, + "path":"scale" + } + }, + { + "sampler":180, + "target":{ + "node":56, + "path":"translation" + } + }, + { + "sampler":181, + "target":{ + "node":56, + "path":"rotation" + } + }, + { + "sampler":182, + "target":{ + "node":56, + "path":"scale" + } + }, + { + "sampler":183, + "target":{ + "node":63, + "path":"translation" + } + }, + { + "sampler":184, + "target":{ + "node":63, + "path":"rotation" + } + }, + { + "sampler":185, + "target":{ + "node":63, + "path":"scale" + } + }, + { + "sampler":186, + "target":{ + "node":62, + "path":"translation" + } + }, + { + "sampler":187, + "target":{ + "node":62, + "path":"rotation" + } + }, + { + "sampler":188, + "target":{ + "node":62, + "path":"scale" + } + }, + { + "sampler":189, + "target":{ + "node":61, + "path":"translation" + } + }, + { + "sampler":190, + "target":{ + "node":61, + "path":"rotation" + } + }, + { + "sampler":191, + "target":{ + "node":61, + "path":"scale" + } + }, + { + "sampler":192, + "target":{ + "node":60, + "path":"translation" + } + }, + { + "sampler":193, + "target":{ + "node":60, + "path":"rotation" + } + }, + { + "sampler":194, + "target":{ + "node":60, + "path":"scale" + } + }, + { + "sampler":195, + "target":{ + "node":67, + "path":"translation" + } + }, + { + "sampler":196, + "target":{ + "node":67, + "path":"rotation" + } + }, + { + "sampler":197, + "target":{ + "node":67, + "path":"scale" + } + }, + { + "sampler":198, + "target":{ + "node":66, + "path":"translation" + } + }, + { + "sampler":199, + "target":{ + "node":66, + "path":"rotation" + } + }, + { + "sampler":200, + "target":{ + "node":66, + "path":"scale" + } + }, + { + "sampler":201, + "target":{ + "node":65, + "path":"translation" + } + }, + { + "sampler":202, + "target":{ + "node":65, + "path":"rotation" + } + }, + { + "sampler":203, + "target":{ + "node":65, + "path":"scale" + } + }, + { + "sampler":204, + "target":{ + "node":64, + "path":"translation" + } + }, + { + "sampler":205, + "target":{ + "node":64, + "path":"rotation" + } + }, + { + "sampler":206, + "target":{ + "node":64, + "path":"scale" + } + } + ], + "name":"StandUpFront", + "samplers":[ + { + "input":2953, + "interpolation":"LINEAR", + "output":2954 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":2955 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2957 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":2958 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":2959 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2960 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":2961 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":2962 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2963 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2964 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2965 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2966 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":2967 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":2968 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2969 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":2970 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":2971 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":2972 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":2973 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":2974 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":2975 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":2976 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":2977 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2978 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2979 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2980 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2981 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2982 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2983 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2984 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2985 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2986 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2987 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2988 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2989 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2990 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2991 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2992 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2993 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2994 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2995 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2996 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2997 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2998 + }, + { + "input":2956, + "interpolation":"STEP", + "output":2999 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3000 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3001 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3002 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3003 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3004 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3005 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3006 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3007 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3008 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3009 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3010 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3011 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3012 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3013 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3014 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3015 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3016 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3017 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3018 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3019 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3020 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3021 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3022 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3023 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3024 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3025 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3026 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3027 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":3028 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3029 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3030 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":3031 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3032 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3033 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3034 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3035 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3036 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3037 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3038 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3039 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3040 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3041 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3042 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3043 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3044 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3045 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3046 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3047 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3048 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3049 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3050 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3051 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3052 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3053 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3054 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3055 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3056 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3057 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3058 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3059 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3060 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3061 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3062 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3063 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3064 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3065 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3066 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3067 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3068 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3069 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3070 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3071 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3072 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3073 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3074 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3075 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3076 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3077 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3078 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":3079 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3080 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3081 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":3082 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3083 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3084 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":3085 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3086 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3087 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3088 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3089 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3090 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3091 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3092 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3093 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3094 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3095 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3096 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3097 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3098 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3099 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3100 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3101 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3102 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3103 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3104 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3105 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3106 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3107 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3108 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3109 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3110 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3111 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3112 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3113 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3114 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3115 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3116 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3117 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3118 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3119 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3120 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3121 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3122 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3123 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3124 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3125 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3126 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3127 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3128 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3129 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3130 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3131 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3132 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3133 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3134 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3135 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3136 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3137 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3138 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":3139 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3140 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3141 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":3142 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3143 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3144 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":3145 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3146 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3147 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3148 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3149 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3150 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":3151 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3152 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3153 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":3154 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3155 + }, + { + "input":2956, + "interpolation":"LINEAR", + "output":3156 + }, + { + "input":2953, + "interpolation":"LINEAR", + "output":3157 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3158 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3159 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3160 + }, + { + "input":2956, + "interpolation":"STEP", + "output":3161 + } + ] + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Sinbad/Clothes", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"Sinbad/Eyes", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"Sinbad/Body", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":2 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"Sinbad/Gold", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":3 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"Sinbad/Teeth", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":4 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"Sinbad/Sheaths", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":5 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"Sinbad/Spikes", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":6 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Sinbad", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "JOINTS_0":2, + "WEIGHTS_0":3 + }, + "indices":4, + "material":0 + }, + { + "attributes":{ + "POSITION":5, + "NORMAL":6, + "JOINTS_0":7, + "WEIGHTS_0":8 + }, + "indices":9, + "material":1 + }, + { + "attributes":{ + "POSITION":10, + "NORMAL":11, + "JOINTS_0":12, + "WEIGHTS_0":13 + }, + "indices":14, + "material":2 + }, + { + "attributes":{ + "POSITION":15, + "NORMAL":16, + "JOINTS_0":17, + "WEIGHTS_0":18 + }, + "indices":19, + "material":3 + }, + { + "attributes":{ + "POSITION":20, + "NORMAL":21, + "JOINTS_0":22, + "WEIGHTS_0":23 + }, + "indices":24, + "material":4 + }, + { + "attributes":{ + "POSITION":25, + "NORMAL":26, + "JOINTS_0":27, + "WEIGHTS_0":28 + }, + "indices":29, + "material":5 + }, + { + "attributes":{ + "POSITION":30, + "NORMAL":31, + "JOINTS_0":32, + "WEIGHTS_0":33 + }, + "indices":34, + "material":6 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":1 + }, + { + "sampler":0, + "source":2 + }, + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"sinbad_clothes", + "uri":"sinbad_clothes.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"sinbad_body", + "uri":"sinbad_body.jpg" + }, + { + "mimeType":"image/jpeg", + "name":"sinbad_sword", + "uri":"sinbad_sword.jpg" + } + ], + "skins":[ + { + "inverseBindMatrices":35, + "joints":[ + 68, + 59, + 58, + 57, + 19, + 18, + 17, + 16, + 0, + 3, + 2, + 1, + 6, + 5, + 4, + 9, + 8, + 7, + 12, + 11, + 10, + 15, + 14, + 13, + 34, + 33, + 20, + 25, + 21, + 24, + 23, + 22, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 35, + 55, + 54, + 53, + 52, + 36, + 39, + 38, + 37, + 42, + 41, + 40, + 45, + 44, + 43, + 48, + 47, + 46, + 51, + 50, + 49, + 56, + 63, + 62, + 61, + 60, + 67, + 66, + 65, + 64 + ], + "name":"Sinbad" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":1535, + "max":[ + 3.8616418838500977, + 3.965691089630127, + 1.4896960258483887 + ], + "min":[ + -3.8616418838500977, + -4.9656901359558105, + -1.0200309753417969 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":1535, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5121, + "count":1535, + "type":"VEC4" + }, + { + "bufferView":3, + "componentType":5126, + "count":1535, + "type":"VEC4" + }, + { + "bufferView":4, + "componentType":5123, + "count":5358, + "type":"SCALAR" + }, + { + "bufferView":5, + "componentType":5126, + "count":292, + "max":[ + 0.4869230091571808, + 3.5960280895233154, + 1.054137945175171 + ], + "min":[ + -0.4869230091571808, + 3.1431729793548584, + 0.6013339757919312 + ], + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":292, + "type":"VEC3" + }, + { + "bufferView":7, + "componentType":5121, + "count":292, + "type":"VEC4" + }, + { + "bufferView":8, + "componentType":5126, + "count":292, + "type":"VEC4" + }, + { + "bufferView":9, + "componentType":5123, + "count":1584, + "type":"SCALAR" + }, + { + "bufferView":10, + "componentType":5126, + "count":1888, + "max":[ + 4.444268226623535, + 3.8971939086914062, + 2.3484959602355957 + ], + "min":[ + -4.444268226623535, + -0.8759629726409912, + -0.9376429915428162 + ], + "type":"VEC3" + }, + { + "bufferView":11, + "componentType":5126, + "count":1888, + "type":"VEC3" + }, + { + "bufferView":12, + "componentType":5121, + "count":1888, + "type":"VEC4" + }, + { + "bufferView":13, + "componentType":5126, + "count":1888, + "type":"VEC4" + }, + { + "bufferView":14, + "componentType":5123, + "count":8808, + "type":"SCALAR" + }, + { + "bufferView":15, + "componentType":5126, + "count":588, + "max":[ + 3.9628798961639404, + 3.164383888244629, + 1.532148003578186 + ], + "min":[ + -3.9628798961639404, + -0.8391420245170593, + -0.06276299804449081 + ], + "type":"VEC3" + }, + { + "bufferView":16, + "componentType":5126, + "count":588, + "type":"VEC3" + }, + { + "bufferView":17, + "componentType":5121, + "count":588, + "type":"VEC4" + }, + { + "bufferView":18, + "componentType":5126, + "count":588, + "type":"VEC4" + }, + { + "bufferView":19, + "componentType":5123, + "count":2406, + "type":"SCALAR" + }, + { + "bufferView":20, + "componentType":5126, + "count":302, + "max":[ + 0.6702849864959717, + 2.952552080154419, + 1.250417947769165 + ], + "min":[ + -0.6702849864959717, + 2.3240621089935303, + 0.6100479960441589 + ], + "type":"VEC3" + }, + { + "bufferView":21, + "componentType":5126, + "count":302, + "type":"VEC3" + }, + { + "bufferView":22, + "componentType":5121, + "count":302, + "type":"VEC4" + }, + { + "bufferView":23, + "componentType":5126, + "count":302, + "type":"VEC4" + }, + { + "bufferView":24, + "componentType":5123, + "count":1464, + "type":"SCALAR" + }, + { + "bufferView":25, + "componentType":5126, + "count":692, + "max":[ + 1.4316819906234741, + 2.64237904548645, + -0.50347900390625 + ], + "min":[ + -1.3721630573272705, + -0.9366859793663025, + -2.3484959602355957 + ], + "type":"VEC3" + }, + { + "bufferView":26, + "componentType":5126, + "count":692, + "type":"VEC3" + }, + { + "bufferView":27, + "componentType":5121, + "count":692, + "type":"VEC4" + }, + { + "bufferView":28, + "componentType":5126, + "count":692, + "type":"VEC4" + }, + { + "bufferView":29, + "componentType":5123, + "count":2544, + "type":"SCALAR" + }, + { + "bufferView":30, + "componentType":5126, + "count":252, + "max":[ + 3.772001028060913, + 2.6193668842315674, + 1.3403329849243164 + ], + "min":[ + -3.772001028060913, + -0.3831619918346405, + -0.29140201210975647 + ], + "type":"VEC3" + }, + { + "bufferView":31, + "componentType":5126, + "count":252, + "type":"VEC3" + }, + { + "bufferView":32, + "componentType":5121, + "count":252, + "type":"VEC4" + }, + { + "bufferView":33, + "componentType":5126, + "count":252, + "type":"VEC4" + }, + { + "bufferView":34, + "componentType":5123, + "count":672, + "type":"SCALAR" + }, + { + "bufferView":35, + "componentType":5126, + "count":69, + "type":"MAT4" + }, + { + "bufferView":36, + "componentType":5126, + "count":71, + "max":[ + 2.3333333333333335 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":37, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":38, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":39, + "componentType":5126, + "count":2, + "max":[ + 2.3333333333333335 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":40, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":41, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":42, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":43, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":44, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":45, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":46, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":47, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":48, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":49, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":50, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":51, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":52, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":53, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":54, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":55, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":56, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":57, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":58, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":59, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":60, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":61, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":62, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":63, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":64, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":65, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":66, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":67, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":68, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":69, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":70, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":71, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":72, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":73, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":74, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":75, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":76, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":77, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":78, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":79, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":80, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":81, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":82, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":83, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":84, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":85, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":86, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":87, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":88, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":89, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":90, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":91, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":92, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":93, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":94, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":95, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":96, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":97, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":98, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":99, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":100, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":101, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":102, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":103, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":104, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":105, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":106, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":107, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":108, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":109, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":110, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":111, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":112, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":113, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":114, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":115, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":116, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":117, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":118, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":119, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":120, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":121, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":122, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":123, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":124, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":125, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":126, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":127, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":128, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":129, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":130, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":131, + "componentType":5126, + "count":71, + "type":"VEC3" + }, + { + "bufferView":132, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":133, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":134, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":135, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":136, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":137, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":138, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":139, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":140, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":141, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":142, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":143, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":144, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":145, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":146, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":147, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":148, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":149, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":150, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":151, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":152, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":153, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":154, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":155, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":156, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":157, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":158, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":159, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":160, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":161, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":162, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":163, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":164, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":165, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":166, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":167, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":168, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":169, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":170, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":171, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":172, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":173, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":174, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":175, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":176, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":177, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":178, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":179, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":180, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":181, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":182, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":183, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":184, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":185, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":186, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":187, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":188, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":189, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":190, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":191, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":192, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":193, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":194, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":195, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":196, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":197, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":198, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":199, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":200, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":201, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":202, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":203, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":204, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":205, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":206, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":207, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":208, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":209, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":210, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":211, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":212, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":213, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":214, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":215, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":216, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":217, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":218, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":219, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":220, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":221, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":222, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":223, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":224, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":225, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":226, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":227, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":228, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":229, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":230, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":231, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":232, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":233, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":234, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":235, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":236, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":237, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":238, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":239, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":240, + "componentType":5126, + "count":71, + "type":"VEC4" + }, + { + "bufferView":241, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":242, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":243, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":244, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":245, + "componentType":5126, + "count":2, + "max":[ + 0.3333333333333333 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":246, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":247, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":248, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":249, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":250, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":251, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":252, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":253, + "componentType":5126, + "count":11, + "max":[ + 0.3333333333333333 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":254, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":255, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":256, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":257, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":258, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":259, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":260, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":261, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":262, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":263, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":264, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":265, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":266, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":267, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":268, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":269, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":270, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":271, + "componentType":5126, + "count":11, + "type":"VEC3" + }, + { + "bufferView":272, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":273, + "componentType":5126, + "count":11, + "type":"VEC3" + }, + { + "bufferView":274, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":275, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":276, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":277, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":278, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":279, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":280, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":281, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":282, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":283, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":284, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":285, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":286, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":287, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":288, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":289, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":290, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":291, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":292, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":293, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":294, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":295, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":296, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":297, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":298, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":299, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":300, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":301, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":302, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":303, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":304, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":305, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":306, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":307, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":308, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":309, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":310, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":311, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":312, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":313, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":314, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":315, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":316, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":317, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":318, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":319, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":320, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":321, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":322, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":323, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":324, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":325, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":326, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":327, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":328, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":329, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":330, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":331, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":332, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":333, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":334, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":335, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":336, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":337, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":338, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":339, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":340, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":341, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":342, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":343, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":344, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":345, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":346, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":347, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":348, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":349, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":350, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":351, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":352, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":353, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":354, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":355, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":356, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":357, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":358, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":359, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":360, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":361, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":362, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":363, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":364, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":365, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":366, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":367, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":368, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":369, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":370, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":371, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":372, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":373, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":374, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":375, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":376, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":377, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":378, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":379, + "componentType":5126, + "count":11, + "type":"VEC3" + }, + { + "bufferView":380, + "componentType":5126, + "count":11, + "type":"VEC4" + }, + { + "bufferView":381, + "componentType":5126, + "count":11, + "type":"VEC3" + }, + { + "bufferView":382, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":383, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":384, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":385, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":386, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":387, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":388, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":389, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":390, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":391, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":392, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":393, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":394, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":395, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":396, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":397, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":398, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":399, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":400, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":401, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":402, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":403, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":404, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":405, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":406, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":407, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":408, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":409, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":410, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":411, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":412, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":413, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":414, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":415, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":416, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":417, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":418, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":419, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":420, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":421, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":422, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":423, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":424, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":425, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":426, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":427, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":428, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":429, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":430, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":431, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":432, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":433, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":434, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":435, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":436, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":437, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":438, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":439, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":440, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":441, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":442, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":443, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":444, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":445, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":446, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":447, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":448, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":449, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":450, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":451, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":452, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":453, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":454, + "componentType":5126, + "count":1, + "max":[ + 0 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":455, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":456, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":457, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":458, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":459, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":460, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":461, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":462, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":463, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":464, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":465, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":466, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":467, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":468, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":469, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":470, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":471, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":472, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":473, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":474, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":475, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":476, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":477, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":478, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":479, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":480, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":481, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":482, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":483, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":484, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":485, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":486, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":487, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":488, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":489, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":490, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":491, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":492, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":493, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":494, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":495, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":496, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":497, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":498, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":499, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":500, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":501, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":502, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":503, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":504, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":505, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":506, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":507, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":508, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":509, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":510, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":511, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":512, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":513, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":514, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":515, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":516, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":517, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":518, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":519, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":520, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":521, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":522, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":523, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":524, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":525, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":526, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":527, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":528, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":529, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":530, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":531, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":532, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":533, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":534, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":535, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":536, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":537, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":538, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":539, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":540, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":541, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":542, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":543, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":544, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":545, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":546, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":547, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":548, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":549, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":550, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":551, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":552, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":553, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":554, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":555, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":556, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":557, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":558, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":559, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":560, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":561, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":562, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":563, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":564, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":565, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":566, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":567, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":568, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":569, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":570, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":571, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":572, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":573, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":574, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":575, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":576, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":577, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":578, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":579, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":580, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":581, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":582, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":583, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":584, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":585, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":586, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":587, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":588, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":589, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":590, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":591, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":592, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":593, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":594, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":595, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":596, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":597, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":598, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":599, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":600, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":601, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":602, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":603, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":604, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":605, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":606, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":607, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":608, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":609, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":610, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":611, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":612, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":613, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":614, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":615, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":616, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":617, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":618, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":619, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":620, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":621, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":622, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":623, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":624, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":625, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":626, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":627, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":628, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":629, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":630, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":631, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":632, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":633, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":634, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":635, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":636, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":637, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":638, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":639, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":640, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":641, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":642, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":643, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":644, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":645, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":646, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":647, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":648, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":649, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":650, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":651, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":652, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":653, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":654, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":655, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":656, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":657, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":658, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":659, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":660, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":661, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":662, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":663, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":664, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":665, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":666, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":667, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":668, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":669, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":670, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":671, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":672, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":673, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":674, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":675, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":676, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":677, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":678, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":679, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":680, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":681, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":682, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":683, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":684, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":685, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":686, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":687, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":688, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":689, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":690, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":691, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":692, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":693, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":694, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":695, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":696, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":697, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":698, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":699, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":700, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":701, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":702, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":703, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":704, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":705, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":706, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":707, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":708, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":709, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":710, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":711, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":712, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":713, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":714, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":715, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":716, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":717, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":718, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":719, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":720, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":721, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":722, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":723, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":724, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":725, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":726, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":727, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":728, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":729, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":730, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":731, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":732, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":733, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":734, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":735, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":736, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":737, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":738, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":739, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":740, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":741, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":742, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":743, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":744, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":745, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":746, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":747, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":748, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":749, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":750, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":751, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":752, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":753, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":754, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":755, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":756, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":757, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":758, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":759, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":760, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":761, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":762, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":763, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":764, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":765, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":766, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":767, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":768, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":769, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":770, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":771, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":772, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":773, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":774, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":775, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":776, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":777, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":778, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":779, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":780, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":781, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":782, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":783, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":784, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":785, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":786, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":787, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":788, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":789, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":790, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":791, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":792, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":793, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":794, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":795, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":796, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":797, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":798, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":799, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":800, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":801, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":802, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":803, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":804, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":805, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":806, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":807, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":808, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":809, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":810, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":811, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":812, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":813, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":814, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":815, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":816, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":817, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":818, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":819, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":820, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":821, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":822, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":823, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":824, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":825, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":826, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":827, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":828, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":829, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":830, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":831, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":832, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":833, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":834, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":835, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":836, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":837, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":838, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":839, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":840, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":841, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":842, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":843, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":844, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":845, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":846, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":847, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":848, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":849, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":850, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":851, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":852, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":853, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":854, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":855, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":856, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":857, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":858, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":859, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":860, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":861, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":862, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":863, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":864, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":865, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":866, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":867, + "componentType":5126, + "count":1, + "type":"VEC4" + }, + { + "bufferView":868, + "componentType":5126, + "count":1, + "type":"VEC3" + }, + { + "bufferView":869, + "componentType":5126, + "count":221, + "max":[ + 7.333333333333333 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":870, + "componentType":5126, + "count":221, + "type":"VEC3" + }, + { + "bufferView":871, + "componentType":5126, + "count":2, + "max":[ + 7.333333333333333 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":872, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":873, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":874, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":875, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":876, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":877, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":878, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":879, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":880, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":881, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":882, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":883, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":884, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":885, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":886, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":887, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":888, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":889, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":890, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":891, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":892, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":893, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":894, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":895, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":896, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":897, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":898, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":899, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":900, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":901, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":902, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":903, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":904, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":905, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":906, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":907, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":908, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":909, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":910, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":911, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":912, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":913, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":914, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":915, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":916, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":917, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":918, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":919, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":920, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":921, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":922, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":923, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":924, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":925, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":926, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":927, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":928, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":929, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":930, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":931, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":932, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":933, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":934, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":935, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":936, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":937, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":938, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":939, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":940, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":941, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":942, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":943, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":944, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":945, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":946, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":947, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":948, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":949, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":950, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":951, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":952, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":953, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":954, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":955, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":956, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":957, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":958, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":959, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":960, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":961, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":962, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":963, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":964, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":965, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":966, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":967, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":968, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":969, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":970, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":971, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":972, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":973, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":974, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":975, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":976, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":977, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":978, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":979, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":980, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":981, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":982, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":983, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":984, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":985, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":986, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":987, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":988, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":989, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":990, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":991, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":992, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":993, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":994, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":995, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":996, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":997, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":998, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":999, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1000, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1001, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1002, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1003, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1004, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1005, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1006, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1007, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1008, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1009, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1010, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1011, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1012, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1013, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1014, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1015, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1016, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1017, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1018, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1019, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1020, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1021, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1022, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1023, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1024, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1025, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1026, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1027, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1028, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1029, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1030, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1031, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1032, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1033, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1034, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1035, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1036, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1037, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1038, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1039, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1040, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1041, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1042, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1043, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1044, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1045, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1046, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1047, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1048, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1049, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1050, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1051, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1052, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1053, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1054, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1055, + "componentType":5126, + "count":221, + "type":"VEC4" + }, + { + "bufferView":1056, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1057, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1058, + "componentType":5126, + "count":221, + "type":"VEC4" + }, + { + "bufferView":1059, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1060, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1061, + "componentType":5126, + "count":221, + "type":"VEC4" + }, + { + "bufferView":1062, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1063, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1064, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1065, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1066, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1067, + "componentType":5126, + "count":221, + "type":"VEC4" + }, + { + "bufferView":1068, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1069, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1070, + "componentType":5126, + "count":221, + "type":"VEC4" + }, + { + "bufferView":1071, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1072, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1073, + "componentType":5126, + "count":221, + "type":"VEC4" + }, + { + "bufferView":1074, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1075, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1076, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1077, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1078, + "componentType":5126, + "count":2, + "max":[ + 10 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1079, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1080, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1081, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1082, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1083, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1084, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1085, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1086, + "componentType":5126, + "count":301, + "max":[ + 10 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1087, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1088, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1089, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1090, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1091, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1092, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1093, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1094, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1095, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1096, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1097, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1098, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1099, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1100, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1101, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1102, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1103, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1104, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1105, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1106, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1107, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1108, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1109, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1110, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1111, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1112, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1113, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1114, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1115, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1116, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1117, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1118, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1119, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1120, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1121, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1122, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1123, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1124, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1125, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1126, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1127, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1128, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1129, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1130, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1131, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1132, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1133, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1134, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1135, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1136, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1137, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1138, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1139, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1140, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1141, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1142, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1143, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1144, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1145, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1146, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1147, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1148, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1149, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1150, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1151, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1152, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1153, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1154, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1155, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1156, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1157, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1158, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1159, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1160, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1161, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1162, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1163, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1164, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1165, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1166, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1167, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1168, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1169, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1170, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1171, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1172, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1173, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1174, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1175, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1176, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1177, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1178, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1179, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1180, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1181, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1182, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1183, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1184, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1185, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1186, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1187, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1188, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1189, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1190, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1191, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1192, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1193, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1194, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1195, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1196, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1197, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1198, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1199, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1200, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1201, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1202, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1203, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1204, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1205, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1206, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1207, + "componentType":5126, + "count":301, + "type":"VEC4" + }, + { + "bufferView":1208, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1209, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1210, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1211, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1212, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1213, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1214, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1215, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1216, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1217, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1218, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1219, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1220, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1221, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1222, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1223, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1224, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1225, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1226, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1227, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1228, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1229, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1230, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1231, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1232, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1233, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1234, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1235, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1236, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1237, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1238, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1239, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1240, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1241, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1242, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1243, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1244, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1245, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1246, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1247, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1248, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1249, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1250, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1251, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1252, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1253, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1254, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1255, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1256, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1257, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1258, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1259, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1260, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1261, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1262, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1263, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1264, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1265, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1266, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1267, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1268, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1269, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1270, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1271, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1272, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1273, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1274, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1275, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1276, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1277, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1278, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1279, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1280, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1281, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1282, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1283, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1284, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1285, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1286, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1287, + "componentType":5126, + "count":6, + "max":[ + 0.16666666666666666 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1288, + "componentType":5126, + "count":6, + "type":"VEC3" + }, + { + "bufferView":1289, + "componentType":5126, + "count":2, + "max":[ + 0.16666666666666666 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1290, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1291, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1292, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1293, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1294, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1295, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1296, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1297, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1298, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1299, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1300, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1301, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1302, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1303, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1304, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1305, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1306, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1307, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1308, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1309, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1310, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1311, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1312, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1313, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1314, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1315, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1316, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1317, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1318, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1319, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1320, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1321, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1322, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1323, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1324, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1325, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1326, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1327, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1328, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1329, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1330, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1331, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1332, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1333, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1334, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1335, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1336, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1337, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1338, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1339, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1340, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1341, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1342, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1343, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1344, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1345, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1346, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1347, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1348, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1349, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1350, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1351, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1352, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1353, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1354, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1355, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1356, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1357, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1358, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1359, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1360, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1361, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1362, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1363, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1364, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1365, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1366, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1367, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1368, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1369, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1370, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1371, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1372, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1373, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1374, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1375, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1376, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1377, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1378, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1379, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1380, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1381, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1382, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1383, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1384, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1385, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1386, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1387, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1388, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1389, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1390, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1391, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1392, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1393, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1394, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1395, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1396, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1397, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1398, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1399, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1400, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1401, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1402, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1403, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1404, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1405, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1406, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1407, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1408, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1409, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1410, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1411, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1412, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1413, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1414, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1415, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1416, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1417, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1418, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1419, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1420, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1421, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1422, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1423, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1424, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1425, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1426, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1427, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1428, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1429, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1430, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1431, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1432, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1433, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1434, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1435, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1436, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1437, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1438, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1439, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1440, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1441, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1442, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1443, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1444, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1445, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1446, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1447, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1448, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1449, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1450, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1451, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1452, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1453, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1454, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1455, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1456, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1457, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1458, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1459, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1460, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1461, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1462, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1463, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1464, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1465, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1466, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1467, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1468, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1469, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1470, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1471, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1472, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1473, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1474, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1475, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1476, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1477, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1478, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1479, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1480, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1481, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1482, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1483, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1484, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1485, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1486, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1487, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1488, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1489, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1490, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1491, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1492, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1493, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1494, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1495, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1496, + "componentType":5126, + "count":2, + "max":[ + 1 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1497, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1498, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1499, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1500, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1501, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1502, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1503, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1504, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1505, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1506, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1507, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1508, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1509, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1510, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1511, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1512, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1513, + "componentType":5126, + "count":31, + "max":[ + 1 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1514, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1515, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1516, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1517, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1518, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1519, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1520, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1521, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1522, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1523, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1524, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1525, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1526, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1527, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1528, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1529, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1530, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1531, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1532, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1533, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1534, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1535, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1536, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1537, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1538, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1539, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1540, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1541, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1542, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1543, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1544, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1545, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1546, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1547, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1548, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1549, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1550, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1551, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1552, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1553, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1554, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1555, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1556, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1557, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1558, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1559, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1560, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1561, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1562, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1563, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1564, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1565, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1566, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1567, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1568, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1569, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1570, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1571, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1572, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1573, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1574, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1575, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1576, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1577, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1578, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1579, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1580, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1581, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1582, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1583, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1584, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1585, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1586, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1587, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1588, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1589, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1590, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1591, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1592, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1593, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1594, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1595, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1596, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1597, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1598, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1599, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1600, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1601, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1602, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1603, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1604, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1605, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1606, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1607, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1608, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1609, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1610, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1611, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1612, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1613, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1614, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1615, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1616, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1617, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1618, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1619, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1620, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1621, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1622, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1623, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1624, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1625, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1626, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1627, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1628, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1629, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1630, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1631, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1632, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1633, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1634, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1635, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1636, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1637, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1638, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1639, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1640, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1641, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1642, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1643, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1644, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1645, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1646, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1647, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1648, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1649, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1650, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1651, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1652, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1653, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1654, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1655, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1656, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1657, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1658, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1659, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1660, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1661, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1662, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1663, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1664, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1665, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1666, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1667, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1668, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1669, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1670, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1671, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1672, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1673, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1674, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1675, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1676, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1677, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1678, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1679, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1680, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1681, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1682, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1683, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1684, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1685, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1686, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1687, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1688, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1689, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1690, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1691, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1692, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1693, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1694, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1695, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1696, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1697, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1698, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1699, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1700, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1701, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1702, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1703, + "componentType":5126, + "count":31, + "type":"VEC4" + }, + { + "bufferView":1704, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1705, + "componentType":5126, + "count":6, + "type":"VEC3" + }, + { + "bufferView":1706, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1707, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1708, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1709, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1710, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1711, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1712, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1713, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1714, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1715, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1716, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1717, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1718, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1719, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1720, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1721, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1722, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1723, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1724, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1725, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1726, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1727, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1728, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1729, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1730, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1731, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1732, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1733, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1734, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1735, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1736, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1737, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1738, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1739, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1740, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1741, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1742, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1743, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1744, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1745, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1746, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1747, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1748, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1749, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1750, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1751, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1752, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1753, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1754, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1755, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1756, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1757, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1758, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1759, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1760, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1761, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1762, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1763, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1764, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1765, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1766, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1767, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1768, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1769, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1770, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1771, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1772, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1773, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1774, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1775, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1776, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1777, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1778, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1779, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1780, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1781, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1782, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1783, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1784, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1785, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1786, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1787, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1788, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1789, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1790, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1791, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1792, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1793, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1794, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1795, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1796, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1797, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1798, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1799, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1800, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1801, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1802, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1803, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1804, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1805, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1806, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1807, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1808, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1809, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1810, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1811, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1812, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1813, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1814, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1815, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1816, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1817, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1818, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1819, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1820, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1821, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1822, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1823, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1824, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1825, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1826, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1827, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1828, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1829, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1830, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1831, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1832, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1833, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1834, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1835, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1836, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1837, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1838, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1839, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1840, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1841, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1842, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1843, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1844, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1845, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1846, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1847, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1848, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1849, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1850, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1851, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1852, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1853, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1854, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1855, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1856, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1857, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1858, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1859, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1860, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1861, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1862, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1863, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1864, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1865, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1866, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1867, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1868, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1869, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1870, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1871, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1872, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1873, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1874, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1875, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1876, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1877, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1878, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1879, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1880, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1881, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1882, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1883, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1884, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1885, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1886, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1887, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1888, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1889, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1890, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1891, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1892, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1893, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1894, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1895, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1896, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1897, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1898, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1899, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1900, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1901, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1902, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1903, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1904, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1905, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1906, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1907, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1908, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1909, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1910, + "componentType":5126, + "count":6, + "type":"VEC4" + }, + { + "bufferView":1911, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1912, + "componentType":5126, + "count":21, + "max":[ + 0.6666666666666666 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1913, + "componentType":5126, + "count":21, + "type":"VEC3" + }, + { + "bufferView":1914, + "componentType":5126, + "count":2, + "max":[ + 0.6666666666666666 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":1915, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1916, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1917, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1918, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1919, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1920, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1921, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1922, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1923, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1924, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1925, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1926, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1927, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1928, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1929, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1930, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1931, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1932, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1933, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1934, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1935, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1936, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1937, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1938, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1939, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1940, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1941, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1942, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1943, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1944, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1945, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1946, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1947, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1948, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1949, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1950, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1951, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1952, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1953, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1954, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1955, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1956, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1957, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1958, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1959, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1960, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1961, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1962, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1963, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1964, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1965, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1966, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1967, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1968, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1969, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1970, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1971, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1972, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1973, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1974, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1975, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1976, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1977, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1978, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1979, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1980, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1981, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1982, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1983, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1984, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1985, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1986, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1987, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1988, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1989, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1990, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1991, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1992, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1993, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1994, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1995, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1996, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":1997, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1998, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":1999, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2000, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2001, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2002, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2003, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2004, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2005, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2006, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2007, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2008, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2009, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2010, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2011, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2012, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2013, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2014, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2015, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2016, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2017, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2018, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2019, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2020, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2021, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2022, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2023, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2024, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2025, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2026, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2027, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2028, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2029, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2030, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2031, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2032, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2033, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2034, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2035, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2036, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2037, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2038, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2039, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2040, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2041, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2042, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2043, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2044, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2045, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2046, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2047, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2048, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2049, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2050, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2051, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2052, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2053, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2054, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2055, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2056, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2057, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2058, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2059, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2060, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2061, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2062, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2063, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2064, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2065, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2066, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2067, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2068, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2069, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2070, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2071, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2072, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2073, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2074, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2075, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2076, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2077, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2078, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2079, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2080, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2081, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2082, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2083, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2084, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2085, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2086, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2087, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2088, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2089, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2090, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2091, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2092, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2093, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2094, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2095, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2096, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2097, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2098, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2099, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2100, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2101, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2102, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2103, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2104, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2105, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2106, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2107, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2108, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2109, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2110, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2111, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2112, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2113, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2114, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2115, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2116, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2117, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2118, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2119, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2120, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2121, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2122, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2123, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2124, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2125, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2126, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2127, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2128, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2129, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2130, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2131, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2132, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2133, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2134, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2135, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2136, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2137, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2138, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2139, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2140, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2141, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2142, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2143, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2144, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2145, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2146, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2147, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2148, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2149, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2150, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2151, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2152, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2153, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2154, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2155, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2156, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2157, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2158, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2159, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2160, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2161, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2162, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2163, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2164, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2165, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2166, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2167, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2168, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2169, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2170, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2171, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2172, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2173, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2174, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2175, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2176, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2177, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2178, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2179, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2180, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2181, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2182, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2183, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2184, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2185, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2186, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2187, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2188, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2189, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2190, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2191, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2192, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2193, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2194, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2195, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2196, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2197, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2198, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2199, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2200, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2201, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2202, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2203, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2204, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2205, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2206, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2207, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2208, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2209, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2210, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2211, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2212, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2213, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2214, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2215, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2216, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2217, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2218, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2219, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2220, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2221, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2222, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2223, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2224, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2225, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2226, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2227, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2228, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2229, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2230, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2231, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2232, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2233, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2234, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2235, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2236, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2237, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2238, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2239, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2240, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2241, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2242, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2243, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2244, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2245, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2246, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2247, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2248, + "componentType":5126, + "count":21, + "type":"VEC4" + }, + { + "bufferView":2249, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2250, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2251, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2252, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2253, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2254, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2255, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2256, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2257, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2258, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2259, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2260, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2261, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2262, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2263, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2264, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2265, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2266, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2267, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2268, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2269, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2270, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2271, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2272, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2273, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2274, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2275, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2276, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2277, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2278, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2279, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2280, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2281, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2282, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2283, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2284, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2285, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2286, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2287, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2288, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2289, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2290, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2291, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2292, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2293, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2294, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2295, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2296, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2297, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2298, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2299, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2300, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2301, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2302, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2303, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2304, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2305, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2306, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2307, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2308, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2309, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2310, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2311, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2312, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2313, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2314, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2315, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2316, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2317, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2318, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2319, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2320, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2321, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2322, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2323, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2324, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2325, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2326, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2327, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2328, + "componentType":5126, + "count":2, + "max":[ + 0.5 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":2329, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2330, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2331, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2332, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2333, + "componentType":5126, + "count":16, + "max":[ + 0.5 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":2334, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2335, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2336, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2337, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2338, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2339, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2340, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2341, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2342, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2343, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2344, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2345, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2346, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2347, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2348, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2349, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2350, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2351, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2352, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2353, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2354, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2355, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2356, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2357, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2358, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2359, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2360, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2361, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2362, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2363, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2364, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2365, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2366, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2367, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2368, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2369, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2370, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2371, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2372, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2373, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2374, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2375, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2376, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2377, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2378, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2379, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2380, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2381, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2382, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2383, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2384, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2385, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2386, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2387, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2388, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2389, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2390, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2391, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2392, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2393, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2394, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2395, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2396, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2397, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2398, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2399, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2400, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2401, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2402, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2403, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2404, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2405, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2406, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2407, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2408, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2409, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2410, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2411, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2412, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2413, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2414, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2415, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2416, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2417, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2418, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2419, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2420, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2421, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2422, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2423, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2424, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2425, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2426, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2427, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2428, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2429, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2430, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2431, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2432, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2433, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2434, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2435, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2436, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2437, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2438, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2439, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2440, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2441, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2442, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2443, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2444, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2445, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2446, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2447, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2448, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2449, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2450, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2451, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2452, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2453, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2454, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2455, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2456, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2457, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2458, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2459, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2460, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2461, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2462, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2463, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2464, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2465, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2466, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2467, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2468, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2469, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2470, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2471, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2472, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2473, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2474, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2475, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2476, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2477, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2478, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2479, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2480, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2481, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2482, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2483, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2484, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2485, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2486, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2487, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2488, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2489, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2490, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2491, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2492, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2493, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2494, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2495, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2496, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2497, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2498, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2499, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2500, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2501, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2502, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2503, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2504, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2505, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2506, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2507, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2508, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2509, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2510, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2511, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2512, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2513, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2514, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2515, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2516, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2517, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2518, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2519, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2520, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2521, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2522, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2523, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2524, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2525, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2526, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2527, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2528, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2529, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2530, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2531, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2532, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2533, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2534, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2535, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2536, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2537, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2538, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2539, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2540, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2541, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2542, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2543, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2544, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2545, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2546, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2547, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2548, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2549, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2550, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2551, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2552, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2553, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2554, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2555, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2556, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2557, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2558, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2559, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2560, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2561, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2562, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2563, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2564, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2565, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2566, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2567, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2568, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2569, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2570, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2571, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2572, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2573, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2574, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2575, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2576, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2577, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2578, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2579, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2580, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2581, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2582, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2583, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2584, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2585, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2586, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2587, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2588, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2589, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2590, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2591, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2592, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2593, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2594, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2595, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2596, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2597, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2598, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2599, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2600, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2601, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2602, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2603, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2604, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2605, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2606, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2607, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2608, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2609, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2610, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2611, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2612, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2613, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2614, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2615, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2616, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2617, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2618, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2619, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2620, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2621, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2622, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2623, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2624, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2625, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2626, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2627, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2628, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2629, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2630, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2631, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2632, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2633, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2634, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2635, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2636, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2637, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2638, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2639, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2640, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2641, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2642, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2643, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2644, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2645, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2646, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2647, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2648, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2649, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2650, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2651, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2652, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2653, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2654, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2655, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2656, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2657, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2658, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2659, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2660, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2661, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2662, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2663, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2664, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2665, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2666, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2667, + "componentType":5126, + "count":16, + "type":"VEC4" + }, + { + "bufferView":2668, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2669, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2670, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2671, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2672, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2673, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2674, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2675, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2676, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2677, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2678, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2679, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2680, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2681, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2682, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2683, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2684, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2685, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2686, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2687, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2688, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2689, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2690, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2691, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2692, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2693, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2694, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2695, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2696, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2697, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2698, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2699, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2700, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2701, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2702, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2703, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2704, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2705, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2706, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2707, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2708, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2709, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2710, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2711, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2712, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2713, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2714, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2715, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2716, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2717, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2718, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2719, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2720, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2721, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2722, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2723, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2724, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2725, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2726, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2727, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2728, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2729, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2730, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2731, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2732, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2733, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2734, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2735, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2736, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2737, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2738, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2739, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2740, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2741, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2742, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2743, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2744, + "componentType":5126, + "count":62, + "max":[ + 2.033333333333333 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":2745, + "componentType":5126, + "count":62, + "type":"VEC3" + }, + { + "bufferView":2746, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2747, + "componentType":5126, + "count":2, + "max":[ + 2.033333333333333 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":2748, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2749, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2750, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2751, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2752, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2753, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2754, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2755, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2756, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2757, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2758, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2759, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2760, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2761, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2762, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2763, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2764, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2765, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2766, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2767, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2768, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2769, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2770, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2771, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2772, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2773, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2774, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2775, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2776, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2777, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2778, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2779, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2780, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2781, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2782, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2783, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2784, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2785, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2786, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2787, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2788, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2789, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2790, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2791, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2792, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2793, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2794, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2795, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2796, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2797, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2798, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2799, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2800, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2801, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2802, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2803, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2804, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2805, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2806, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2807, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2808, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2809, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2810, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2811, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2812, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2813, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2814, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2815, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2816, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2817, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2818, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2819, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2820, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2821, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2822, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2823, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2824, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2825, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2826, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2827, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2828, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2829, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2830, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2831, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2832, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2833, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2834, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2835, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2836, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2837, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2838, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2839, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2840, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2841, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2842, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2843, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2844, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2845, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2846, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2847, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2848, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2849, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2850, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2851, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2852, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2853, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2854, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2855, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2856, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2857, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2858, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2859, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2860, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2861, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2862, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2863, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2864, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2865, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2866, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2867, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2868, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2869, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2870, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2871, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2872, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2873, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2874, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2875, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2876, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2877, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2878, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2879, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2880, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2881, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2882, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2883, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2884, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2885, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2886, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2887, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2888, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2889, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2890, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2891, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2892, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2893, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2894, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2895, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2896, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2897, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2898, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2899, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2900, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2901, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2902, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2903, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2904, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2905, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2906, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2907, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2908, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2909, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2910, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2911, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2912, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2913, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2914, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2915, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2916, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2917, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2918, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2919, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2920, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2921, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2922, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2923, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2924, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2925, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2926, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2927, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2928, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2929, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2930, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2931, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2932, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2933, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2934, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2935, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2936, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2937, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2938, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2939, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2940, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2941, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2942, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2943, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2944, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2945, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2946, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2947, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2948, + "componentType":5126, + "count":62, + "type":"VEC4" + }, + { + "bufferView":2949, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2950, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2951, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2952, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2953, + "componentType":5126, + "count":70, + "max":[ + 2.3 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":2954, + "componentType":5126, + "count":70, + "type":"VEC3" + }, + { + "bufferView":2955, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":2956, + "componentType":5126, + "count":2, + "max":[ + 2.3 + ], + "min":[ + 0 + ], + "type":"SCALAR" + }, + { + "bufferView":2957, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2958, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2959, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":2960, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2961, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2962, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":2963, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2964, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2965, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2966, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2967, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2968, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2969, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2970, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2971, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":2972, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2973, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2974, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":2975, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2976, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2977, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":2978, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2979, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2980, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2981, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2982, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2983, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2984, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2985, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2986, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2987, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2988, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2989, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2990, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2991, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2992, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2993, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2994, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2995, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2996, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2997, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":2998, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":2999, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3000, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3001, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3002, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3003, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3004, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3005, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3006, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3007, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3008, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3009, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3010, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3011, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3012, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3013, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3014, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3015, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3016, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3017, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3018, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3019, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3020, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3021, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3022, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3023, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3024, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3025, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3026, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3027, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3028, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":3029, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3030, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3031, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":3032, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3033, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3034, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3035, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3036, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3037, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3038, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3039, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3040, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3041, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3042, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3043, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3044, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3045, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3046, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3047, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3048, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3049, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3050, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3051, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3052, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3053, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3054, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3055, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3056, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3057, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3058, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3059, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3060, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3061, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3062, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3063, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3064, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3065, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3066, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3067, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3068, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3069, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3070, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3071, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3072, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3073, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3074, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3075, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3076, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3077, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3078, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3079, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":3080, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3081, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3082, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":3083, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3084, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3085, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":3086, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3087, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3088, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3089, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3090, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3091, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3092, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3093, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3094, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3095, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3096, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3097, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3098, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3099, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3100, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3101, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3102, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3103, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3104, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3105, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3106, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3107, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3108, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3109, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3110, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3111, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3112, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3113, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3114, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3115, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3116, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3117, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3118, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3119, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3120, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3121, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3122, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3123, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3124, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3125, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3126, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3127, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3128, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3129, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3130, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3131, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3132, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3133, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3134, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3135, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3136, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3137, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3138, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3139, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":3140, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3141, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3142, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":3143, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3144, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3145, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":3146, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3147, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3148, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3149, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3150, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3151, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":3152, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3153, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3154, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":3155, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3156, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3157, + "componentType":5126, + "count":70, + "type":"VEC4" + }, + { + "bufferView":3158, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3159, + "componentType":5126, + "count":2, + "type":"VEC3" + }, + { + "bufferView":3160, + "componentType":5126, + "count":2, + "type":"VEC4" + }, + { + "bufferView":3161, + "componentType":5126, + "count":2, + "type":"VEC3" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":18420, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":18420, + "byteOffset":18420, + "target":34962 + }, + { + "buffer":0, + "byteLength":6140, + "byteOffset":36840, + "target":34962 + }, + { + "buffer":0, + "byteLength":24560, + "byteOffset":42980, + "target":34962 + }, + { + "buffer":0, + "byteLength":10716, + "byteOffset":67540, + "target":34963 + }, + { + "buffer":0, + "byteLength":3504, + "byteOffset":78256, + "target":34962 + }, + { + "buffer":0, + "byteLength":3504, + "byteOffset":81760, + "target":34962 + }, + { + "buffer":0, + "byteLength":1168, + "byteOffset":85264, + "target":34962 + }, + { + "buffer":0, + "byteLength":4672, + "byteOffset":86432, + "target":34962 + }, + { + "buffer":0, + "byteLength":3168, + "byteOffset":91104, + "target":34963 + }, + { + "buffer":0, + "byteLength":22656, + "byteOffset":94272, + "target":34962 + }, + { + "buffer":0, + "byteLength":22656, + "byteOffset":116928, + "target":34962 + }, + { + "buffer":0, + "byteLength":7552, + "byteOffset":139584, + "target":34962 + }, + { + "buffer":0, + "byteLength":30208, + "byteOffset":147136, + "target":34962 + }, + { + "buffer":0, + "byteLength":17616, + "byteOffset":177344, + "target":34963 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":194960, + "target":34962 + }, + { + "buffer":0, + "byteLength":7056, + "byteOffset":202016, + "target":34962 + }, + { + "buffer":0, + "byteLength":2352, + "byteOffset":209072, + "target":34962 + }, + { + "buffer":0, + "byteLength":9408, + "byteOffset":211424, + "target":34962 + }, + { + "buffer":0, + "byteLength":4812, + "byteOffset":220832, + "target":34963 + }, + { + "buffer":0, + "byteLength":3624, + "byteOffset":225644, + "target":34962 + }, + { + "buffer":0, + "byteLength":3624, + "byteOffset":229268, + "target":34962 + }, + { + "buffer":0, + "byteLength":1208, + "byteOffset":232892, + "target":34962 + }, + { + "buffer":0, + "byteLength":4832, + "byteOffset":234100, + "target":34962 + }, + { + "buffer":0, + "byteLength":2928, + "byteOffset":238932, + "target":34963 + }, + { + "buffer":0, + "byteLength":8304, + "byteOffset":241860, + "target":34962 + }, + { + "buffer":0, + "byteLength":8304, + "byteOffset":250164, + "target":34962 + }, + { + "buffer":0, + "byteLength":2768, + "byteOffset":258468, + "target":34962 + }, + { + "buffer":0, + "byteLength":11072, + "byteOffset":261236, + "target":34962 + }, + { + "buffer":0, + "byteLength":5088, + "byteOffset":272308, + "target":34963 + }, + { + "buffer":0, + "byteLength":3024, + "byteOffset":277396, + "target":34962 + }, + { + "buffer":0, + "byteLength":3024, + "byteOffset":280420, + "target":34962 + }, + { + "buffer":0, + "byteLength":1008, + "byteOffset":283444, + "target":34962 + }, + { + "buffer":0, + "byteLength":4032, + "byteOffset":284452, + "target":34962 + }, + { + "buffer":0, + "byteLength":1344, + "byteOffset":288484, + "target":34963 + }, + { + "buffer":0, + "byteLength":4416, + "byteOffset":289828 + }, + { + "buffer":0, + "byteLength":284, + "byteOffset":294244 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":294528 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":295380 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":296516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":296524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":296548 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":296572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":296604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":296628 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":296652 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297788 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":297812 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":297836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":298972 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":298996 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":299020 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":300156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":300180 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":300204 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":301340 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":301364 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":301388 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":302524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":302548 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":302572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":303708 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":303732 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":303756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":303788 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":303812 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":303836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":304972 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":304996 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":305020 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":306156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":306180 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":306204 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":307340 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":307364 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":307388 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":308524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":308548 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":308572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":309708 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":309732 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":309756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":310892 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":310916 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":310940 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":312076 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":312100 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":312124 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":313260 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":313284 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":313308 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":314444 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":314468 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":314492 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":315628 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":315652 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":315676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":316812 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":316836 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":316860 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":317996 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":318020 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":318044 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":319180 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":319204 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":319228 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":320364 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":320388 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":320412 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":321548 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":321572 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":321596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":322732 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":322756 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":322780 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":322812 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":322836 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":322860 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":323996 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":324020 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":324044 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":325180 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":325204 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":325228 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":326364 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":326388 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":327240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":328376 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":328400 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":329252 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":330388 + }, + { + "buffer":0, + "byteLength":852, + "byteOffset":330412 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":331264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":332400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":332424 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":332448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":333584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":333608 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":333632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":334768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":334792 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":334816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":335952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":335976 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":336000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":337136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":337160 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":337184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":338320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":338344 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":338368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":339504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":339528 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":339552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":340688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":340712 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":340736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":340768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":340792 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":340816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":341952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":341976 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":342000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":343136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":343160 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":343184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":344320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":344344 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":344368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":345504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":345528 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":345552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":345584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":345608 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":345632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":346768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":346792 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":346816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":347952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":347976 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":348000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":349136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":349160 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":349184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":350320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":350344 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":350368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":351504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":351528 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":351552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":352688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":352712 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":352736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":353872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":353896 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":353920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":355056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":355080 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":355104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":356240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":356264 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":356288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":357424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":357448 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":357472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":358608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":358632 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":358656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":359792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":359816 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":359840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":360976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":361000 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":361024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":362160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":362184 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":362208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":363344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":363368 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":363392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":363424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":363448 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":363472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":364608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":364632 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":364656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":365792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":365816 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":365840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":366976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":367000 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":367024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":367056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":367080 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":367104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":368240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":368264 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":368288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":369424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":369448 + }, + { + "buffer":0, + "byteLength":1136, + "byteOffset":369472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":370608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":370632 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":370656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":370688 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":370712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":370720 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":370744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":370776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":370800 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":370824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":370856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":370880 + }, + { + "buffer":0, + "byteLength":44, + "byteOffset":370904 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":370948 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":371124 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":371148 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":371172 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":371348 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":371372 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":371396 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":371572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":371596 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":371620 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":371796 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":371820 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":371844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":372020 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":372044 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":372068 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":372244 + }, + { + "buffer":0, + "byteLength":132, + "byteOffset":372268 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":372400 + }, + { + "buffer":0, + "byteLength":132, + "byteOffset":372576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":372708 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":372732 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":372764 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":372788 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":372812 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":372844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":372868 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":372892 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":372924 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":372948 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":372972 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373004 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373028 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":373052 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373084 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373108 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":373132 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373164 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373188 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":373212 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373268 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":373292 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373348 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":373372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373404 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373428 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":373452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373484 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373508 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":373532 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373588 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":373612 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373668 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":373692 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373748 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":373772 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373828 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":373852 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":373908 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":373932 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374132 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":374156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374188 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374212 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":374236 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374268 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374292 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":374316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374348 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374372 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":374396 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374428 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374452 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":374476 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374508 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374532 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":374556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374588 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374612 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":374636 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374668 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374692 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":374716 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374748 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374772 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":374796 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374828 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374852 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":374876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374908 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374932 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":374956 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":374988 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375012 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":375036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375068 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375092 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":375116 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375148 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375172 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":375196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375228 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375252 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":375276 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375308 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375332 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":375356 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375532 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375556 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":375580 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375780 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":375804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":375980 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":376004 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":376028 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":376204 + }, + { + "buffer":0, + "byteLength":132, + "byteOffset":376228 + }, + { + "buffer":0, + "byteLength":176, + "byteOffset":376360 + }, + { + "buffer":0, + "byteLength":132, + "byteOffset":376536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":376668 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":376692 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":376724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":376748 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":376772 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":376804 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":376828 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":376852 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":376884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":376908 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":376932 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":376964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":376988 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377044 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377068 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377092 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377124 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377148 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377172 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377204 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377228 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377252 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377284 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377308 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377332 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377364 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377388 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377412 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377444 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377468 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377492 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377548 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377628 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377652 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377684 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377708 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377732 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377764 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377788 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377812 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377868 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377892 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377924 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":377948 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":377972 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378004 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378028 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":378052 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378084 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378108 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":378132 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378164 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378188 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":378212 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378268 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":378292 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378348 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":378372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378404 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378428 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":378452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378484 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378508 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":378532 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":378564 + }, + { + "buffer":0, + "byteLength":4, + "byteOffset":378588 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378592 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":378604 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378620 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378632 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":378644 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378660 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378672 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":378684 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378700 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378712 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":378724 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378740 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378752 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":378764 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378780 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378792 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":378804 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378820 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378832 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":378844 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378860 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378872 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":378884 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378900 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378912 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":378924 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378940 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378952 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":378964 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378980 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":378992 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379004 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379020 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379032 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379044 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379060 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379072 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379084 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379100 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379112 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379124 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379140 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379152 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379164 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379180 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379192 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379204 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379220 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379232 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379244 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379260 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379272 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379284 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379300 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379312 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379324 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379340 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379352 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379364 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379380 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379392 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379404 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379420 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379432 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379444 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379460 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379472 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379484 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379500 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379512 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379524 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379540 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379552 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379564 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379580 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379592 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379604 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379620 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379632 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379644 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379660 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379672 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379684 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379700 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379712 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379724 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379740 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379752 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379764 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379780 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379792 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379804 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379820 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379832 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379844 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379860 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379872 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379884 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379900 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379912 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379924 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379940 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379952 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":379964 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379980 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":379992 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380004 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380020 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380032 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380044 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380060 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380072 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380084 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380100 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380112 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380124 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380140 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380152 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380164 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380180 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380192 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380204 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380220 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380232 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380244 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380260 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380272 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380284 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380300 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380312 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380324 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380340 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380352 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380364 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380380 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380392 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380404 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380420 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380432 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380444 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380460 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380472 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380484 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380500 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380512 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380524 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380540 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380552 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380564 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380580 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380592 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380604 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380620 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380632 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380644 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380660 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380672 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380684 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380700 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380712 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380724 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380740 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380752 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380764 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380780 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380792 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380804 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380820 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380832 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380844 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380860 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380872 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380884 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380900 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380912 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380924 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380940 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380952 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":380964 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380980 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":380992 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381004 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381020 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381032 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381044 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381060 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381072 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381084 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381100 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381112 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381124 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381140 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381152 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381164 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381180 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381192 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381204 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381220 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381232 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381244 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381260 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381272 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381284 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381300 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381312 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381324 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381340 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381352 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381364 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381380 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381392 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381404 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381420 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381432 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381444 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381460 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381472 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381484 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381500 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381512 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381524 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381540 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381552 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381564 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381580 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381592 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381604 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381620 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381632 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381644 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381660 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381672 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381684 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381700 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381712 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381724 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381740 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381752 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381764 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381780 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381792 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381804 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381820 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381832 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381844 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381860 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381872 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381884 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381900 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381912 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381924 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381940 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381952 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":381964 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381980 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":381992 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382004 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382020 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382032 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382044 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382060 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382072 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382084 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382100 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382112 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382124 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382140 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382152 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382164 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382180 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382192 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382204 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382220 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382232 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382244 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382260 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382272 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382284 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382300 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382312 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382324 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382340 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382352 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382364 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382380 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382392 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382404 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382420 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382432 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382444 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382460 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382472 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382484 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382500 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382512 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382524 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382540 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382552 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382564 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382580 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382592 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382604 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382620 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382632 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382644 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382660 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382672 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382684 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382700 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382712 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382724 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382740 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382752 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382764 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382780 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382792 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382804 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382820 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382832 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382844 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382860 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382872 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382884 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382900 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382912 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382924 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382940 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382952 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":382964 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382980 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":382992 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383004 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383020 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383032 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383044 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383060 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383072 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383084 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383100 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383112 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383124 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383140 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383152 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383164 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383180 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383192 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383204 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383220 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383232 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383244 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383260 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383272 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383284 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383300 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383312 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383324 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383340 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383352 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383364 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383380 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383392 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383404 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383420 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383432 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383444 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383460 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383472 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383484 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383500 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383512 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383524 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383540 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383552 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383564 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383580 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383592 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383604 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383620 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383632 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383644 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383660 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383672 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383684 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383700 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383712 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383724 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383740 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383752 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383764 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383780 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383792 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383804 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383820 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383832 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383844 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383860 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383872 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383884 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383900 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383912 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383924 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383940 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383952 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":383964 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383980 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":383992 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":384004 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":384020 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":384032 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":384044 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":384060 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":384072 + }, + { + "buffer":0, + "byteLength":16, + "byteOffset":384084 + }, + { + "buffer":0, + "byteLength":12, + "byteOffset":384100 + }, + { + "buffer":0, + "byteLength":884, + "byteOffset":384112 + }, + { + "buffer":0, + "byteLength":2652, + "byteOffset":384996 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":387648 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":387656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":387688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":387712 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":387736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":387768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":387792 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":387816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":387848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":387872 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":387896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":387928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":387952 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":387976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388032 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388192 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388272 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388352 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388432 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388512 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388592 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388672 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388752 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388832 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388912 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":388936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":388992 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389072 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389152 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389232 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389312 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389392 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389472 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389552 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389632 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389712 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389792 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389872 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":389952 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":389976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390032 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390192 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390272 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390352 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390432 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390512 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390592 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390672 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390752 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390832 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390912 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":390936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":390992 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391072 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391152 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391232 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391312 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391392 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391472 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391552 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391632 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391712 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391792 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391872 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":391952 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":391976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392032 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":392056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":392136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392192 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":392216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392272 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":392296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392352 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":392376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392432 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":392456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":392512 + }, + { + "buffer":0, + "byteLength":3536, + "byteOffset":392536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":396072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":396096 + }, + { + "buffer":0, + "byteLength":3536, + "byteOffset":396120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":399656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":399680 + }, + { + "buffer":0, + "byteLength":3536, + "byteOffset":399704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":403240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":403264 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":403288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":403320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":403344 + }, + { + "buffer":0, + "byteLength":3536, + "byteOffset":403368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":406904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":406928 + }, + { + "buffer":0, + "byteLength":3536, + "byteOffset":406952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":410488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":410512 + }, + { + "buffer":0, + "byteLength":3536, + "byteOffset":410536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":414072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":414096 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":414120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":414152 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":414176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":414184 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":414208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":414240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":414264 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":414288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":414320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":414344 + }, + { + "buffer":0, + "byteLength":1204, + "byteOffset":414368 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":415572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":420388 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":420412 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":420436 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":425252 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":425276 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":425300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":425332 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":425356 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":425380 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":430196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":430220 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":430244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435060 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435084 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435140 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435164 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435188 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435220 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435244 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435268 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435324 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435348 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435380 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435404 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435428 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435460 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435484 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435508 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435540 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435564 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435588 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435620 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435644 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435668 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435700 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435724 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435748 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435780 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435804 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435828 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435860 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435884 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435908 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435940 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":435964 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":435988 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436020 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436044 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":436068 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436100 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436124 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":436148 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436180 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436204 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":436228 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436260 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436284 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":436308 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436340 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436364 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":436388 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436420 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":436444 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":436468 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":441284 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":441308 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":441332 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":446148 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":446172 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":446196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":451012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":451036 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":451060 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":455876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":455900 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":455924 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":460740 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":460764 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":460788 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":460820 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":460844 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":460868 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":460900 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":460924 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":460948 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":460980 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":461004 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":461028 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":465844 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":465868 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":465892 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":470708 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":470732 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":470756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":470788 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":470812 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":470836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":475652 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":475676 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":475700 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":480516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":480540 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":480564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":485380 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":485404 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":485428 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":490244 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":490268 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":490292 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":490324 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":490348 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":490372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":490404 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":490428 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":490452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":495268 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":495292 + }, + { + "buffer":0, + "byteLength":4816, + "byteOffset":495316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500132 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500156 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":500180 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500212 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500236 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":500260 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500292 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500316 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":500340 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500396 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":500420 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500476 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":500500 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500532 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500556 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":500580 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500612 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500636 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":500660 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500692 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500716 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":500740 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500772 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500796 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":500820 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500852 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500876 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":500900 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500932 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":500956 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":500980 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501036 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501060 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501092 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501116 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501140 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501172 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501196 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501220 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501252 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501276 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501332 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501356 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501380 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501412 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501436 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501460 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501492 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501516 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501540 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501596 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501620 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501652 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501676 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501700 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501732 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501756 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501780 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501812 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501836 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501860 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501892 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501916 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":501940 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501972 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":501996 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":502020 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502052 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502076 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":502100 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502132 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502156 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":502180 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502212 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502236 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":502260 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":502332 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":502340 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502396 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":502420 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502476 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":502500 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502620 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":502644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502740 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502764 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":502788 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502820 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502844 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":502868 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":502988 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":503012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503132 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":503156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503252 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503276 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":503300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503332 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503356 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":503380 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503412 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503436 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":503460 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503492 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503516 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":503540 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503572 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503596 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":503620 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503652 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503676 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":503700 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503732 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503756 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":503780 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503812 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503836 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":503860 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503892 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503916 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":503940 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503972 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":503996 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":504020 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504052 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504076 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":504100 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504132 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504156 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":504180 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504212 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504236 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":504260 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504292 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504316 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":504340 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504372 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504396 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":504420 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504452 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504476 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":504500 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504532 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504556 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":504580 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504700 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":504724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504820 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504844 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":504868 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":504988 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":505012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505132 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":505156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505252 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505276 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":505300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505396 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505420 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":505444 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505476 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505500 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":505524 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505580 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":505604 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505700 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505724 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":505748 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505780 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505804 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":505828 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505924 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":505948 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":505972 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506004 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506028 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":506052 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506148 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506172 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":506196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506292 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506316 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":506340 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506436 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506460 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":506484 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506516 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506540 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":506564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506620 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":506644 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506740 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506764 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":506788 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506884 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":506908 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":506932 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507028 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507052 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507076 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507132 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507188 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507212 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507236 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507268 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507292 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507316 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507348 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507372 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507396 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507428 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507452 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507476 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507508 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507532 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507556 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507588 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507612 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507636 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507668 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507692 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507716 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507748 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507772 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507796 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507828 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507852 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507876 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507908 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507932 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":507956 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":507988 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508012 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":508036 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508068 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508092 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":508116 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508148 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508172 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":508196 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508228 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508252 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":508276 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508308 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508332 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":508356 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508388 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508412 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":508436 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508532 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508556 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":508580 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508700 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":508724 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508820 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508844 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":508868 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508964 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":508988 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":509012 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509108 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509132 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":509156 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509252 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509276 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":509300 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509396 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509420 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":509444 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509540 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":509564 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509572 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":509596 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509628 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509652 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":509676 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509708 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509732 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":509756 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509788 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509812 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":509836 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509868 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509892 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":509916 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509948 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":509972 + }, + { + "buffer":0, + "byteLength":124, + "byteOffset":509996 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":510120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":510616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":510640 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":510664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":511160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":511184 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":511208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":511704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":511728 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":511752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":511784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":511808 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":511832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":511864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":511888 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":511912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":511944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":511968 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":511992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512048 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512128 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512208 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512288 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512368 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512448 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512528 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512608 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512688 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512768 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512848 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512928 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":512952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":512984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":513008 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":513032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":513064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":513088 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":513112 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":513144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":513168 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":513192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":513688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":513712 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":513736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":514232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":514256 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":514280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":514776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":514800 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":514824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":515320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":515344 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":515368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":515400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":515424 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":515448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":515480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":515504 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":515528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":516024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":516048 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":516072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":516104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":516128 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":516152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":516648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":516672 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":516696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":516728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":516752 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":516776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":517272 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":517296 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":517320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":517816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":517840 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":517864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":518360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":518384 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":518408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":518440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":518464 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":518488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":518520 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":518544 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":518568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":519064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":519088 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":519112 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":519608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":519632 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":519656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520176 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":520200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520256 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":520280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520336 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":520360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520416 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":520440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520496 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":520520 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520576 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":520600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520656 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":520680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520736 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":520760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520816 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":520840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520896 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":520920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":520976 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":521000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521056 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":521080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521112 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521136 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":521160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521216 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":521240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521272 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521296 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":521320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521352 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521376 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":521400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521456 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":521480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":521536 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":521560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":522056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":522080 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":522104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":522600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":522624 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":522648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":523144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":523168 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":523192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":523688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":523712 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":523736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":524232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":524256 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":524280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":524776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":524800 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":524824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":525320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":525344 + }, + { + "buffer":0, + "byteLength":496, + "byteOffset":525368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":525864 + }, + { + "buffer":0, + "byteLength":72, + "byteOffset":525888 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":525960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":525992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526016 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":526040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526096 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":526120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526240 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":526264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526384 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":526408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526464 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":526488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526608 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":526632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526752 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":526776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526896 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":526920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":526976 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527056 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527112 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527136 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527216 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527272 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527296 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527352 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527376 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527456 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527536 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527616 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527696 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527720 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527776 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527856 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527880 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527936 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":527960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":527992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528016 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":528040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528096 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":528120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528176 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":528200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528320 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":528344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528464 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":528488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528608 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":528632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528752 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":528776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":528896 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":528920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529040 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":529064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529120 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":529144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529200 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":529224 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529344 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":529368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529424 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":529448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529568 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":529592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529648 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":529672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529792 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":529816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":529936 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":529960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530080 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":530104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530160 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":530184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530240 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":530264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530384 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":530408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530528 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":530552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530672 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":530696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530752 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":530776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530832 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":530856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530912 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":530936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":530992 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531072 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531152 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531232 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531312 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531392 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531472 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531552 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531632 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531712 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531792 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531872 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":531952 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":531976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532032 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":532056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532176 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":532200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532320 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":532344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532464 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":532488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532608 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":532632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532752 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":532776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":532896 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":532920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533040 + }, + { + "buffer":0, + "byteLength":96, + "byteOffset":533064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533160 + }, + { + "buffer":0, + "byteLength":84, + "byteOffset":533184 + }, + { + "buffer":0, + "byteLength":252, + "byteOffset":533268 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":533520 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":533528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533584 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":533608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533664 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":533688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533720 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533744 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":533768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533824 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":533848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533880 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533904 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":533928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":533984 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534064 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534144 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534224 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534304 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534384 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534464 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534520 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534544 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534624 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534704 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534784 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534864 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":534944 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":534968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535024 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535104 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535184 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535264 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535344 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535424 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535504 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535584 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535664 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535720 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535744 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535824 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535880 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535904 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":535928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":535984 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536064 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536144 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536224 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536304 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536384 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536464 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536520 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536544 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536624 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536704 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536784 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536864 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":536944 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":536968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537024 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537104 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537184 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537264 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537344 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537424 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537504 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537584 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537664 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537720 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537744 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537824 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537880 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537904 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":537928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":537984 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":538008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538064 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":538088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538144 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":538168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538224 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":538248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538304 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":538328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538384 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":538408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":538768 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":538792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":539128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":539152 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":539176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":539512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":539536 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":539560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":539896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":539920 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":539944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":540280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":540304 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":540328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":540664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":540688 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":540712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":541048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":541072 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":541096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":541432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":541456 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":541480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":541512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":541536 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":541560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":541592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":541616 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":541640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":541976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":542000 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":542024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":542360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":542384 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":542408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":542744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":542768 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":542792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543152 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":543176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543536 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":543560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543616 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":543640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543696 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":543720 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543776 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":543800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543856 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":543880 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543936 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":543960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":543992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544016 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":544040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544096 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":544120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544176 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":544200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544256 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":544280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544336 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":544360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544416 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":544440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544496 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":544520 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544576 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":544600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544656 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":544680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544736 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":544760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544792 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544816 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":544840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544872 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":544896 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":544920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545280 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":545304 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545360 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":545384 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545440 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":545464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545520 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":545544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545600 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":545624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545680 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":545704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545760 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":545784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545840 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":545864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545920 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":545944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":545976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546000 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":546024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546080 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":546104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546160 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":546184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546240 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":546264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546320 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":546344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546400 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":546424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546480 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":546504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":546864 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":546888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547224 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547248 + }, + { + "buffer":0, + "byteLength":336, + "byteOffset":547272 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547632 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":547656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547712 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":547736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547792 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":547816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547872 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":547896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":547952 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":547976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548032 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548192 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548272 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548352 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548432 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548512 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548592 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548672 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548752 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548832 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548912 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":548936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":548992 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":549016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549072 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":549096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549152 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":549176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549232 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":549256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549312 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":549336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549392 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":549416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549472 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":549496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549552 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":549576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549632 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":549656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549688 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":549712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549720 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":549744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":549800 + }, + { + "buffer":0, + "byteLength":64, + "byteOffset":549824 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":549888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":550144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":550168 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":550192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":550448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":550472 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":550496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":550752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":550776 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":550800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":551056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":551080 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":551104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":551360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":551384 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":551408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":551664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":551688 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":551712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":551968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":551992 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552072 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552152 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552232 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552312 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552392 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552472 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552552 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552632 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552712 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552792 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552872 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":552952 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":552976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553032 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":553056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":553136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553192 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":553216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553272 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":553296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553576 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":553600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553656 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":553680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":553960 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":553984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":554240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":554264 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":554288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":554544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":554568 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":554592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":554624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":554648 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":554672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":554704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":554728 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":554752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":554784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":554808 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":554832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":555088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":555112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":555136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":555168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":555192 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":555216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":555472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":555496 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":555520 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":555552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":555576 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":555600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":555856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":555880 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":555904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":556160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":556184 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":556208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":556464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":556488 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":556512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":556544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":556568 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":556592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":556848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":556872 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":556896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":557152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":557176 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":557200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":557456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":557480 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":557504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":557760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":557784 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":557808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":557840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":557864 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":557888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":557920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":557944 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":557968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558024 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558104 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558184 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558264 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558344 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558424 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558504 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558584 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558664 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558720 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558744 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558824 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558880 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558904 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":558928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":558984 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":559008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559064 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":559088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559144 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":559168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559224 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":559248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559304 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":559328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559384 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":559408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559464 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":559488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559520 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559544 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":559568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559624 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":559648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559704 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":559728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559784 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":559808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":559864 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":559888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":560144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":560168 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":560192 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":560448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":560472 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":560496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":560752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":560776 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":560800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":561056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":561080 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":561104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":561360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":561384 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":561408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":561664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":561688 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":561712 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":561968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":561992 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562072 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562152 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562232 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562312 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562392 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562472 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562552 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562632 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562712 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562792 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562872 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":562952 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":562976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563032 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":563056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":563136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563192 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":563216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563272 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":563296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563576 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":563600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563656 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":563680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":563960 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":563984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":564240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":564264 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":564288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":564544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":564568 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":564592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":564624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":564648 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":564672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":564704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":564728 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":564752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":564784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":564808 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":564832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":565088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":565112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":565136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":565168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":565192 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":565216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":565472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":565496 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":565520 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":565552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":565576 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":565600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":565856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":565880 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":565904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":566160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":566184 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":566208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":566464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":566488 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":566512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":566544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":566568 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":566592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":566848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":566872 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":566896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":567152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":567176 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":567200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":567456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":567480 + }, + { + "buffer":0, + "byteLength":256, + "byteOffset":567504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":567760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":567784 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":567808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":567840 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":567864 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":567888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":567920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":567944 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":567968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568024 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568104 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568160 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568184 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568240 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568264 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568320 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568344 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568400 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568424 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568504 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568528 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568560 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568584 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568608 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568640 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568664 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568688 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568720 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568744 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568824 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568880 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568904 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":568928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568960 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":568984 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":569008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569040 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569064 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":569088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569120 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569144 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":569168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569224 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":569248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569280 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569304 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":569328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569360 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569384 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":569408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569440 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569464 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":569488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569520 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569544 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":569568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569624 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":569648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569680 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569704 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":569728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":569760 + }, + { + "buffer":0, + "byteLength":248, + "byteOffset":569784 + }, + { + "buffer":0, + "byteLength":744, + "byteOffset":570032 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":570776 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":571768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":571776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":571800 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":571824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":572816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":572840 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":572864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":573856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":573880 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":573904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":574896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":574920 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":574944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":574976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":575000 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":575024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":576016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":576040 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":576064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":577056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":577080 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":577104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578120 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":578144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578200 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":578224 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578280 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":578304 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578360 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":578384 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578440 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":578464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578520 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":578544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578600 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":578624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578680 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":578704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578760 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":578784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578840 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":578864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578920 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":578944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":578976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":579000 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":579024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":579056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":579080 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":579104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":579136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":579160 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":579184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":579216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":579240 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":579264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":579296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":579320 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":579344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":579376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":579400 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":579424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":580416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":580440 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":580464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581480 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":581504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581560 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":581584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581640 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":581664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581720 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":581744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581800 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":581824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581880 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":581904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":581960 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":581984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582040 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":582064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582120 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":582144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582200 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":582224 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582280 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":582304 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582360 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":582384 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582440 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":582464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582520 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":582544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582576 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":582600 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":582624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":583616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":583640 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":583664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":584656 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":584680 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":584704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":585696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":585720 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":585744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":586736 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":586760 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":586784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":586816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":586840 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":586864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":586896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":586920 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":586944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":586976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587000 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587080 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587160 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587240 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587320 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587400 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587480 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587560 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587640 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587720 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587744 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587800 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587824 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587880 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587904 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":587960 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":587984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":588016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":588040 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":588064 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":588096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":588120 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":588144 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":589136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":589160 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":589184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":590176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":590200 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":590224 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":591216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":591240 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":591264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":591296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":591320 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":591344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":592336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":592360 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":592384 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":593376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":593400 + }, + { + "buffer":0, + "byteLength":992, + "byteOffset":593424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":594416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":594440 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":594464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":594496 + }, + { + "buffer":0, + "byteLength":280, + "byteOffset":594520 + }, + { + "buffer":0, + "byteLength":840, + "byteOffset":594800 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":595640 + }, + { + "buffer":0, + "byteLength":8, + "byteOffset":596760 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":596768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":596792 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":596816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":597936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":597960 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":597984 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":599104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":599128 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":599152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":599184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":599208 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":599232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":599264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":599288 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":599312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":600432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":600456 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":600480 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":601600 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":601624 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":601648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":602768 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":602792 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":602816 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":602848 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":602872 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":602896 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":602928 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":602952 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":602976 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603008 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603032 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603056 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603192 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603272 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603352 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603432 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603512 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603592 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603672 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603752 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603832 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603912 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":603936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":603992 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":604016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":604048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":604072 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":604096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":605216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":605240 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":605264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606384 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606408 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":606432 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606464 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606488 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":606512 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606544 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606568 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":606592 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606624 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606648 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":606672 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606704 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606728 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":606752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606808 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":606832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606864 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606888 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":606912 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606944 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":606968 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":606992 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607024 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607048 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":607072 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607104 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607128 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":607152 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607184 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607208 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":607232 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607264 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607288 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":607312 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607344 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607368 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":607392 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607424 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607448 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":607472 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607504 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607528 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":607552 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":607608 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":607632 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":608752 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":608776 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":608800 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":609920 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":609944 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":609968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611088 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611112 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":611136 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611168 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611192 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":611216 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611272 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":611296 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611328 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611352 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":611376 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611408 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611432 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":611456 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611488 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611512 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":611536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611568 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611592 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":611616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611648 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611672 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":611696 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611728 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611752 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":611776 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611808 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611832 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":611856 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611888 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611912 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":611936 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611968 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":611992 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":612016 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612048 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612072 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":612096 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612128 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612152 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":612176 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612208 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612232 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":612256 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612288 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612312 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":612336 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612392 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":612416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612448 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":612472 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":612496 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":613616 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":613640 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":613664 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":614784 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":614808 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":614832 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":615952 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":615976 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":616000 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":616032 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":616056 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":616080 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":617200 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":617224 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":617248 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":618368 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":618392 + }, + { + "buffer":0, + "byteLength":1120, + "byteOffset":618416 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":619536 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":619560 + }, + { + "buffer":0, + "byteLength":32, + "byteOffset":619584 + }, + { + "buffer":0, + "byteLength":24, + "byteOffset":619616 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":619640, + "uri":"Sinbad.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.mesh.xml b/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.mesh.xml deleted file mode 100644 index 1909ec0cdc..0000000000 --- a/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.mesh.xml +++ /dev/null @@ -1,44303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.skeleton.xml b/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.skeleton.xml deleted file mode 100644 index 798212dbb9..0000000000 --- a/jme3-testdata/src/main/resources/Models/Sinbad/Sinbad.skeleton.xml +++ /dev/null @@ -1,126454 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/Sinbad/Sword.bin b/jme3-testdata/src/main/resources/Models/Sinbad/Sword.bin new file mode 100644 index 0000000000..7dc5a0acd5 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Sinbad/Sword.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Sinbad/Sword.gltf b/jme3-testdata/src/main/resources/Models/Sinbad/Sword.gltf new file mode 100644 index 0000000000..0b670bffb9 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Sinbad/Sword.gltf @@ -0,0 +1,383 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"Sword" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Sinbad/Ruby", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"Sinbad/Hilt", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":1 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"Sinbad/Handle", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":2 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + }, + { + "doubleSided":true, + "name":"Sinbad/Blade", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":3 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Sword", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + }, + { + "attributes":{ + "POSITION":8, + "NORMAL":9, + "TEXCOORD_0":10 + }, + "indices":11, + "material":2 + }, + { + "attributes":{ + "POSITION":12, + "NORMAL":13, + "TEXCOORD_0":14 + }, + "indices":15, + "material":3 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":0 + }, + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/jpeg", + "name":"sinbad_sword", + "uri":"sinbad_sword.jpg" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":72, + "max":[ + 0.23798799514770508, + 0.34813499450683594, + 0.11823099851608276 + ], + "min":[ + -0.23826900124549866, + -0.34821000695228577, + -0.11900100111961365 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":72, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":72, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":72, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":132, + "max":[ + 0.1692499965429306, + 0.9428380131721497, + 0.6371889710426331 + ], + "min":[ + -0.16968299448490143, + -0.9286580085754395, + -0.1476919949054718 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":132, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":132, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":372, + "type":"SCALAR" + }, + { + "bufferView":8, + "componentType":5126, + "count":77, + "max":[ + 0.1737779974937439, + 0.17201100289821625, + -0.12992799282073975 + ], + "min":[ + -0.17421099543571472, + -0.17597800493240356, + -1.7466399669647217 + ], + "type":"VEC3" + }, + { + "bufferView":9, + "componentType":5126, + "count":77, + "type":"VEC3" + }, + { + "bufferView":10, + "componentType":5126, + "count":77, + "type":"VEC2" + }, + { + "bufferView":11, + "componentType":5123, + "count":288, + "type":"SCALAR" + }, + { + "bufferView":12, + "componentType":5126, + "count":86, + "max":[ + 0.08562599867582321, + 1.0013699531555176, + 5.516310214996338 + ], + "min":[ + -0.08605899661779404, + -0.26499998569488525, + 0.10970599949359894 + ], + "type":"VEC3" + }, + { + "bufferView":13, + "componentType":5126, + "count":86, + "type":"VEC3" + }, + { + "bufferView":14, + "componentType":5126, + "count":86, + "type":"VEC2" + }, + { + "bufferView":15, + "componentType":5123, + "count":234, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":864, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":864, + "byteOffset":864, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":1728, + "target":34962 + }, + { + "buffer":0, + "byteLength":144, + "byteOffset":2304, + "target":34963 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":2448, + "target":34962 + }, + { + "buffer":0, + "byteLength":1584, + "byteOffset":4032, + "target":34962 + }, + { + "buffer":0, + "byteLength":1056, + "byteOffset":5616, + "target":34962 + }, + { + "buffer":0, + "byteLength":744, + "byteOffset":6672, + "target":34963 + }, + { + "buffer":0, + "byteLength":924, + "byteOffset":7416, + "target":34962 + }, + { + "buffer":0, + "byteLength":924, + "byteOffset":8340, + "target":34962 + }, + { + "buffer":0, + "byteLength":616, + "byteOffset":9264, + "target":34962 + }, + { + "buffer":0, + "byteLength":576, + "byteOffset":9880, + "target":34963 + }, + { + "buffer":0, + "byteLength":1032, + "byteOffset":10456, + "target":34962 + }, + { + "buffer":0, + "byteLength":1032, + "byteOffset":11488, + "target":34962 + }, + { + "buffer":0, + "byteLength":688, + "byteOffset":12520, + "target":34962 + }, + { + "buffer":0, + "byteLength":468, + "byteOffset":13208, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":13676, + "uri":"Sword.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Sinbad/Sword.mesh.xml b/jme3-testdata/src/main/resources/Models/Sinbad/Sword.mesh.xml deleted file mode 100644 index eafa077b29..0000000000 --- a/jme3-testdata/src/main/resources/Models/Sinbad/Sword.mesh.xml +++ /dev/null @@ -1,2193 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/SpaceCraft/OgreXMLConverter.log b/jme3-testdata/src/main/resources/Models/SpaceCraft/OgreXMLConverter.log new file mode 100644 index 0000000000..3c197d13b7 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/SpaceCraft/OgreXMLConverter.log @@ -0,0 +1,28 @@ +02:18:38: Creating resource group General +02:18:38: Creating resource group OgreInternal +02:18:38: Creating resource group OgreAutodetect +02:18:38: Registering ResourceManager for type Mesh +02:18:38: Registering ResourceManager for type Material +02:18:38: Registering ResourceManager for type Skeleton +02:18:38: XMLMeshSerializer reading mesh data from C:\Users\USER\Desktop\Projects\Open Source\jmonkeyengine\jme3-testdata\src\main\resources\Models\SpaceCraft\Rocket.mesh.xml... +02:18:38: Reading submeshes... +02:18:38: Reading geometry... +02:18:38: Geometry done... +02:18:38: Submeshes done. +02:18:38: XMLMeshSerializer import successful. +02:18:38: MeshSerializer writing mesh data to stream ... +02:18:38: File header written. +02:18:38: Writing mesh data... +02:18:38: Writing submesh... +02:18:38: Exporting submesh texture aliases... +02:18:38: Submesh texture aliases exported. +02:18:38: Submesh exported. +02:18:38: Exporting bounds information.... +02:18:38: Bounds information exported. +02:18:38: Exporting submesh name table... +02:18:38: Submesh name table exported. +02:18:38: Mesh data exported. +02:18:38: MeshSerializer export successful. +02:18:38: Unregistering ResourceManager for type Skeleton +02:18:38: Unregistering ResourceManager for type Material +02:18:38: Unregistering ResourceManager for type Mesh diff --git a/jme3-testdata/src/main/resources/Models/SpaceCraft/Rocket.bin b/jme3-testdata/src/main/resources/Models/SpaceCraft/Rocket.bin new file mode 100644 index 0000000000..63f0e73b51 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/SpaceCraft/Rocket.bin differ diff --git a/jme3-testdata/src/main/resources/Models/SpaceCraft/Rocket.gltf b/jme3-testdata/src/main/resources/Models/SpaceCraft/Rocket.gltf new file mode 100644 index 0000000000..0fe6520c35 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/SpaceCraft/Rocket.gltf @@ -0,0 +1,124 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"Rocket" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"SOLID/TEX/Rocket.tga", + "pbrMetallicRoughness":{ + "baseColorTexture":{ + "index":0 + }, + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Rocket", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1 + }, + "indices":2, + "material":0 + } + ] + } + ], + "textures":[ + { + "sampler":0, + "source":0 + } + ], + "images":[ + { + "mimeType":"image/png", + "name":"Rocket", + "uri":"Rocket.png" + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":179, + "max":[ + 0.4230769872665405, + 0.4230769872665405, + 1.067463994026184 + ], + "min":[ + -0.4230769872665405, + -0.4230769872665405, + -0.9325349926948547 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":179, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5123, + "count":804, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":2148, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":2148, + "byteOffset":2148, + "target":34962 + }, + { + "buffer":0, + "byteLength":1608, + "byteOffset":4296, + "target":34963 + } + ], + "samplers":[ + { + "magFilter":9729, + "minFilter":9987 + } + ], + "buffers":[ + { + "byteLength":5904, + "uri":"Rocket.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/SpaceCraft/Rocket.mesh.xml b/jme3-testdata/src/main/resources/Models/SpaceCraft/Rocket.mesh.xml deleted file mode 100644 index 14164245c1..0000000000 --- a/jme3-testdata/src/main/resources/Models/SpaceCraft/Rocket.mesh.xml +++ /dev/null @@ -1,1150 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/Teapot/OgreXMLConverter.log b/jme3-testdata/src/main/resources/Models/Teapot/OgreXMLConverter.log new file mode 100644 index 0000000000..b3cbe183a6 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Teapot/OgreXMLConverter.log @@ -0,0 +1,37 @@ +02:13:11: Creating resource group General +02:13:11: Creating resource group OgreInternal +02:13:11: Creating resource group OgreAutodetect +02:13:11: Registering ResourceManager for type Mesh +02:13:11: Registering ResourceManager for type Material +02:13:11: Registering ResourceManager for type Skeleton +02:13:11: XMLMeshSerializer reading mesh data from C:\Users\USER\Desktop\Projects\Open Source\jmonkeyengine\jme3-testdata\src\main\resources\Models\Teapot\Teapot.mesh.xml... +02:13:11: Reading submeshes... +02:13:11: Reading geometry... +02:13:11: Geometry done... +02:13:11: Submeshes done. +02:13:11: Parsing LOD information... +02:13:11: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:13:11: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:13:11: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:13:11: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:13:11: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +02:13:11: LOD information done. +02:13:11: XMLMeshSerializer import successful. +02:13:11: MeshSerializer writing mesh data to stream ... +02:13:11: File header written. +02:13:11: Writing mesh data... +02:13:11: Writing submesh... +02:13:11: Exporting submesh texture aliases... +02:13:11: Submesh texture aliases exported. +02:13:11: Submesh exported. +02:13:11: Exporting LOD information.... +02:13:11: LOD information exported. +02:13:11: Exporting bounds information.... +02:13:11: Bounds information exported. +02:13:11: Exporting submesh name table... +02:13:11: Submesh name table exported. +02:13:11: Mesh data exported. +02:13:11: MeshSerializer export successful. +02:13:11: Unregistering ResourceManager for type Skeleton +02:13:11: Unregistering ResourceManager for type Material +02:13:11: Unregistering ResourceManager for type Mesh diff --git a/jme3-testdata/src/main/resources/Models/Teapot/Teapot.bin b/jme3-testdata/src/main/resources/Models/Teapot/Teapot.bin new file mode 100644 index 0000000000..a63072399a Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Teapot/Teapot.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Teapot/Teapot.gltf b/jme3-testdata/src/main/resources/Models/Teapot/Teapot.gltf new file mode 100644 index 0000000000..040ab97e4c --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Teapot/Teapot.gltf @@ -0,0 +1,121 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"Teapot" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Material.001", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.4000000059604645 + } + } + ], + "meshes":[ + { + "name":"Teapot", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":3242, + "max":[ + 3.3138298988342285, + 3.0397698879241943, + 1.9300099611282349 + ], + "min":[ + -2.895020008087158, + 0, + -1.9300099611282349 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":3242, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":3242, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":18960, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":38904, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":38904, + "byteOffset":38904, + "target":34962 + }, + { + "buffer":0, + "byteLength":25936, + "byteOffset":77808, + "target":34962 + }, + { + "buffer":0, + "byteLength":37920, + "byteOffset":103744, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":141664, + "uri":"Teapot.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Teapot/Teapot.mesh b/jme3-testdata/src/main/resources/Models/Teapot/Teapot.mesh new file mode 100644 index 0000000000..0d4a3652ed Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Teapot/Teapot.mesh differ diff --git a/jme3-testdata/src/main/resources/Models/Terrain/Terrain.bin b/jme3-testdata/src/main/resources/Models/Terrain/Terrain.bin new file mode 100644 index 0000000000..1e08af42d8 Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Terrain/Terrain.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Terrain/Terrain.gltf b/jme3-testdata/src/main/resources/Models/Terrain/Terrain.gltf new file mode 100644 index 0000000000..5b752f036e --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Terrain/Terrain.gltf @@ -0,0 +1,108 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v5.1.19", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"Terrain" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Material.002", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"Terrain", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1 + }, + "indices":2, + "material":0 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":16641, + "max":[ + 1.0237549543380737, + 0.3361240029335022, + 1.0033459663391113 + ], + "min":[ + -1.0091140270233154, + 0, + -1.0095009803771973 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":16641, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5123, + "count":98304, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":199692, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":199692, + "byteOffset":199692, + "target":34962 + }, + { + "buffer":0, + "byteLength":196608, + "byteOffset":399384, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":595992, + "uri":"Terrain.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Terrain/Terrain.mesh.xml b/jme3-testdata/src/main/resources/Models/Terrain/Terrain.mesh.xml deleted file mode 100644 index 611fd9ef45..0000000000 --- a/jme3-testdata/src/main/resources/Models/Terrain/Terrain.mesh.xml +++ /dev/null @@ -1,115985 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/Tree/OgreXMLConverter.log b/jme3-testdata/src/main/resources/Models/Tree/OgreXMLConverter.log new file mode 100644 index 0000000000..67bddbda90 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Tree/OgreXMLConverter.log @@ -0,0 +1,43 @@ +10:51:14: Creating resource group General +10:51:14: Creating resource group OgreInternal +10:51:14: Creating resource group OgreAutodetect +10:51:14: Registering ResourceManager for type Mesh +10:51:14: Registering ResourceManager for type Material +10:51:14: Registering ResourceManager for type Skeleton +10:51:14: XMLMeshSerializer reading mesh data from C:\Users\USER\Desktop\Projects\Open Source\jmonkeyengine\jme3-testdata\src\main\resources\Models\Tree\Tree.mesh.xml... +10:51:14: Reading submeshes... +10:51:14: Reading geometry... +10:51:14: Geometry done... +10:51:14: Reading geometry... +10:51:14: Geometry done... +10:51:14: Submeshes done. +10:51:14: Parsing LOD information... +10:51:14: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +10:51:14: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +10:51:14: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +10:51:14: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +10:51:14: Warning: 'fromdepthsquared' attribute has been renamed to 'value'. +10:51:14: LOD information done. +10:51:14: XMLMeshSerializer import successful. +10:51:14: MeshSerializer writing mesh data to stream ... +10:51:14: File header written. +10:51:14: Writing mesh data... +10:51:14: Writing submesh... +10:51:14: Exporting submesh texture aliases... +10:51:14: Submesh texture aliases exported. +10:51:14: Submesh exported. +10:51:14: Writing submesh... +10:51:14: Exporting submesh texture aliases... +10:51:14: Submesh texture aliases exported. +10:51:14: Submesh exported. +10:51:14: Exporting LOD information.... +10:51:14: LOD information exported. +10:51:14: Exporting bounds information.... +10:51:14: Bounds information exported. +10:51:14: Exporting submesh name table... +10:51:14: Submesh name table exported. +10:51:14: Mesh data exported. +10:51:14: MeshSerializer export successful. +10:51:14: Unregistering ResourceManager for type Skeleton +10:51:14: Unregistering ResourceManager for type Material +10:51:14: Unregistering ResourceManager for type Mesh diff --git a/jme3-testdata/src/main/resources/Models/Tree/Tree.bin b/jme3-testdata/src/main/resources/Models/Tree/Tree.bin new file mode 100644 index 0000000000..4fe4c9289b Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/Tree/Tree.bin differ diff --git a/jme3-testdata/src/main/resources/Models/Tree/Tree.gltf b/jme3-testdata/src/main/resources/Models/Tree/Tree.gltf new file mode 100644 index 0000000000..4c72428e07 --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/Tree/Tree.gltf @@ -0,0 +1,202 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v4.2.83", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"Tree" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"Models/Tree/Leaves.j3m", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.4000000059604645 + } + }, + { + "doubleSided":true, + "name":"Models/Tree/Trunk.j3m", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.4000000059604645 + } + } + ], + "meshes":[ + { + "name":"Tree", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1, + "TEXCOORD_0":2 + }, + "indices":3, + "material":0 + }, + { + "attributes":{ + "POSITION":4, + "NORMAL":5, + "TEXCOORD_0":6 + }, + "indices":7, + "material":1 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":560, + "max":[ + 3.3475899696350098, + 4.063940048217773, + 2.8206899166107178 + ], + "min":[ + -3.262470006942749, + 0.9577670097351074, + -2.81033992767334 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":560, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5126, + "count":560, + "type":"VEC2" + }, + { + "bufferView":3, + "componentType":5123, + "count":1512, + "type":"SCALAR" + }, + { + "bufferView":4, + "componentType":5126, + "count":1414, + "max":[ + 1.7169100046157837, + 3.335210084915161, + 1.5843700170516968 + ], + "min":[ + -1.6450899839401245, + -0.06545700132846832, + -1.5077099800109863 + ], + "type":"VEC3" + }, + { + "bufferView":5, + "componentType":5126, + "count":1414, + "type":"VEC3" + }, + { + "bufferView":6, + "componentType":5126, + "count":1414, + "type":"VEC2" + }, + { + "bufferView":7, + "componentType":5123, + "count":6723, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":6720, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":6720, + "byteOffset":6720, + "target":34962 + }, + { + "buffer":0, + "byteLength":4480, + "byteOffset":13440, + "target":34962 + }, + { + "buffer":0, + "byteLength":3024, + "byteOffset":17920, + "target":34963 + }, + { + "buffer":0, + "byteLength":16968, + "byteOffset":20944, + "target":34962 + }, + { + "buffer":0, + "byteLength":16968, + "byteOffset":37912, + "target":34962 + }, + { + "buffer":0, + "byteLength":11312, + "byteOffset":54880, + "target":34962 + }, + { + "buffer":0, + "byteLength":13446, + "byteOffset":66192, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":79640, + "uri":"Tree.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/Tree/Tree.mesh.xml b/jme3-testdata/src/main/resources/Models/Tree/Tree.mesh.xml deleted file mode 100644 index 3c197b86c3..0000000000 --- a/jme3-testdata/src/main/resources/Models/Tree/Tree.mesh.xml +++ /dev/null @@ -1,20727 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Models/WaterTest/WaterTest.bin b/jme3-testdata/src/main/resources/Models/WaterTest/WaterTest.bin new file mode 100644 index 0000000000..89e1d6e9ba Binary files /dev/null and b/jme3-testdata/src/main/resources/Models/WaterTest/WaterTest.bin differ diff --git a/jme3-testdata/src/main/resources/Models/WaterTest/WaterTest.gltf b/jme3-testdata/src/main/resources/Models/WaterTest/WaterTest.gltf new file mode 100644 index 0000000000..79f50c3e0f --- /dev/null +++ b/jme3-testdata/src/main/resources/Models/WaterTest/WaterTest.gltf @@ -0,0 +1,108 @@ +{ + "asset":{ + "generator":"Khronos glTF Blender I/O v5.1.19", + "version":"2.0" + }, + "scene":0, + "scenes":[ + { + "name":"Scene", + "nodes":[ + 0 + ] + } + ], + "nodes":[ + { + "mesh":0, + "name":"WaterTest" + } + ], + "materials":[ + { + "doubleSided":true, + "name":"BaseWhite", + "pbrMetallicRoughness":{ + "baseColorFactor":[ + 0.800000011920929, + 0.800000011920929, + 0.800000011920929, + 1 + ], + "metallicFactor":0, + "roughnessFactor":0.5 + } + } + ], + "meshes":[ + { + "name":"WaterTest", + "primitives":[ + { + "attributes":{ + "POSITION":0, + "NORMAL":1 + }, + "indices":2, + "material":0 + } + ] + } + ], + "accessors":[ + { + "bufferView":0, + "componentType":5126, + "count":1089, + "max":[ + 1, + 0, + 1 + ], + "min":[ + -1, + 0, + -1 + ], + "type":"VEC3" + }, + { + "bufferView":1, + "componentType":5126, + "count":1089, + "type":"VEC3" + }, + { + "bufferView":2, + "componentType":5123, + "count":6144, + "type":"SCALAR" + } + ], + "bufferViews":[ + { + "buffer":0, + "byteLength":13068, + "byteOffset":0, + "target":34962 + }, + { + "buffer":0, + "byteLength":13068, + "byteOffset":13068, + "target":34962 + }, + { + "buffer":0, + "byteLength":12288, + "byteOffset":26136, + "target":34963 + } + ], + "buffers":[ + { + "byteLength":38424, + "uri":"WaterTest.bin" + } + ] +} diff --git a/jme3-testdata/src/main/resources/Models/WaterTest/WaterTest.mesh.xml b/jme3-testdata/src/main/resources/Models/WaterTest/WaterTest.mesh.xml deleted file mode 100644 index 6908e62aa9..0000000000 --- a/jme3-testdata/src/main/resources/Models/WaterTest/WaterTest.mesh.xml +++ /dev/null @@ -1,7505 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/jme3-testdata/src/main/resources/Scenes/ManyLights/Grid.bin b/jme3-testdata/src/main/resources/Scenes/ManyLights/Grid.bin new file mode 100644 index 0000000000..b67e43a98b Binary files /dev/null and b/jme3-testdata/src/main/resources/Scenes/ManyLights/Grid.bin differ diff --git a/jme3-testdata/src/main/resources/Scenes/ManyLights/Grid.gltf b/jme3-testdata/src/main/resources/Scenes/ManyLights/Grid.gltf new file mode 100644 index 0000000000..8acaccc668 --- /dev/null +++ b/jme3-testdata/src/main/resources/Scenes/ManyLights/Grid.gltf @@ -0,0 +1,149 @@ +{ + "asset": { + "version": "2.0", + "generator": "Open Asset Import Library (assimp v5.2.0)" + }, + "extensionsUsed": [ + "KHR_materials_volume", + "FB_ngon_encoding" + ], + "accessors": [ + { + "bufferView": 0, + "byteOffset": 0, + "componentType": 5126, + "count": 1300, + "type": "VEC3", + "max": [ + 1.0, + 0.15167899429798127, + 1.0 + ], + "min": [ + -1.0, + 0.0, + -1.0 + ] + }, + { + "bufferView": 1, + "byteOffset": 0, + "componentType": 5126, + "count": 1300, + "type": "VEC3", + "max": [ + 0.5773503184318543, + 1.0, + 0.5773503184318543 + ], + "min": [ + -0.5773503184318543, + 0.5773503184318543, + -0.5773503184318543 + ] + }, + { + "bufferView": 2, + "byteOffset": 0, + "componentType": 5126, + "count": 1300, + "type": "VEC2", + "max": [ + 0.9989989995956421, + 0.9989989995956421 + ], + "min": [ + 0.0010010000551119447, + 0.0010010004043579102 + ] + }, + { + "bufferView": 3, + "byteOffset": 0, + "componentType": 5125, + "count": 1950, + "type": "SCALAR", + "max": [ + 1299 + ], + "min": [ + 0 + ] + } + ], + "buffers": [ + { + "byteLength": 49400, + "uri": "Grid.bin" + } + ], + "bufferViews": [ + { + "buffer": 0, + "byteOffset": 0, + "byteLength": 15600, + "target": 34962 + }, + { + "buffer": 0, + "byteOffset": 15600, + "byteLength": 15600, + "target": 34962 + }, + { + "buffer": 0, + "byteOffset": 31200, + "byteLength": 10400, + "target": 34962 + }, + { + "buffer": 0, + "byteOffset": 41600, + "byteLength": 7800, + "target": 34963 + } + ], + "materials": [ + { + "name": "DefaultMaterial", + "pbrMetallicRoughness": { + "baseColorFactor": [ + 0.6000000238418579, + 0.6000000238418579, + 0.6000000238418579, + 1.0 + ], + "metallicFactor": 0.0 + } + } + ], + "meshes": [ + { + "primitives": [ + { + "mode": 4, + "material": 0, + "indices": 3, + "attributes": { + "POSITION": 0, + "NORMAL": 1, + "TEXCOORD_0": 2 + } + } + ] + } + ], + "nodes": [ + { + "mesh": 0 + } + ], + "scenes": [ + { + "nodes": [ + 0 + ] + } + ], + "scene": 0 +} \ No newline at end of file