From 85436f44b5de38110dd0c62cc4fcbda41fdd113f Mon Sep 17 00:00:00 2001 From: SabeDoesThings <122580233+SabeDoesThings@users.noreply.github.com> Date: Wed, 10 Jul 2024 11:47:08 -0500 Subject: [PATCH] Add files via upload --- samples/3DCameraModes.hx | 302 + samples/3d_camera_modes_res/Model.FBX | 8290 ++++++++++++++++++++ samples/3d_camera_modes_res/Skeleton01.png | Bin 0 -> 31635 bytes samples/3d_camera_modes_res/Sword01.png | Bin 0 -> 8978 bytes samples/3d_camera_modes_res/hxlogo.png | Bin 0 -> 19530 bytes 5 files changed, 8592 insertions(+) create mode 100644 samples/3DCameraModes.hx create mode 100644 samples/3d_camera_modes_res/Model.FBX create mode 100644 samples/3d_camera_modes_res/Skeleton01.png create mode 100644 samples/3d_camera_modes_res/Sword01.png create mode 100644 samples/3d_camera_modes_res/hxlogo.png diff --git a/samples/3DCameraModes.hx b/samples/3DCameraModes.hx new file mode 100644 index 000000000..f3890d564 --- /dev/null +++ b/samples/3DCameraModes.hx @@ -0,0 +1,302 @@ +package; + +import sdl.Sdl; // Import SDL library +import hxd.Window; // Import Window module from HaxeD +import hxd.System; // Import System module from HaxeD +import hxd.Event; // Import Event module from HaxeD +import h3d.Vector4; // Import Vector4 class from H3D +import h2d.Text; // Import Text class from H2D +import hxd.Key; // Import Key module from HaxeD + +// Define a Point class for 2D coordinates +class Point { + public var x:Float; + public var y:Float; + + public function new(x:Float = 0, y:Float = 0) { + this.x = x; + this.y = y; + } +} + +// Define a Rect class for a rectangle's position and dimensions +class Rect { + public var x:Float; + public var y:Float; + public var width:Float; + public var height:Float; + + public function new(x:Float = 0, y:Float = 0, width:Float = 0, height:Float = 0) { + this.x = x; + this.y = y; + this.width = width; + this.height = height; + } +} + +// Define an enum for different camera modes +enum CameraMode { + FirstPerson; // First-person camera mode + ThirdPerson; // Third-person camera mode +} + +// Main class extending HaxeD's App class +class Main extends hxd.App { + var light: h3d.scene.fwd.DirLight; // Directional light object + var player: h3d.scene.Object; // Player object + var floor: h3d.scene.Object; // Floor object + var playerPosition: Point; // Player's current position + var cameraDistance: Float; // Camera distance from player + var cameraHeight: Float; // Camera height from player + var cache: h3d.prim.ModelCache; // Model cache for storing loaded models + var isMoving: Bool = false; // Flag indicating if player is moving + var movementSpeed: Float = 0.0; // Current movement speed of player + var walkSpeed: Float = 0.04; // Base walking speed + var playerSpeed: Float; // Player's speed factor + var worldBounds: Rect; // World boundary rectangle + var walkingAnimation: h3d.anim.Animation; // Walking animation object + var cylinder: h3d.scene.Mesh; // Cylinder mesh for player + var circle: differ.shapes.Circle; // Circle shape for player collision + var obstacles: Array; // Array of obstacles in the scene + var cameraMode: CameraMode; // Current camera mode (FirstPerson or ThirdPerson) + var cameraModeText: Text; // Text object for displaying camera mode + var lastMouseX: Float = 0.0; // Last recorded mouse X position + var lastMouseY: Float = 0.0; // Last recorded mouse Y position + var mouseSensitivity: Float = 0.002; // Mouse sensitivity for camera control + var yaw: Float = 0.0; // Yaw angle for camera orientation + var pitch: Float = 0.0; // Pitch angle for camera orientation + + override function init() { + cameraMode = FirstPerson; // Initialize camera mode to FirstPerson + + // Setup directional light + light = new h3d.scene.fwd.DirLight(new h3d.Vector(0.3, -0.4, -0.9), s3d); + light.enableSpecular = true; + light.color.set(0.28, 0.28, 0.28); + + // Initialize model cache and load player model + cache = new h3d.prim.ModelCache(); + player = cache.loadModel(hxd.Res.Model); + player.scale(1 / 20); + player.rotate(0, 0, Math.PI / 2); + s3d.addChild(player); + + playerPosition = new Point(player.x, player.y); + + // Load walking animation + walkingAnimation = cache.loadAnimation(hxd.Res.Model); + worldBounds = new Rect(-10, -10, 20, 20); + + // Create floor mesh and set its properties + var prim = new h3d.prim.Cube(worldBounds.width, worldBounds.height, 1.0); + prim.unindex(); + prim.addNormals(); + prim.addUVs(); + var tex = hxd.Res.load("hxlogo.png").toImage().toTexture(); + var mat = h3d.mat.Material.create(tex); + var floor = new h3d.scene.Mesh(prim, mat, s3d); + floor.material.color.setColor(0xFFB280); + floor.x = worldBounds.x; + floor.y = worldBounds.y; + floor.z = -1; + + // Initialize obstacle array with boundary polygons and random cubes + obstacles = []; + obstacles.push(differ.shapes.Polygon.rectangle(worldBounds.x - 1, worldBounds.y - 1, worldBounds.width + 1, 1, false)); + obstacles.push(differ.shapes.Polygon.rectangle(worldBounds.x + worldBounds.width, worldBounds.y - 1, 1, worldBounds.height + 1, false)); + obstacles.push(differ.shapes.Polygon.rectangle(worldBounds.x, worldBounds.y + worldBounds.height, worldBounds.width + 1, 1, false)); + obstacles.push(differ.shapes.Polygon.rectangle(worldBounds.x - 1, worldBounds.y, 1, worldBounds.height + 1, false)); + + var prim = new h3d.prim.Cylinder(12, 0.35, 0.1); + prim.addNormals(); + cylinder = new h3d.scene.Mesh(prim, s3d); + cylinder.material.color.setColor(0x00ff00); + cylinder.material.receiveShadows = false; + cylinder.material.mainPass.culling = None; + + circle = new differ.shapes.Circle(0, 0, 0.35); + + // Create random cubes as obstacles + var prim = new h3d.prim.Cube(1.0, 1.0, 1.0); + prim.unindex(); + prim.addNormals(); + prim.addUVs(); + for (i in 0...50) { + var cube = new h3d.scene.Mesh(prim, s3d); + cube.material.color.setColor(Std.int(Math.random() * 0xff0000)); + cube.material.receiveShadows = false; + cube.material.shadows = false; + var scale = 0.3 + 0.7 * Math.random(); + cube.scale(scale); + cube.x = worldBounds.x + Math.random() * (worldBounds.width - scale); + cube.y = worldBounds.y + Math.random() * (worldBounds.height - scale); + obstacles.push(differ.shapes.Polygon.square(cube.x, cube.y, scale, false)); + } + + // Perform initial collision check + collideWithObstacles(); + + cameraHeight = 5; // Set initial camera height + updateCamera(); // Update camera position and orientation + + // Setup camera mode text display + cameraModeText = new Text(hxd.res.DefaultFont.get(), s2d); + cameraModeText.x = 0; + cameraModeText.y = 0; + cameraModeText.color = new Vector4(255, 255, 255, 255); + cameraModeText.scale(3); + cameraModeText.text = "First Person Camera\n1 - First Person\n2 - Third Person"; + + // Initialize mouse position and set cursor position + lastMouseX = s2d.mouseX; + lastMouseY = s2d.mouseY; + Window.getInstance().setCursorPos(s2d.width >> 1, s2d.height >> 1); + } + + override function update(dt: Float) { + var currentMouseX = s2d.mouseX; + var currentMouseY = s2d.mouseY; + + // Calculate mouse movement delta + var deltaX = (currentMouseX - (s2d.width >> 1)) * mouseSensitivity; + var deltaY = (currentMouseY - (s2d.height >> 1)) * mouseSensitivity; + + // Update camera orientation based on camera mode + if (cameraMode == FirstPerson) { + yaw += deltaX; + pitch -= deltaY; + pitch = Math.max(-Math.PI / 2, Math.min(Math.PI / 2, pitch)); + } + else if (cameraMode == ThirdPerson) { + yaw += deltaX; + pitch = Math.max(-Math.PI / 2, Math.min(Math.PI / 2, pitch)); + } + + lastMouseX = s2d.width >> 1; + lastMouseY = s2d.height >> 1; + + // Determine player speed based on key input + playerSpeed = 0.0; + if (hxd.Key.isDown(hxd.Key.W)) { + playerSpeed += 1; + } + if (hxd.Key.isDown(hxd.Key.S)) { + playerSpeed -= 1; + } + + // Adjust movement speed for running + var runningMultiplicator = 1.0; + if (hxd.Key.isDown(hxd.Key.SHIFT)) { + if (playerSpeed < 0) { + runningMultiplicator = 1.3; + } else { + runningMultiplicator = 2; + } + } + + // Move player based on current speed and direction + if (playerSpeed != 0) { + var forwardX = Math.cos(yaw) * playerSpeed * walkSpeed; + var forwardY = Math.sin(yaw) * playerSpeed * walkSpeed; + playerPosition.x += forwardX; + playerPosition.y += forwardY; + collideWithObstacles(); + + // Play walking animation if moving + if (movementSpeed != playerSpeed) { + if (playerSpeed > 0) { + player.playAnimation(walkingAnimation).speed = runningMultiplicator; + } + movementSpeed = playerSpeed; + } + + isMoving = true; + } else { + // Stop animation and reset movement state if not moving + if (isMoving) { + player.stopAnimation(); + } + + movementSpeed = 0; + isMoving = false; + } + + // Update player and camera orientation + player.setRotation(0, 0, yaw + Math.PI / 2); + updateCamera(); + + // Reset mouse position and set relative mouse mode + Window.getInstance().setCursorPos(s2d.width >> 1, s2d.height >> 1); + Sdl.setRelativeMouseMode(true); + + // Switch camera mode based on key input + if (Key.isPressed(Key.NUMBER_1)) { + cameraMode = FirstPerson; + cameraModeText.text = "First Person Camera\n1 - First Person\n2 - Third Person"; + } + else if (Key.isPressed(Key.NUMBER_2)) { + cameraMode = ThirdPerson; + cameraModeText.text = "Third Person Camera\n1 - First Person\n2 - Third Person"; + } + + // Exit application if ESCAPE key is pressed + if (Key.isPressed(Key.ESCAPE)) { + System.exit(); + } + } + + // Function to handle collision detection with obstacles + function collideWithObstacles() { + circle.x = playerPosition.x; + circle.y = playerPosition.y; + + for (i in 0...obstacles.length) { + var obstacle = obstacles[i]; + var collideInfo = differ.Collision.shapeWithShape(circle, obstacle); + if (collideInfo != null) { + circle.x += collideInfo.separationX; + circle.y += collideInfo.separationY; + } + } + + playerPosition.x = circle.x; + playerPosition.y = circle.y; + player.x = playerPosition.x; + player.y = playerPosition.y; + cylinder.x = playerPosition.x; + cylinder.y = playerPosition.y; + } + + // Function to update camera position and orientation based on camera mode + function updateCamera() { + if (cameraMode == FirstPerson) { + cameraHeight = 1.5; + var forwardX = Math.cos(yaw) * Math.cos(pitch); + var forwardY = Math.sin(yaw) * Math.cos(pitch); + var forwardZ = Math.sin(pitch); + s3d.camera.pos.set(playerPosition.x, playerPosition.y, cameraHeight); + s3d.camera.target.set(playerPosition.x + forwardX, playerPosition.y + forwardY, cameraHeight + forwardZ); + } + else if (cameraMode == ThirdPerson) { + cameraHeight = 1; // Adjust this height as needed + var orbitDistance = 4.5; // Adjust this distance as needed + + // Adjust the pitch to look down at the player at an angle + var desiredPitch = 0.2; // Adjust the angle (in radians) to look down + pitch = Math.max(desiredPitch, Math.min(Math.PI / 2, pitch)); // Clamp the pitch + + var orbitX = orbitDistance * Math.cos(yaw) * Math.cos(pitch); + var orbitY = orbitDistance * Math.sin(yaw) * Math.cos(pitch); + var orbitZ = orbitDistance * Math.sin(pitch); + + s3d.camera.pos.set(playerPosition.x - orbitX, playerPosition.y - orbitY, cameraHeight + orbitZ); + s3d.camera.target.set(playerPosition.x, playerPosition.y, cameraHeight); + } + } + + // Main entry point of the application + static function main() { + hxd.Res.initEmbed(); // Initialize embedded resources + new Main(); // Create an instance of Main + } +} \ No newline at end of file diff --git a/samples/3d_camera_modes_res/Model.FBX b/samples/3d_camera_modes_res/Model.FBX new file mode 100644 index 000000000..96bd9a059 --- /dev/null +++ b/samples/3d_camera_modes_res/Model.FBX @@ -0,0 +1,8290 @@ +; FBX 7.1.0 project file +; Copyright (C) 1997-2009 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7100 + CreationTimeStamp: { + Version: 1000 + Year: 2013 + Month: 1 + Day: 16 + Hour: 10 + Minute: 37 + Second: 1 + Millisecond: 156 + } + Creator: "FBX SDK/FBX Plugins version 2011.1" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "D:\Projects\evoland\res\model\Skeleton01_anim_walk.FBX" + P: "SrcDocumentUrl", "KString", "Url", "", "D:\Projects\evoland\res\model\Skeleton01_anim_walk.FBX" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "Autodesk" + P: "Original|ApplicationName", "KString", "", "", "3ds Max" + P: "Original|ApplicationVersion", "KString", "", "", "2011.1" + P: "Original|DateTime_GMT", "DateTime", "", "", "16/01/2013 09:37:01.155" + P: "Original|FileName", "KString", "", "", "D:\Projects\evoland\res\model\Skeleton01_anim_walk.FBX" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk" + P: "LastSaved|ApplicationName", "KString", "", "", "3ds Max" + P: "LastSaved|ApplicationVersion", "KString", "", "", "2011.1" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "16/01/2013 09:37:01.155" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",2 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",1 + P: "FrontAxisSign", "int", "Integer", "",-1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",2 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",1 + P: "OriginalUnitScaleFactor", "double", "Number", "",1 + P: "AmbientColor", "ColorRGB", "Color", "",1,1,1 + P: "Defaults3d.camera.era", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",0 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",46186158000 + } +} + +; Documents Description +;------------------------------------------------------------------ + +Documents: { + Count: 1 + Document: 550804352, "", "Scene" { + Properties70: { + P: "SourceObject", "object", "", "" + P: "ActiveAnimStackName", "KString", "", "", "" + } + RootNode: 0 + } +} + +; Document References +;------------------------------------------------------------------ + +References: { +} + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 409 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "AnimationStack" { + Count: 1 + PropertyTemplate: "KFbxAnimStack" { + Properties70: { + P: "Description", "KString", "", "", "" + P: "LocalStart", "KTime", "Time", "",0 + P: "LocalStop", "KTime", "Time", "",0 + P: "ReferenceStart", "KTime", "Time", "",0 + P: "ReferenceStop", "KTime", "Time", "",0 + } + } + } + ObjectType: "AnimationLayer" { + Count: 1 + PropertyTemplate: "KFbxAnimLayer" { + Properties70: { + P: "Label", "KString", "", "", "Layer" + P: "Weight", "Number", "", "A+",100 + P: "Mute", "bool", "", "",0 + P: "Solo", "bool", "", "",0 + P: "Lock", "bool", "", "",0 + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BlendMode", "enum", "", "",0 + P: "RotationAccumulationMode", "enum", "", "",0 + P: "ScaleAccumulationMode", "enum", "", "",0 + P: "BlendModeBypass", "ULongLong", "", "",0 + } + } + } + ObjectType: "Model" { + Count: 28 + PropertyTemplate: "KFbxNode" { + Properties70: { + P: "QuaternionInterpolate", "bool", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1,1,1 + P: "Visibility", "Visibility", "", "A+",1 + } + } + } + ObjectType: "NodeAttribute" { + Count: 26 + PropertyTemplate: "KFbxNull" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "Size", "double", "Number", "",100 + P: "Look", "enum", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 2 + PropertyTemplate: "KFbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + } + } + } + ObjectType: "Material" { + Count: 2 + PropertyTemplate: "KFbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "ColorRGB", "Color", "",0,0,0 + P: "EmissiveFactor", "double", "Number", "",1 + P: "AmbientColor", "ColorRGB", "Color", "",0.2,0.2,0.2 + P: "AmbientFactor", "double", "Number", "",1 + P: "DiffuseColor", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "DiffuseFactor", "double", "Number", "",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "ColorRGB", "Color", "",0,0,0 + P: "TransparencyFactor", "double", "Number", "",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "ColorRGB", "Color", "",0.2,0.2,0.2 + P: "SpecularFactor", "double", "Number", "",1 + P: "ShininessExponent", "double", "Number", "",20 + P: "ReflectionColor", "ColorRGB", "Color", "",0,0,0 + P: "ReflectionFactor", "double", "Number", "",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "KFbxTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A+",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "Translation", "Vector", "", "A+",0,0,0 + P: "Rotation", "Vector", "", "A+",0,0,0 + P: "Scaling", "Vector", "", "A+",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + } + } + } + ObjectType: "CollectionExclusive" { + Count: 1 + } + ObjectType: "AnimationCurve" { + Count: 243 + } + ObjectType: "AnimationCurveNode" { + Count: 81 + } + ObjectType: "Deformer" { + Count: 1 + } + ObjectType: "SubDeformer" { + Count: 18 + PropertyTemplate: "KFbxCluster" { + Properties70: { + P: "SrcModel", "object", "", "" + P: "SrcModelReference", "object", "", "" + } + } + } + ObjectType: "Video" { + Count: 2 + PropertyTemplate: "KFbxVideo" { + Properties70: { + P: "FrameRate", "double", "Number", "",0 + P: "LastFrame", "int", "Integer", "",0 + P: "Width", "int", "Integer", "",0 + P: "Height", "int", "Integer", "",0 + P: "Path", "KString", "XRefUrl", "", "" + P: "StartFrame", "int", "Integer", "",0 + P: "StopFrame", "int", "Integer", "",0 + P: "PlaySpeed", "double", "Number", "",0 + P: "Offset", "KTime", "Time", "",0 + P: "InterlaceMode", "enum", "", "",0 + P: "FreeRunning", "bool", "", "",0 + P: "Loop", "bool", "", "",0 + P: "AccessMode", "enum", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + NodeAttribute: 380956176, "NodeAttribute::", "Null" { + Properties70: { + P: "Look", "enum", "", "",0 + } + TypeFlags: "Null" + } + NodeAttribute: 813348048, "NodeAttribute::", "Root" { + TypeFlags: "Null", "Skeleton", "Root" + } + NodeAttribute: 812867600, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",5.90422433614731 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812906064, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",14.0898418426514 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812904336, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",17.9036357402802 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812890048, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",4.12412643432617 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812895648, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",42.0520038604736 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812889664, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",42.0520038604736 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812896960, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",13.6540015935898 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812903296, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",14.6377782821655 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812607712, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",12.3071583509445 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812916784, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",12.3071583509445 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812930432, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",13.6540015935898 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812927280, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",14.6377799510956 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 812929424, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",12.3071566820145 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 813307504, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",12.3071566820145 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 877488656, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",17.08145403862 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 877481600, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",11.5118873119354 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 877484160, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",17.6223475933075 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 551071520, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",0.812733419239521 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 550893552, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",0.812733419239521 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 733506560, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",17.0814523696899 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 550242256, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",11.5118864774704 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 550247952, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",17.6223492622375 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 550245552, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",0.812732428312302 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 550251328, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",0.812732428312302 + } + TypeFlags: "Skeleton" + } + Geometry: 733679392, "Geometry::", "Mesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0,0,0 + } + Vertices: *1335 { +a: -0.559155941009521,1.30644428730011,6.43563938140869,-0.542740643024445,1.30644428730011,7.30582857131958,-2.62507029447079e-007,1.88983631134033,8.77488231658936,-0.583392024040222,1.30644428730011,8.77488231658936,-0.564305424690247,1.30644464492798,11.437403678894,-2.62507029447079e-007,0.896111607551575,12.8331909179688,-0.388354867696762,0.531177282333374,12.7552938461304,-1.0545539855957,0.74594509601593,5.05199909210205,-0.838118374347687,1.62880945205688,6.11391353607178,-1.08534550666809,1.18227767944336,6.17705392837524,-1.95395874977112,0.194677472114563,5.97062587738037,-1.99065911769867,1.55560040473938,6.19886302947998,-1.89461255073547,0.9747314453125,6.74100399017334,-2.67872285842896,0.31959068775177,5.28144311904907,-2.01778173446655,0.569850921630859,5.0519962310791,-2.48297762870789,0.857706785202026,6.39246702194214,-2.62507029447079e-007,1.86560046672821,6.43563938140869,0.559155404567719,1.30644428730011,6.43563938140869,-2.62507029447079e-007,0.747288465499878,6.43563938140869,-2.62507029447079e-007,1.84918510913849,7.30582857131958,0.542740106582642,1.30644428730011,7.30582857131958,-2.62507029447079e-007,0.763703942298889,7.30582857131958,9.10557389488531e-008,0.689507722854614,13.0910234451294,0.583391487598419,1.30644428730011,8.77488231658936,-2.62507029447079e-007,0.723052740097046,8.77488231658936,-2.62507029447079e-007,1.87074995040894,11.437403678894,0.564304947853088,1.30644464492798,11.437403678894,-2.62507029447079e-007,0.742139220237732,11.437403678894,0.388354361057281,0.531177282333374,12.7552938461304,-2.62507029447079e-007,0.166243195533752,12.677396774292,1.05455410480499,0.74594509601593,5.05199909210205,0.838118553161621,1.62880945205688,6.11391353607178,1.08534550666809,1.18227767944336,6.17705392837524,1.99065911769867,1.55560040473938,6.19886302947998,1.89461231231689,0.9747314453125,6.74100399017334,1.95395851135254,0.194677472114563,5.97062587738037,2.6787223815918,0.31959068775177,5.28144311904907,2.01778149604797,0.569850921630859,5.0519962310791, +2.48297739028931,0.857706785202026,6.39246702194214,9.10557389488531e-008,1.35367596149445,5.61562824249268,7.2844592580168e-008,2.36346769332886,10.0142412185669,1.43912487260422e-007,1.56560683250427,11.1793699264526,1.43912487260422e-007,1.81268739700317,7.90580987930298,2.54572176933289,0.712189912796021,9.73911094665527,1.82973802089691,0.251489400863647,10.9816207885742,2.22956585884094,0.498569965362549,7.70806074142456,1.80455565452576,-1.68559455871582,9.18885135650635,1.43726873397827,-1.47197437286377,10.586124420166,1.43726885318756,-1.22489356994629,7.31256103515625,-1.80455541610718,-1.68559408187866,9.18885135650635,-1.43726849555969,-1.47197437286377,10.586124420166,-1.4372683763504,-1.22489333152771,7.31256103515625,-2.54572176933289,0.712189912796021,9.73911094665527,-1.82973790168762,0.251489520072937,10.9816207885742,-2.22956562042236,0.498569965362549,7.70806074142456,8.61698197240912e-008,-1.98580574989319,9.94103908538818,-3.99757027480518e-009,-1.98580574989319,7.56835269927979,-0.00743476906791329,2.27007842063904,5.40451955795288,-0.00743462843820453,2.26972532272339,6.22876930236816,2.98129200935364,1.35582613945007,6.22745227813721,2.98138380050659,1.35614395141602,5.4041748046875,2.34253644943237,-1.09135437011719,6.22481918334961,2.3425760269165,-1.09123277664185,5.40348434448242,-0.0074347909539938,-2.23688435554504,6.22052431106567,-2.35738182067871,-1.09135437011719,6.22481918334961,-2.35747146606445,-1.09123277664185,5.40348434448242,-2.99618792533875,1.35582613945007,6.22745227813721,-2.99623870849609,1.35614395141602,5.4041748046875,-0.00743480725213885,-2.23607516288757,5.4032998085022,-0.0150803122669458,2.74837875366211,2.88784527778625,3.37858128547668,1.55767273902893,3.71361541748047,2.65323901176453,-1.27139949798584,3.2987687587738,-2.68342924118042,-1.27139949798584,3.43044757843018,-3.40870928764343,1.55767273902893,3.71361541748047,1.28319561481476,-2.49658751487732,3.71262288093567,-0.864713847637177,-1.94491767883301,3.71262288093567,0.0350938513875008,-0.484171628952026,19.36448097229, +0.0350937768816948,2.59467935562134,18.2168312072754,2.22229814529419,1.69968819618225,18.2168312072754,3.16000127792358,-0.46101188659668,18.2168312072754,2.46036624908447,-2.33141112327576,18.2168312072754,0.0350937768816948,-3.51670050621033,18.2168312072754,0.0350938513875008,3.60013246536255,15.667441368103,3.0667040348053,2.40386629104614,15.667441368103,4.24290084838867,-0.484172344207764,15.667441368103,3.81759452819824,-2.04716753959656,15.6762428283691,2.93058109283447,-3.12559723854065,16.2085075378418,1.05433583259583,-4.08928966522217,15.5908174514771,0.0350938513875008,-4.29885864257813,15.3908538818359,0.0350938513875008,3.28923225402832,14.2853469848633,2.83637309074402,2.1840283870697,14.375563621521,4.14350938796997,-0.484172344207764,14.4222116470337,3.6933798789978,-1.9281919002533,14.7642736434937,2.24071002006531,-2.84765410423279,13.390193939209,0.513079226016998,-4.09845542907715,14.2945098876953,0.0350938513875008,-4.25757789611816,14.5639581680298,0.0350938513875008,2.40386605262756,12.8935499191284,2.18044805526733,1.5579788684845,12.8935461044312,3.0667040348053,-0.138117790222168,13.2929039001465,2.92745184898376,-0.234487533569336,12.5618238449097,0.0350938513875008,-3.54001975059509,12.3024587631226,0.0350938513875008,0.0625832080841064,12.5192155838013,4.01172828674316,-2.63159489631653,14.6957883834839,3.04107403755188,-3.59426283836365,15.3969345092773,0.601264357566834,-4.72987651824951,14.2769775390625,0.0350938513875008,-4.53062438964844,15.1294994354248,2.41291284561157,-0.784632205963135,12.5059499740601,2.33493089675903,-2.23403096199036,12.3804960250854,1.92173099517822,-2.94554686546326,12.7429723739624,1.24605560302734,-3.22581791877747,12.8145027160645,1.88545799255371,-2.33683466911316,11.076189994812,0.0350938513875008,-3.75545334815979,11.0209197998047,2.07673001289368,-2.85485053062439,11.3858909606934,2.57165884971619,-2.24708962440491,11.7749061584473,0.0350938513875008,-3.3840548992157,10.7126369476318,3.02098393440247,-2.72546076774597,15.2719240188599,0.651275157928467,-3.8557984828949,13.8483238220215, +2.84299755096436,-2.84852957725525,13.8762826919556,1.22742438316345,-3.47712635993958,13.3956441879272,2.03753066062927,-2.78999590873718,13.5611591339111,0.744352698326111,-3.81763577461243,14.3192758560181,2.6945948600769,-2.64685940742493,15.1844253540039,0.870780348777771,-3.57608580589294,13.9921083450317,2.66558218002319,-2.66776442527771,14.0083904266357,1.3104350566864,-3.20537829399109,13.5761213302612,3.41518545150757,-1.74820399284363,13.8147916793823,3.63893985748291,-0.877203702926636,13.7845106124878,3.76082229614258,-1.11825823783875,12.5722341537476,3.43277382850647,-1.95327067375183,12.8475322723389,3.59104347229004,-2.0192391872406,13.4971504211426,3.99844765663147,-1.06058073043823,13.4719076156616,0.0350938513875008,-4.05903434753418,13.9285125732422,4.10614252090454,-2.70105862617493,15.2138652801514,3.0274453163147,-3.59305357933044,16.0032043457031,0.728402674198151,-4.82606029510498,15.0776987075806,0.0350938513875008,-4.42171478271484,14.5648822784424,3.57160544395447,-2.43439555168152,14.8221588134766,3.15984439849854,-2.35789561271667,13.8459396362305,-2.1521110534668,1.69968819618225,18.2168312072754,-3.08981347084045,-0.46101188659668,18.2168312072754,-2.39017915725708,-2.33141112327576,18.2168312072754,-2.99651670455933,2.40386605262756,15.667441368103,-4.17271280288696,-0.484172344207764,15.667441368103,-3.74740648269653,-2.04716801643372,15.6762428283691,-2.8603937625885,-3.12559723854065,16.2085113525391,-0.984148561954498,-4.08929061889648,15.5908174514771,-2.76618528366089,2.18402814865112,14.375563621521,-4.07332134246826,-0.484172344207764,14.422212600708,-3.62319254875183,-1.9281919002533,14.764274597168,-2.17052292823792,-2.84765410423279,13.3901958465576,-0.442891806364059,-4.09845542907715,14.2945117950439,-2.11026096343994,1.5579788684845,12.8935470581055,-2.99651670455933,-0.138117790222168,13.2929048538208,-2.85726428031921,-0.234487533569336,12.5618257522583,-3.94154095649719,-2.63159489631653,14.6957883834839,-2.97088623046875,-3.59426331520081,15.3969383239746,-0.531076967716217,-4.72987651824951,14.2769775390625, +-2.34272575378418,-0.784632444381714,12.5059518814087,-2.26474380493164,-2.23403096199036,12.3804960250854,-1.85154378414154,-2.94554686546326,12.7429733276367,-1.17586815357208,-3.22581791877747,12.8145027160645,-1.81527042388916,-2.33683466911316,11.0761919021606,-2.00654268264771,-2.85485053062439,11.385892868042,-2.50147151947021,-2.24708962440491,11.7749071121216,-2.95079636573792,-2.72546076774597,15.2719240188599,-0.581087827682495,-3.8557984828949,13.8483247756958,-2.77281022071838,-2.84852957725525,13.8762836456299,-1.15723705291748,-3.47712635993958,13.3956460952759,-1.9673433303833,-2.78999590873718,13.5611591339111,-0.67416524887085,-3.81763577461243,14.3192768096924,-2.62440752983093,-2.64685940742493,15.1844272613525,-0.800593018531799,-3.57608580589294,13.9921092987061,-2.59539461135864,-2.66776442527771,14.0083904266357,-1.24024760723114,-3.20537829399109,13.5761222839355,-3.3449981212616,-1.74820399284363,13.8147926330566,-3.56875205039978,-0.877203702926636,13.7845115661621,-3.69063448905945,-1.11825823783875,12.5722341537476,-3.3625864982605,-1.95327067375183,12.8475341796875,-3.52085638046265,-2.0192391872406,13.4971504211426,-3.92826008796692,-1.06058096885681,13.4719085693359,-4.03595447540283,-2.70105862617493,15.2138671875,-2.95725774765015,-3.5930540561676,16.0032043457031,-0.658215224742889,-4.82606029510498,15.0777006149292,-3.5014181137085,-2.43439555168152,14.8221607208252,-3.08965682983398,-2.35789561271667,13.8459405899048,-5.28572416305542,0.749254941940308,9.90431880950928,-5.2992148399353,0.924968957901001,11.3252830505371,-5.31506156921387,-0.821654796600342,10.7746677398682,-5.3060622215271,-0.303034067153931,11.6659440994263,-5.28489637374878,-0.51871395111084,9.79462909698486,-6.23848438262939,-0.315078258514404,10.7151327133179,-6.24177885055542,-0.057445764541626,11.2539033889771,-6.23905324935913,-0.174605369567871,10.2005224227905,-6.24883079528809,0.654596447944641,10.249002456665,-6.25199031829834,0.735830426216125,11.0769844055176,-6.09900188446045,0.23229455947876,10.4200086593628, +-6.09900188446045,0.474041342735291,10.6617546081543,-4.48577737808228,0.23229455947876,10.6617546081543,-6.09900188446045,-0.00945210456848145,10.6617546081543,-6.09900188446045,0.23229444026947,10.9035024642944,-4.64270544052124,0.23229455947876,10.347315788269,-4.64270544052124,0.54673433303833,10.6617546081543,-4.64270544052124,-0.0821452140808105,10.6617546081543,-4.64270544052124,0.23229455947876,10.9761962890625,-6.2460036277771,0.672090768814087,10.3223323822021,-6.25639772415161,0.161649465560913,10.211033821106,-6.26746845245361,-0.249085426330566,11.009711265564,-6.24775695800781,0.657498955726624,11.0094432830811,-6.26282453536987,-0.432471036911011,10.672532081604,-7.33034753799438,1.27058172225952,10.7613859176636,-7.36471652984619,-0.778231382369995,10.5665216445923,-7.29098701477051,1.23543405532837,11.4115600585938,-7.36515140533447,-0.719331979751587,11.4103717803955,-7.23759651184082,-0.793483257293701,10.562294960022,-7.25193929672241,-0.45128607749939,9.68520164489746,-8.04624652862549,-0.901440322399139,9.94850540161133,-8.0746955871582,-0.645091235637665,9.60813236236572,-8.0597448348999,-0.616572320461273,10.1457843780518,-7.61744070053101,1.30679357051849,10.3107862472534,-8.47828578948975,-0.50900411605835,10.6444940567017,-7.89796447753906,-0.676971673965454,10.4796867370605,-8.23486042022705,1.24843370914459,10.4755220413208,-7.21057891845703,-1.10283613204956,10.0255737304688,-7.85641765594482,-0.733496904373169,9.84629344940186,-7.45649337768555,1.19721293449402,9.66979789733887,-2.72429895401001,1.62064182758331,10.1076002120972,-3.98727822303772,0.962926149368286,10.9251022338867,-2.67714405059814,1.30287063121796,11.0006608963013,-1.15495491027832,0.962926149368286,10.9282293319702,-2.72429895401001,-1.86244201660156,10.1076002120972,-4.15103960037231,-1.20343089103699,10.9251012802124,-2.67714405059814,-1.54480481147766,11.0006608963013,-1.15495491027832,-1.20343089103699,10.9282293319702,-1.00650763511658,-0.108891725540161,11.6109867095947,-2.47013425827026,-0.106033325195313,12.0294427871704, +-4.16758346557617,-0.108891725540161,11.4017114639282,-4.5208568572998,-0.0979769229888916,10.6012535095215,-2.43840146064758,-0.074188232421875,10.5992498397827,-2.89934754371643,0.217390298843384,10.3061332702637,-4.02759170532227,0.214046955108643,10.3185119628906,-4.45521640777588,0.592071652412415,10.6613435745239,-2.49974155426025,0.570646405220032,10.6615467071533,-2.89980220794678,0.222561717033386,11.0034666061401,-4.02710437774658,0.219581723213196,10.9911613464355,-4.52077007293701,0.708821177482605,11.3033361434937,-4.52077007293701,-0.239901304244995,11.3033494949341,-4.82924795150757,0.239971160888672,11.0543928146362,-4.52077054977417,-0.240010976791382,10.0233125686646,-4.52077054977417,0.708818078041077,10.0233249664307,-4.82666492462158,0.154188752174377,10.2807779312134,-2.46370029449463,0.708695530891418,11.3033494949341,-2.15078806877136,0.243098139762878,11.0710716247559,-2.46370029449463,-0.239936351776123,11.3033714294434,-2.46370077133179,-0.239722013473511,10.0233211517334,-2.46370029449463,0.708260059356689,10.0233039855957,-2.15205836296082,0.162936925888062,10.2670412063599,-1.7427579164505,0.0152418613433838,3.26364374160767,-1.46001636981964,0.327265739440918,3.75690937042236,-1.44763815402985,0.33060896396637,4.88515377044678,-1.74075353145599,0.0390303134918213,5.34609937667847,-1.80284798145294,0.705290555953979,3.32928395271301,-2.13266563415527,0.332800626754761,3.75739598274231,-2.14497089385986,0.335780501365662,4.88469839096069,-1.80305027961731,0.683865189552307,5.28475952148438,-2.44484066963196,0.822040200233459,3.2637300491333,-2.19589614868164,0.353190183639526,2.9552526473999,-1.42228090763092,0.267407655715942,2.95783615112305,-1.16481709480286,-0.126791954040527,3.2637300491333,-1.16482830047607,0.822036981582642,3.2637300491333,-2.44485211372375,-0.126682043075562,3.2637300491333,-2.44485306739807,0.821914434432983,5.32080078125,-2.44487524032593,-0.126717567443848,5.32080078125,-2.21257567405701,0.356316924095154,5.63371276855469,-1.4085453748703,0.276155471801758,5.63244247436523, +-1.16482496261597,-0.126503467559814,5.32079982757568,-1.16480755805969,0.821478724479675,5.32080078125,-1.55605387687683,0.374530076980591,1.64335119724274,-1.79780077934265,0.616276860237122,1.64335119724274,-1.79780077934265,0.374530076980591,3.25657653808594,-1.79780077934265,0.13278329372406,1.64335119724274,-2.03954768180847,0.374529957771301,1.64335119724274,-1.48336112499237,0.374530076980591,3.09964823722839,-1.79780077934265,0.688969731330872,3.09964776039124,-1.79780077934265,0.0600903034210205,3.09964776039124,-2.11224055290222,0.374530076980591,3.09964776039124,-2.75789213180542,0.76282000541687,0.0751718655228615,-2.83727669715881,-0.732308864593506,0.752660632133484,-1.06235015392303,0.573402404785156,0.0751714110374451,-1.22560572624207,-0.566998243331909,0.752660632133484,-1.95296359062195,-0.52156662940979,2.57489514350891,-1.96274316310883,-0.407598257064819,1.72126352787018,-2.7131233215332,0.414290308952332,2.57473039627075,-2.55509901046753,0.429760098457336,1.73213624954224,-2.22045683860779,1.12631225585938,1.73213624954224,-0.897045075893402,0.41799259185791,2.57524037361145,-1.05731010437012,0.42975914478302,1.73213624954224,-2.18814015388489,1.36658358573914,2.57352471351624,-1.33689880371094,1.00834882259369,1.73213624954224,-1.35489201545715,1.25700211524963,2.57119083404541,-1.9800112247467,-1.1601357460022,1.11624801158905,-2.03107643127441,-2.89477467536926,1.18762612342834,-3.26583909988403,-1.77031493186951,1.2158008813858,-2.34548234939575,1.38185143470764,0.0751718655228615,-1.42390286922455,1.32718372344971,0.0751718655228615,-3.26994657516479,-1.77031493186951,0.0848093628883362,-1.16054034233093,-0.768304347991943,0.0848093628883362,-2.90234017372131,-0.768361568450928,0.0848093628883362,-1.02154242992401,-2.12003064155579,0.0848093628883362,-2.03107643127441,-2.69040751457214,0.0848093628883362,-0.827688157558441,-2.12003064155579,1.21580135822296,-1.98266053199768,-1.94003510475159,1.75940954685211,5.35591173171997,0.749254941940308,9.90431880950928,5.3694019317627,0.924968957901001,11.3252830505371, +5.38524913787842,-0.821654796600342,10.7746677398682,5.37624931335449,-0.303034067153931,11.6659440994263,5.35508394241333,-0.51871395111084,9.79462909698486,6.30867147445679,-0.315078258514404,10.7151327133179,6.31196594238281,-0.057445764541626,11.2539033889771,6.30924129486084,-0.174605369567871,10.2005224227905,6.31901836395264,0.654596447944641,10.249002456665,6.32217788696289,0.735830426216125,11.0769844055176,6.169189453125,0.23229455947876,10.4200086593628,6.169189453125,0.474041342735291,10.6617546081543,4.55596399307251,0.23229455947876,10.6617546081543,6.169189453125,-0.00945210456848145,10.6617546081543,6.169189453125,0.23229444026947,10.9035024642944,4.71289300918579,0.23229455947876,10.347315788269,4.71289300918579,0.54673433303833,10.6617546081543,4.71289300918579,-0.0821452140808105,10.6617546081543,4.71289300918579,0.23229455947876,10.9761962890625,6.31619119644165,0.672090768814087,10.3223323822021,6.32658529281616,0.161649465560913,10.211033821106,6.33765554428101,-0.249085426330566,11.009711265564,6.31794452667236,0.657498955726624,11.0094432830811,6.33301162719727,-0.432471036911011,10.672532081604,7.40053510665894,1.27058172225952,10.7613859176636,7.55833387374878,-0.778231382369995,10.6669683456421,7.36117458343506,1.23543405532837,11.4115600585938,7.43533849716187,-0.719331979751587,11.4103717803955,7.43020439147949,-1.1167254447937,11.0386409759521,7.37672138214111,-1.02581000328064,10.1615476608276,8.30491065979004,-1.49580073356628,10.681809425354,8.33335971832275,-1.23945164680481,10.3414363861084,8.31840896606445,-1.21093273162842,10.8790884017944,7.92619943618774,1.3067934513092,10.6687202453613,8.22921371459961,-0.50900411605835,11.4582386016846,8.2067232131958,-0.676971673965454,10.8376207351685,7.98578786849976,1.24843370914459,11.2892665863037,7.40318632125854,-1.42607831954956,10.5019197463989,9.39234924316406,-0.733496904373169,10.5133857727051,8.99242496490479,1.19721293449402,10.3368902206421,2.7944860458374,1.62064182758331,10.1076002120972,4.05746555328369,0.962926149368286,10.9251022338867, +2.74733138084412,1.30287063121796,11.0006608963013,1.22514235973358,0.962926149368286,10.9282293319702,2.7944860458374,-1.86244201660156,10.1076002120972,4.22122669219971,-1.20343089103699,10.9251012802124,2.74733138084412,-1.54480481147766,11.0006608963013,1.22514235973358,-1.20343089103699,10.9282293319702,1.07669508457184,-0.108891725540161,11.6109867095947,2.54032135009766,-0.106033325195313,12.0294427871704,4.11391878128052,-0.108891725540161,11.5691795349121,4.5910439491272,-0.0979769229888916,10.6012535095215,2.50858855247498,-0.074188232421875,10.5992498397827,2.96953463554382,0.217390298843384,10.3061332702637,4.09777879714966,0.214046955108643,10.3185119628906,4.52540397644043,0.592071652412415,10.6613435745239,2.56992864608765,0.570646405220032,10.6615467071533,2.96998929977417,0.222561717033386,11.0034666061401,4.09729194641113,0.219581723213196,10.9911613464355,4.5909571647644,0.708821177482605,11.3033361434937,4.5909571647644,-0.239901304244995,11.3033494949341,4.89943504333496,0.239971160888672,11.0543928146362,4.59095764160156,-0.240010976791382,10.0233125686646,4.59095764160156,0.708818078041077,10.0233249664307,4.89685201644897,0.154188752174377,10.2807779312134,2.53388738632202,0.708695530891418,11.3033494949341,2.22097516059875,0.243098139762878,11.0710716247559,2.53388738632202,-0.239936351776123,11.3033714294434,2.53388786315918,-0.239722013473511,10.0233211517334,2.53388738632202,0.708260059356689,10.0233039855957,2.22224545478821,0.162936925888062,10.2670412063599,1.81294524669647,0.0152418613433838,3.26364374160767,1.5302038192749,0.327265739440918,3.75690937042236,1.51782560348511,0.33060896396637,4.88515377044678,1.81094098091125,0.0390303134918213,5.34609937667847,1.87303531169891,0.705290555953979,3.32928395271301,2.20285272598267,0.332800626754761,3.75739598274231,2.21515798568726,0.335780501365662,4.88469839096069,1.87323772907257,0.683865189552307,5.28475952148438,2.51502776145935,0.822040200233459,3.2637300491333,2.26608347892761,0.353190183639526,2.9552526473999,1.49246835708618,0.267407655715942,2.95783615112305, +1.23500454425812,-0.126791954040527,3.2637300491333,1.23501574993134,0.822036981582642,3.2637300491333,2.51503920555115,-0.126682043075562,3.2637300491333,2.51504015922546,0.821914434432983,5.32080078125,2.51506233215332,-0.126717567443848,5.32080078125,2.2827627658844,0.356316924095154,5.63371276855469,1.47873270511627,0.276155471801758,5.63244247436523,1.23501229286194,-0.126503467559814,5.32079982757568,1.23499488830566,0.821478724479675,5.32080078125,1.62624144554138,0.374530076980591,1.64335119724274,1.86798810958862,0.616276860237122,1.64335119724274,1.86798810958862,0.374530076980591,3.25657653808594,1.86798810958862,0.13278329372406,1.64335119724274,2.10973477363586,0.374529957771301,1.64335119724274,1.55354845523834,0.374530076980591,3.09964823722839,1.86798810958862,0.688969731330872,3.09964776039124,1.86798810958862,0.0600903034210205,3.09964776039124,2.18242788314819,0.374530076980591,3.09964776039124,2.82807922363281,0.76282000541687,0.0751718655228615,2.90746378898621,-0.732308864593506,0.752660632133484,1.1325376033783,0.573402404785156,0.0751714110374451,1.29579317569733,-0.566998243331909,0.752660632133484,2.02315068244934,-0.52156662940979,2.57489514350891,2.03293037414551,-0.407598257064819,1.72126352787018,2.7833104133606,0.414290308952332,2.57473039627075,2.62528610229492,0.429760098457336,1.73213624954224,2.29064393043518,1.12631225585938,1.73213624954224,0.967232406139374,0.41799259185791,2.57524037361145,1.12749755382538,0.42975914478302,1.73213624954224,2.25832724571228,1.36658358573914,2.57352471351624,1.4070862531662,1.00834882259369,1.73213624954224,1.42507934570313,1.25700211524963,2.57119083404541,2.05019855499268,-1.1601357460022,1.11624801158905,2.10126304626465,-2.89477467536926,1.18762612342834,3.33602571487427,-1.77031493186951,1.2158008813858,2.41566944122314,1.38185143470764,0.0751718655228615,1.49409031867981,1.32718372344971,0.0751718655228615,3.34013319015503,-1.77031493186951,0.0848093628883362,1.23072779178619,-0.768304347991943,0.0848093628883362,2.97252726554871,-0.768361568450928,0.0848093628883362, +1.09172987937927,-2.12003064155579,0.0848093628883362,2.10126304626465,-2.69040751457214,0.0848093628883362,0.897875547409058,-2.12003064155579,1.21580135822296,2.05284786224365,-1.94003510475159,1.75940954685211,0.731180548667908,-2.31612610816956,6.3405294418335,0.652140617370605,-2.47512459754944,5.18686723709106,-0.447344273328781,-2.21705508232117,6.33026313781738,-0.495108097791672,-2.39717411994934,5.15630149841309,0.818956434726715,-1.79184579849243,6.36246538162231,0.75422191619873,-1.86934375762939,5.088294506073,-0.517286360263824,-1.81605982780457,6.35354089736938,-0.549391508102417,-1.91474175453186,5.08605241775513 +} + PolygonVertexIndex: *1734 { +a: 15,13,14,-11,18,0,7,-40,0,18,21,-2,19,1,3,-3,1,21,24,-4,5,6,-23,6,29,-23,2,3,4,-26,3,24,27,-5,25,4,6,-6,4,27,29,-7,8,16,39,-8,0,16,8,-10,16,0,1,-20,10,7,0,-10,11,8,7,-15,12,9,8,-12,14,7,-11,10,9,-13,15,11,14,-14,12,11,-16,10,12,-16,38,35,37,-37,18,39,30,-18,17,20,21,-19,19,2,23,-21,20,23,24,-22,5,22,-29,28,22,-30,2,25,26,-24,23,26,27,-25,25,5,28,-27,26,28,29,-28,31,30,39,-17,17,32,31,-17,16,19,20,-18,35,32,17,-31,33,37,30,-32,34,33,31,-33,37,35,-31,35,34,-33,38,36,37,-34,34,38,-34,35,38,-35,40,41,44,-44,42,40,43,-46,43,44,47,-47,45,43,46,-49,46,47,-56,55,50,-50,49,50,53,-53,51,49,52,-55,52,53,41,-41,54,52,40,-43,46,55,56,-49,55,49,51,-57,57,58,59,-61,60,59,61,-63,62,61,63,-69,63,64,65,-69,65,64,66,-68,67,66,58,-58,57,60,70,-70,60,62,71,-71,65,67,73,-73,67,57,69,-74,62,68,74,-72,68,65,72,-76,76,78,-78,76,79,-79,76,80,-80,76,81,-81,77,78,83,-83,78,79,84,-84,79,80,85,-85,80,86,-86,80,81,87,-87,81,88,-88,89,82,83,-91,90,83,84,-92,91,84,85,-93,132,85,86,-134,133,86,87,-135,134,87,88,-106,96,89,90,-98,97,90,91,-99,98,91,-127,126,91,92,-126,117,93,108,-138,108,93,118,-110,116,131,109,-119,116,94,95,-132,101,96,-98,101,97,98,-100,92,85,132,-103,115,136,102,-104,102,136,-93,94,115,103,-105,95,94,104,-136,128,108,-108,101,99,-107,130,129,128,-128,110,112,111,-115,108,112,113,-108,108,109,-113,109,100,111,-113,112,110,-114,136,137,125,-93,122,124,119,-124,123,121,120,-123,109,131,-101,128,129,-109,93,117,123,-120,118,93,119,-125,94,116,122,-121,115,94,120,-122,117,115,121,-124,116,118,124,-123,137,136,115,-118,98,130,127,-100,126,125,129,-131,137,108,-130,106,128,-108,127,128,106,-100,130,98,-127,102,132,133,-104,103,133,134,-105,104,134,105,-136,125,137,-130,76,77,-139,76,138,-140,76,139,-141,76,140,-82,77,82,141,-139,138,141,142,-140,139,142,143,-141,140,143,-145,140,144,145,-82,81,145,-89,89,146,141,-83,146,147,142,-142,147,148,143,-143,180,181,144,-144,181,182,145,-145,182,105,88,-146,96,151,146,-90,151,152,147,-147,152,175,-148,175,174,148,-148,166,184,159,-150,159,160,167,-150,165,167,160,-132,165,131, +95,-151,101,151,-97,101,153,152,-152,148,154,180,-144,164,155,154,-184,154,148,-184,150,156,155,-165,95,135,156,-151,177,158,-160,101,157,-154,179,176,177,-179,161,114,111,-163,159,158,163,-163,159,162,-161,160,162,111,-101,162,163,-162,183,148,174,-185,171,172,168,-174,172,171,169,-171,160,100,-132,177,159,-179,149,168,172,-167,167,173,168,-150,150,169,171,-166,164,170,169,-151,166,172,170,-165,165,171,173,-168,184,166,164,-184,152,153,176,-180,175,179,178,-175,184,178,-160,157,158,-178,176,153,157,-178,179,175,-153,154,155,181,-181,155,156,182,-182,156,135,105,-183,174,178,-185,188,187,189,185,-187,191,190,187,-189,194,191,188,-187,194,186,185,-194,190,192,189,-188,192,193,185,-190,190,191,194,193,-193,195,196,201,-201,198,202,203,-200,195,200,202,-199,197,201,-204,201,197,-201,202,197,-204,200,197,-203,201,196,199,-204,206,208,204,-208,205,204,-209,205,210,209,-205,207,211,212,-207,206,212,213,-209,208,222,214,-206,204,209,211,-208,215,217,-217,210,218,-210,211,221,219,-213,212,219,220,-214,209,218,221,-212,213,220,-211,213,222,-209,210,205,-215,222,215,216,-215,214,216,-211,210,217,-214,217,210,-217,213,217,215,-223,218,210,-221,219,223,-221,221,224,223,-220,220,223,224,-219,218,224,-222,225,226,-228,225,227,-229,228,227,234,-234,227,226,235,-235,234,231,232,-234,235,230,231,-235,236,239,238,-238,240,243,242,-242,244,246,-246,239,236,-248,248,239,-248,239,248,-241,247,236,-250,240,249,-237,245,236,-244,243,240,-245,244,245,-244,246,236,-246,246,244,-241,236,246,-241,249,240,-249,248,247,-250,238,239,240,-242,242,243,236,-238,250,252,-252,238,253,-238,254,253,-239,238,241,-255,253,255,-238,241,237,-256,252,242,-238,242,250,-242,250,242,-253,251,252,-238,251,241,-251,237,241,-252,255,254,-242,254,255,-254,230,229,-232,229,232,-232,256,257,258,-260,260,261,262,-264,264,265,-270,257,256,-268,268,257,-268,257,268,-261,267,256,-267,260,266,-257,269,256,-262,261,260,-265,264,269,-262,265,256,-270,265,264,-261,256,265,-261,266,260,-269,268,267,-267,258,257,260,-264,262,261,256,-260,270,271,-273,258,274,-260,275,274,-259, +258,263,-276,274,273,-260,263,259,-274,271,262,-260,262,270,-264,270,262,-272,272,271,-260,272,263,-271,259,263,-273,273,275,-264,275,273,-275,276,277,282,-282,279,283,284,-281,276,281,283,-280,278,282,-285,282,278,-282,283,278,-285,281,278,-284,282,277,280,-285,287,285,302,-304,289,291,292,-291,291,296,293,-293,294,289,290,-296,296,298,297,-294,298,294,295,-298,299,292,-287,310,299,286,-302,285,286,-293,302,285,292,-294,288,287,-296,303,302,293,-298,287,303,297,-296,307,308,304,306,-306,304,308,300,-302,308,307,309,-301,306,304,301,-287,307,305,288,-310,310,309,288,-300,295,299,-289,295,290,-300,290,292,-300,285,306,-287,288,305,-288,301,300,-311,300,309,-311,305,306,285,-288,314,312,311,315,-314,317,314,313,-317,320,312,314,-318,320,319,311,-313,316,313,315,-319,318,315,311,-320,316,318,319,320,-318,321,326,327,-323,324,325,329,-329,321,324,328,-327,323,329,-328,327,326,-324,328,329,-324,326,328,-324,327,329,325,-323,332,333,330,-335,331,334,-331,331,330,335,-337,333,332,338,-338,332,334,339,-339,334,331,340,-349,330,333,337,-336,341,342,-344,336,335,-345,337,338,345,-348,338,339,346,-346,335,337,347,-345,339,336,-347,339,334,-349,336,340,-332,348,340,342,-342,340,336,-343,336,339,-344,343,342,-337,339,348,341,-344,344,346,-337,345,346,-350,347,345,349,-351,346,344,350,-350,344,347,-351,351,353,-353,351,354,-354,354,359,360,-354,353,360,361,-353,360,359,358,-358,361,360,357,-357,362,363,364,-366,366,367,368,-370,370,371,-373,365,373,-363,374,373,-366,365,366,-375,373,375,-363,366,362,-376,371,369,-363,369,370,-367,370,369,-372,372,371,-363,372,366,-371,362,366,-373,375,374,-367,374,375,-374,364,367,366,-366,368,363,362,-370,376,377,-379,364,363,-380,380,364,-380,364,380,-368,379,363,-382,367,381,-364,378,363,-369,368,367,-377,376,378,-369,377,363,-379,377,376,-368,363,377,-368,381,367,-381,380,379,-382,356,357,-356,355,357,-359,382,385,384,-384,386,389,388,-388,390,395,-392,383,393,-383,394,393,-384,383,386,-395,393,392,-383,386,382,-393,395,387,-383,387,390,-387,390,387,-396,391,395,-383,391,386,-391,382,386,-392, +392,394,-387,394,392,-394,384,389,386,-384,388,385,382,-388,396,398,-398,384,385,-401,401,384,-401,384,401,-390,400,385,-400,389,399,-386,397,385,-389,388,389,-397,396,397,-389,398,385,-398,398,396,-390,385,398,-390,399,389,-402,401,400,-400,402,407,408,-404,405,406,410,-410,402,405,409,-408,404,410,-409,408,407,-405,409,410,-405,407,409,-405,408,410,406,-404,413,429,428,-412,415,416,418,-418,417,418,419,-423,420,421,416,-416,422,419,423,-425,424,423,421,-421,425,412,-419,436,427,412,-426,411,418,-413,428,419,418,-412,414,421,-414,429,423,419,-429,413,421,423,-430,433,431,432,430,-435,430,427,426,-435,434,426,435,-434,432,412,427,-431,433,435,414,-432,436,425,414,-436,421,414,-426,421,425,-417,416,425,-419,411,412,-433,414,413,-432,427,436,-427,426,436,-436,431,413,411,-433,437,439,440,-439,442,441,437,-439,444,442,438,-441,441,443,439,-438,443,444,440,-440,444,443,441,-443 +} + Edges: *906 { +a: 43,3,0,1,4,52,51,10,15,13,22,20,21,23,14,18,27,28,32,37,35,45,42,46,48,49,5,6,57,54,61,58,65,62,68,66,71,72,78,82,85,84,89,132,133,134,91,92,96,100,104,103,107,106,95,99,108,110,114,109,113,118,122,124,127,131,129,128,88,87,136,139,140,143,144,147,148,150,151,157,158,86,164,167,165,171,168,166,170,175,173,179,174,178,182,181,184,185,183,190,189,187,193,188,192,197,195,201,203,204,208,210,211,212,213,215,216,217,219,222,223,227,228,229,231,233,220,221,224,247,235,239,255,243,251,236,240,244,248,252,256,257,260,258,261,264,267,259,262,265,268,273,271,275,279,282,286,289,272,276,280,283,287,290,292,295,294,299,298,303,302,304,307,306,311,310,315,314,316,319,318,323,322,325,326,329,330,331,334,332,333,337,338,336,342,345,346,347,349,353,352,378,356,357,358,361,362,363,365,368,367,369,372,371,373,374,375,377,379,380,398,384,385,386,387,389,388,392,394,395,399,460,401,402,405,406,409,412,413,414,417,411,410,407,343,422,420,426,430,428,434,435,447,382,381,454,452,457,458,464,470,471,474,478,485,488,491,484,487,490,493,497,501,505,509,512,496,500,504,508,511,515,517,518,521,522,525,526,532,529,530,533,534,537,541,542,545,546,550,549,553,552,559,556,558,557,561,560,562,564,568,572,575,576,601,580,579,586,583,589,588,593,590,591,597,595,600,599,598,602,607,606,625,610,608,615,613,614,617,622,624,683,629,628,633,632,637,634,640,642,635,636,631,571,644,646,648,652,654,656,663,675,604,605,676,678,680,685,686,694,693,698,708,709,712,711,710,716,713,714,720,717,724,725,726,723,729,738,754,739,745,742,757,749,763,741,753,756,744,740,743,747,751,770,769,767,766,772,768,775,773,774,777,779,778,783,782,787,790,795,793,794,796,797,801,805,804,809,808,812,813,785,786,814,819,822,820,825,827,828,848,800,839,840,841,843,849,855,856,858,977,978,980,863,861,865,870,868,872,862,866,879,878,877,876,928,882,930,880,886,885,884,889,888,892,890,895,894,898,897,901,899,904,931,902,907,906,911,916,922,929,933,936,961,934,938,941,942,940,944,947,974,951,949,954,952,956,955,963,964,970,976,979,854,859,982,983,984,985,986,1036,988, +1034,990,991,992,1004,995,994,996,998,1000,1001,1003,1005,1007,1008,1037,1010,1012,1013,1017,1022,1028,1035,1039,1040,1042,1080,1047,1044,1046,1048,1050,1053,1055,1057,1058,1060,1061,1062,1067,1069,1070,1076,1082,1098,1083,1089,1086,1101,1093,1107,1085,1097,1100,1088,1084,1087,1091,1095,1110,1113,1112,1116,1117,1120,1121,1124,1125,1128,1129,1132,1133,1134,1135,1136,1139,1140,1143,1141,1147,1144,1150,1148,1149,1154,1161,1162,1159,1160,1163,1166,1167,1165,1170,1169,1175,1178,1177,1180,1184,1185,1188,1114,1118,1122,1130,1126,1193,1197,1183,1200,1213,1212,1209,1210,1211,1214,1217,1216,1218,1221,1222,1229,1228,1223,1233,1242,1255,1241,1243,1246,1258,1247,1265,1239,1256,1259,1244,1240,1245,1249,1252,1273,1267,1269,1270,1271,1268,1275,1277,1276,1281,1279,1280,1283,1284,1287,1292,1294,1296,1295,1299,1298,1301,1305,1306,1309,1310,1313,1312,1289,1288,1317,1318,1322,1324,1326,1330,1329,1350,1302,1338,1343,1342,1347,1349,1356,1355,1359,1478,1477,1481,1361,1363,1367,1370,1372,1376,1362,1366,1377,1378,1379,1380,1428,1382,1434,1384,1385,1386,1387,1388,1389,1391,1393,1394,1395,1397,1398,1400,1402,1403,1433,1405,1406,1407,1414,1415,1421,1427,1431,1435,1464,1437,1439,1442,1441,1443,1445,1448,1475,1450,1452,1453,1455,1457,1458,1462,1467,1473,1479,1482,1357,1358,1486,1485,1484,1483,1490,1540,1488,1534,1493,1492,1491,1503,1494,1495,1499,1497,1501,1500,1504,1508,1506,1511,1539,1509,1513,1512,1520,1521,1527,1533,1537,1543,1541,1581,1548,1545,1549,1547,1551,1554,1558,1556,1561,1559,1564,1563,1570,1568,1573,1579,1586,1599,1585,1587,1590,1602,1591,1609,1583,1600,1603,1588,1584,1589,1593,1596,1614,1611,1612,1616,1615,1620,1619,1624,1623,1628,1627,1632,1631,1637,1636,1635,1639,1638,1642,1644,1645,1648,1649,1651,1650,1652,1662,1661,1664,1663,1660,1666,1665,1667,1670,1671,1673,1678,1679,1684,1687,1686,1689,1618,1622,1626,1634,1630,1696,1698,1681,1701,1712,1713,1710,1711,1714,1715,1717,1718,1721,1722,1723,1726 +} + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *5202 { +a: -0.902620196342468,-0.0355022251605988,0.428971171379089,-0.918477535247803,-0.303474843502045,-0.253578811883926,-0.535777926445007,-0.197954684495926,-0.820826411247253,0.101882100105286,-0.957145810127258,0.2710942029953,2.66488662248321e-008,-0.999982476234436,-0.00591236911714077,-0.755509734153748,-0.302326411008835,0.581208944320679,0.346761167049408,-0.259441643953323,-0.901358187198639,0,0.1048828586936,-0.994484603404999,-0.755509734153748,-0.302326411008835,0.581208944320679,2.66488662248321e-008,-0.999982476234436,-0.00591236911714077,2.65569202184679e-008,-0.999990105628967,-0.00444817775860429,-0.999990165233612,-1.59341510652666e-007,-0.00444819731637836,2.65569291002521e-008,0.999990105628967,-0.00444821687415242,-0.999990165233612,-1.59341510652666e-007,-0.00444819731637836,-0.999948263168335,-1.35224411224044e-007,-0.0101685095578432,2.70448889949648e-008,0.99994832277298,-0.0101685551926494,-0.999990165233612,-1.59341510652666e-007,-0.00444819731637836,2.65569202184679e-008,-0.999990105628967,-0.00444817775860429,-5.40897708845023e-008,-0.999948263168335,-0.0101684741675854,-0.999948263168335,-1.35224411224044e-007,-0.0101685095578432,-2.01952431666541e-007,0.801155984401703,0.598455429077148,-0.898959577083588,-0.21668016910553,0.380685478448868,5.38628682988929e-007,0.182158946990967,0.983269095420837,-0.898959577083588,-0.21668016910553,0.380685478448868,0,-0.98925769329071,0.14618182182312,5.38628682988929e-007,0.182158946990967,0.983269095420837,2.70448889949648e-008,0.99994832277298,-0.0101685551926494,-0.999948263168335,-1.35224411224044e-007,-0.0101685095578432,-0.988529145717621,0.0957669913768768,0.116785034537315,-3.12767838295258e-008,0.962065696716309,0.272817939519882,-0.999948263168335,-1.35224411224044e-007,-0.0101685095578432,-5.40897708845023e-008,-0.999948263168335,-0.0101684741675854,0,-0.972539901733398,-0.232736214995384,-0.988529145717621,0.0957669913768768,0.116785034537315,-3.12767838295258e-008,0.962065696716309,0.272817939519882,-0.988529145717621,0.0957669913768768,0.116785034537315, +-0.898959577083588,-0.21668016910553,0.380685478448868,-2.01952431666541e-007,0.801155984401703,0.598455429077148,-0.988529145717621,0.0957669913768768,0.116785034537315,0,-0.972539901733398,-0.232736214995384,0,-0.98925769329071,0.14618182182312,-0.898959577083588,-0.21668016910553,0.380685478448868,-0.257287234067917,0.960971415042877,0.101671323180199,-5.26583185944673e-008,0.997685253620148,-0.0680002197623253,0,0.1048828586936,-0.994484603404999,0.346761167049408,-0.259441643953323,-0.901358187198639,-0.755509734153748,-0.302326411008835,0.581208944320679,-5.26583185944673e-008,0.997685253620148,-0.0680002197623253,-0.257287234067917,0.960971415042877,0.101671323180199,0.406518161296844,-0.232344821095467,0.883605718612671,-5.26583185944673e-008,0.997685253620148,-0.0680002197623253,-0.755509734153748,-0.302326411008835,0.581208944320679,-0.999990165233612,-1.59341510652666e-007,-0.00444819731637836,2.65569291002521e-008,0.999990105628967,-0.00444821687415242,0.101882100105286,-0.957145810127258,0.2710942029953,0.346761167049408,-0.259441643953323,-0.901358187198639,-0.755509734153748,-0.302326411008835,0.581208944320679,0.406518161296844,-0.232344821095467,0.883605718612671,-0.319344490766525,0.938260793685913,0.132988348603249,-0.257287234067917,0.960971415042877,0.101671323180199,0.346761167049408,-0.259441643953323,-0.901358187198639,-0.535777926445007,-0.197954684495926,-0.820826411247253,0.0250080153346062,-0.0917967557907104,0.995463609695435,0.406518161296844,-0.232344821095467,0.883605718612671,-0.257287234067917,0.960971415042877,0.101671323180199,-0.319344490766525,0.938260793685913,0.132988348603249,-0.535777926445007,-0.197954684495926,-0.820826411247253,0.346761167049408,-0.259441643953323,-0.901358187198639,0.101882100105286,-0.957145810127258,0.2710942029953,0.101882100105286,-0.957145810127258,0.2710942029953,0.406518161296844,-0.232344821095467,0.883605718612671,0.0250080153346062,-0.0917967557907104,0.995463609695435,-0.902620196342468,-0.0355022251605988,0.428971171379089,-0.319344490766525,0.938260793685913,0.132988348603249, +-0.535777926445007,-0.197954684495926,-0.820826411247253,-0.918477535247803,-0.303474843502045,-0.253578811883926,0.0250080153346062,-0.0917967557907104,0.995463609695435,-0.319344490766525,0.938260793685913,0.132988348603249,-0.902620196342468,-0.0355022251605988,0.428971171379089,0.101882100105286,-0.957145810127258,0.2710942029953,0.0250080153346062,-0.0917967557907104,0.995463609695435,-0.902620196342468,-0.0355022251605988,0.428971171379089,0.902620196342468,-0.0355023331940174,0.428971230983734,-0.101882115006447,-0.957145810127258,0.2710942029953,0.535777807235718,-0.197954714298248,-0.820826411247253,0.918477475643158,-0.303474873304367,-0.253578752279282,2.66488662248321e-008,-0.999982476234436,-0.00591236911714077,0,0.1048828586936,-0.994484603404999,-0.346761226654053,-0.259441643953323,-0.901358187198639,0.755509436130524,-0.302326649427414,0.581209063529968,0.755509436130524,-0.302326649427414,0.581209063529968,0.999990165233612,-1.59341510652666e-007,-0.00444819731637836,2.65569202184679e-008,-0.999990105628967,-0.00444817775860429,2.66488662248321e-008,-0.999982476234436,-0.00591236911714077,2.65569291002521e-008,0.999990105628967,-0.00444821687415242,2.70448889949648e-008,0.99994832277298,-0.0101685551926494,0.999948263168335,-1.0817952755815e-007,-0.0101685170084238,0.999990165233612,-1.59341510652666e-007,-0.00444819731637836,0.999990165233612,-1.59341510652666e-007,-0.00444819731637836,0.999948263168335,-1.0817952755815e-007,-0.0101685170084238,-5.40897708845023e-008,-0.999948263168335,-0.0101684741675854,2.65569202184679e-008,-0.999990105628967,-0.00444817775860429,-2.01952431666541e-007,0.801155984401703,0.598455429077148,5.38628682988929e-007,0.182158946990967,0.983269095420837,0.898959696292877,-0.216680184006691,0.380685210227966,0.898959696292877,-0.216680184006691,0.380685210227966,5.38628682988929e-007,0.182158946990967,0.983269095420837,0,-0.98925769329071,0.14618182182312,2.70448889949648e-008,0.99994832277298,-0.0101685551926494,-3.12767838295258e-008,0.962065696716309,0.272817939519882, +0.988529145717621,0.095767118036747,0.116785027086735,0.999948263168335,-1.0817952755815e-007,-0.0101685170084238,0.999948263168335,-1.0817952755815e-007,-0.0101685170084238,0.988529145717621,0.095767118036747,0.116785027086735,0,-0.972539901733398,-0.232736214995384,-5.40897708845023e-008,-0.999948263168335,-0.0101684741675854,-3.12767838295258e-008,0.962065696716309,0.272817939519882,-2.01952431666541e-007,0.801155984401703,0.598455429077148,0.898959696292877,-0.216680184006691,0.380685210227966,0.988529145717621,0.095767118036747,0.116785027086735,0.988529145717621,0.095767118036747,0.116785027086735,0.898959696292877,-0.216680184006691,0.380685210227966,0,-0.98925769329071,0.14618182182312,0,-0.972539901733398,-0.232736214995384,0.257287114858627,0.960971415042877,0.10167158395052,-0.346761226654053,-0.259441643953323,-0.901358187198639,0,0.1048828586936,-0.994484603404999,-5.26583185944673e-008,0.997685253620148,-0.0680002197623253,0.755509436130524,-0.302326649427414,0.581209063529968,-0.406518161296844,-0.232344850897789,0.883605599403381,0.257287114858627,0.960971415042877,0.10167158395052,-5.26583185944673e-008,0.997685253620148,-0.0680002197623253,-5.26583185944673e-008,0.997685253620148,-0.0680002197623253,2.65569291002521e-008,0.999990105628967,-0.00444821687415242,0.999990165233612,-1.59341510652666e-007,-0.00444819731637836,0.755509436130524,-0.302326649427414,0.581209063529968,-0.101882115006447,-0.957145810127258,0.2710942029953,-0.406518161296844,-0.232344850897789,0.883605599403381,0.755509436130524,-0.302326649427414,0.581209063529968,-0.346761226654053,-0.259441643953323,-0.901358187198639,0.31934455037117,0.938260674476624,0.132988274097443,0.535777807235718,-0.197954714298248,-0.820826411247253,-0.346761226654053,-0.259441643953323,-0.901358187198639,0.257287114858627,0.960971415042877,0.10167158395052,-0.0250081047415733,-0.0917967557907104,0.995463609695435,0.31934455037117,0.938260674476624,0.132988274097443,0.257287114858627,0.960971415042877,0.10167158395052,-0.406518161296844,-0.232344850897789,0.883605599403381, +0.535777807235718,-0.197954714298248,-0.820826411247253,-0.101882115006447,-0.957145810127258,0.2710942029953,-0.346761226654053,-0.259441643953323,-0.901358187198639,-0.101882115006447,-0.957145810127258,0.2710942029953,-0.0250081047415733,-0.0917967557907104,0.995463609695435,-0.406518161296844,-0.232344850897789,0.883605599403381,0.902620196342468,-0.0355023331940174,0.428971230983734,0.918477475643158,-0.303474873304367,-0.253578752279282,0.535777807235718,-0.197954714298248,-0.820826411247253,0.31934455037117,0.938260674476624,0.132988274097443,-0.0250081047415733,-0.0917967557907104,0.995463609695435,0.902620196342468,-0.0355023331940174,0.428971230983734,0.31934455037117,0.938260674476624,0.132988274097443,-0.101882115006447,-0.957145810127258,0.2710942029953,0.902620196342468,-0.0355023331940174,0.428971230983734,-0.0250081047415733,-0.0917967557907104,0.995463609695435,1.42576555006713e-008,0.979220330715179,0.20279935002327,5.7166161582245e-008,0.80064058303833,0.5991450548172,0.832395851612091,0.2275510430336,0.505309402942657,0.927826046943665,0.346730649471283,0.137538105249405,1.94467535408194e-008,0.974481165409088,-0.224468931555748,1.42576555006713e-008,0.979220330715179,0.20279935002327,0.927826046943665,0.346730649471283,0.137538105249405,0.934921979904175,0.26418462395668,-0.236912056803703,0.927826046943665,0.346730649471283,0.137538105249405,0.832395851612091,0.2275510430336,0.505309402942657,0.687665224075317,-0.65450519323349,0.314228773117065,0.690911591053009,-0.722578644752502,0.0228335596621037,0.934921979904175,0.26418462395668,-0.236912056803703,0.927826046943665,0.346730649471283,0.137538105249405,0.690911591053009,-0.722578644752502,0.0228335596621037,0.685137808322906,-0.707042932510376,-0.175147294998169,0.690911591053009,-0.722578644752502,0.0228335596621037,0.687665224075317,-0.65450519323349,0.314228773117065,-1.10266554997907e-007,-0.999948561191559,0.0101367486640811,-1.10266554997907e-007,-0.999948561191559,0.0101367486640811,-0.687665164470673,-0.654505252838135,0.314228564500809, +-0.690911591053009,-0.722578585147858,0.0228334814310074,-0.690911591053009,-0.722578585147858,0.0228334814310074,-0.687665164470673,-0.654505252838135,0.314228564500809,-0.832395851612091,0.227551028132439,0.505309462547302,-0.927826106548309,0.346730589866638,0.137538060545921,-0.685137748718262,-0.707042932510376,-0.175147280097008,-0.690911591053009,-0.722578585147858,0.0228334814310074,-0.927826106548309,0.346730589866638,0.137538060545921,-0.934921979904175,0.264184564352036,-0.236912131309509,-0.927826106548309,0.346730589866638,0.137538060545921,-0.832395851612091,0.227551028132439,0.505309462547302,5.7166161582245e-008,0.80064058303833,0.5991450548172,1.42576555006713e-008,0.979220330715179,0.20279935002327,-0.934921979904175,0.264184564352036,-0.236912131309509,-0.927826106548309,0.346730589866638,0.137538060545921,1.42576555006713e-008,0.979220330715179,0.20279935002327,1.94467535408194e-008,0.974481165409088,-0.224468931555748,0.690911591053009,-0.722578644752502,0.0228335596621037,-1.10266554997907e-007,-0.999948561191559,0.0101367486640811,-1.3453826852583e-007,-0.991252720355988,-0.131977438926697,0.685137808322906,-0.707042932510376,-0.175147294998169,-1.10266554997907e-007,-0.999948561191559,0.0101367486640811,-0.690911591053009,-0.722578585147858,0.0228334814310074,-0.685137748718262,-0.707042932510376,-0.175147280097008,-1.3453826852583e-007,-0.991252720355988,-0.131977438926697,0.000362573919119313,0.995373070240021,0.0960858091711998,3.47264375477607e-007,0.999999940395355,0.00042045084410347,0.872899174690247,0.48790043592453,0.000287997216219082,0.866020500659943,0.482862055301666,0.12981840968132,0.866020500659943,0.482862055301666,0.12981840968132,0.872899174690247,0.48790043592453,0.000287997216219082,0.773798823356628,-0.633431375026703,-0.00026957510272041,0.787599205970764,-0.600601553916931,0.137714594602585,0.787599205970764,-0.600601553916931,0.137714594602585,0.773798823356628,-0.633431375026703,-0.00026957510272041,6.32682457535338e-008,-0.999999821186066,-0.000548826646991074,0.0278257131576538,-0.995038211345673,0.0955230072140694, +6.32682457535338e-008,-0.999999821186066,-0.000548826646991074,-0.773791670799255,-0.633440136909485,-0.000259291788097471,-0.760071098804474,-0.644609391689301,0.0822833552956581,0.0278257131576538,-0.995038211345673,0.0955230072140694,-0.760071098804474,-0.644609391689301,0.0822833552956581,-0.773791670799255,-0.633440136909485,-0.000259291788097471,-0.872904777526855,0.487890362739563,0.00028667162405327,-0.864144802093506,0.484602749347687,0.135697722434998,-0.864144802093506,0.484602749347687,0.135697722434998,-0.872904777526855,0.487890362739563,0.00028667162405327,3.47264375477607e-007,0.999999940395355,0.00042045084410347,0.000362573919119313,0.995373070240021,0.0960858091711998,0.000362573919119313,0.995373070240021,0.0960858091711998,0.866020500659943,0.482862055301666,0.12981840968132,0.83843070268631,0.487673819065094,0.243327349424362,-0.000483473675558344,0.982254326343536,0.187553077936172,0.866020500659943,0.482862055301666,0.12981840968132,0.787599205970764,-0.600601553916931,0.137714594602585,0.796627044677734,-0.545969545841217,0.259427279233933,0.83843070268631,0.487673819065094,0.243327349424362,-0.760071098804474,-0.644609391689301,0.0822833552956581,-0.864144802093506,0.484602749347687,0.135697722434998,-0.828842461109161,0.498903423547745,0.253210604190826,-0.760969460010529,-0.627757549285889,0.163847655057907,-0.864144802093506,0.484602749347687,0.135697722434998,0.000362573919119313,0.995373070240021,0.0960858091711998,-0.000483473675558344,0.982254326343536,0.187553077936172,-0.828842461109161,0.498903423547745,0.253210604190826,0.787599205970764,-0.600601553916931,0.137714594602585,0.0278257131576538,-0.995038211345673,0.0955230072140694,0.534477949142456,-0.783687710762024,0.316491812467575,0.796627044677734,-0.545969545841217,0.259427279233933,0.0278257131576538,-0.995038211345673,0.0955230072140694,-0.760071098804474,-0.644609391689301,0.0822833552956581,-0.760969460010529,-0.627757549285889,0.163847655057907,-0.403524994850159,-0.909177541732788,0.102779671549797,1.37027651447852e-008,-0.00606912467628717,0.999981641769409, +0.512092351913452,0.529273867607117,0.676484048366547,0,0.742637932300568,0.669693171977997,1.37027651447852e-008,-0.00606912467628717,0.999981641769409,0.726637244224548,0.0302276685833931,0.686356008052826,0.512092351913452,0.529273867607117,0.676484048366547,1.37027651447852e-008,-0.00606912467628717,0.999981641769409,0.537552952766418,-0.489766538143158,0.686415016651154,0.726637244224548,0.0302276685833931,0.686356008052826,1.37027651447852e-008,-0.00606912467628717,0.999981641769409,1.1439591673934e-007,-0.752996683120728,0.658024191856384,0.537552952766418,-0.489766538143158,0.686415016651154,0,0.742637932300568,0.669693171977997,0.512092351913452,0.529273867607117,0.676484048366547,0.698269069194794,0.709616601467133,0.0941522717475891,0,0.997438728809357,0.071525901556015,0.512092351913452,0.529273867607117,0.676484048366547,0.726637244224548,0.0302276685833931,0.686356008052826,0.990322530269623,0.0476961806416512,0.130331382155418,0.698269069194794,0.709616601467133,0.0941522717475891,0.726637244224548,0.0302276685833931,0.686356008052826,0.537552952766418,-0.489766538143158,0.686415016651154,0.937348544597626,-0.183493256568909,0.296155214309692,0.990322530269623,0.0476961806416512,0.130331382155418,0.537552952766418,-0.489766538143158,0.686415016651154,0.551138281822205,-0.554010212421417,0.62395453453064,0.937348544597626,-0.183493256568909,0.296155214309692,0.537552952766418,-0.489766538143158,0.686415016651154,1.1439591673934e-007,-0.752996683120728,0.658024191856384,0.0930787026882172,-0.757826507091522,0.645782649517059,0.551138281822205,-0.554010212421417,0.62395453453064,1.1439591673934e-007,-0.752996683120728,0.658024191856384,5.47146441931545e-007,-0.795121133327484,0.60645055770874,0.0930787026882172,-0.757826507091522,0.645782649517059,-5.32756558868641e-008,0.928556799888611,-0.371190190315247,0,0.997438728809357,0.071525901556015,0.698269069194794,0.709616601467133,0.0941522717475891,0.647058665752411,0.668819904327393,-0.366053521633148,0.647058665752411,0.668819904327393,-0.366053521633148, +0.698269069194794,0.709616601467133,0.0941522717475891,0.990322530269623,0.0476961806416512,0.130331382155418,0.936730682849884,0.0604545921087265,-0.344790935516357,0.936730682849884,0.0604545921087265,-0.344790935516357,0.990322530269623,0.0476961806416512,0.130331382155418,0.937348544597626,-0.183493256568909,0.296155214309692,0.924197673797607,-0.150067403912544,-0.351195931434631,0.955873727798462,-0.237460598349571,0.172967940568924,0.937348544597626,-0.183493256568909,0.296155214309692,0.551138281822205,-0.554010212421417,0.62395453453064,0.462576538324356,-0.698397576808929,0.546135246753693,0.462576538324356,-0.698397576808929,0.546135246753693,0.551138281822205,-0.554010212421417,0.62395453453064,0.0930787026882172,-0.757826507091522,0.645782649517059,0.0248176269233227,-0.946943998336792,0.320439070463181,0.0248176269233227,-0.946943998336792,0.320439070463181,0.0930787026882172,-0.757826507091522,0.645782649517059,5.47146441931545e-007,-0.795121133327484,0.60645055770874,4.66771695073476e-007,-0.882330894470215,0.470629721879959,-9.53650243218362e-008,0.615638673305511,-0.788028597831726,-5.32756558868641e-008,0.928556799888611,-0.371190190315247,0.647058665752411,0.668819904327393,-0.366053521633148,0.418333619832993,0.477073758840561,-0.772915005683899,0.418333619832993,0.477073758840561,-0.772915005683899,0.647058665752411,0.668819904327393,-0.366053521633148,0.936730682849884,0.0604545921087265,-0.344790935516357,0.693998634815216,0.459318310022354,-0.554429948329926,0.693998634815216,0.459318310022354,-0.554429948329926,0.936730682849884,0.0604545921087265,-0.344790935516357,0.989750862121582,0.11578144133091,-0.0835935324430466,0.989750862121582,0.11578144133091,-0.0835935324430466,0.936730682849884,0.0604545921087265,-0.344790935516357,0.924197673797607,-0.150067403912544,-0.351195931434631,0.92537248134613,-0.326573759317398,0.192445501685143,0.602223992347717,-0.741142988204956,-0.296704262495041,0.546920001506805,-0.757240772247314,-0.357022374868393,0.531965255737305,-0.829820811748505,-0.168553426861763, +0.716259360313416,-0.67921394109726,-0.160127341747284,0.531965255737305,-0.829820811748505,-0.168553426861763,0.546920001506805,-0.757240772247314,-0.357022374868393,0.330876260995865,-0.883503377437592,-0.331576138734818,0.377079367637634,-0.914120554924011,-0.148979529738426,0.238301366567612,-0.894033253192902,-0.379363805055618,-3.82225863404528e-007,-0.935656070709229,-0.35291314125061,0.377079367637634,-0.914120554924011,-0.148979529738426,0.330876260995865,-0.883503377437592,-0.331576138734818,0.238301366567612,-0.894033253192902,-0.379363805055618,0.152655780315399,-0.477877408266068,-0.865060329437256,-9.6773908353498e-007,-0.445692270994186,-0.895186245441437,-3.82225863404528e-007,-0.935656070709229,-0.35291314125061,-1.76128764906025e-007,0.196174621582031,-0.980569005012512,-9.53650243218362e-008,0.615638673305511,-0.788028597831726,0.418333619832993,0.477073758840561,-0.772915005683899,-1.76128764906025e-007,0.196174621582031,-0.980569005012512,0.418333619832993,0.477073758840561,-0.772915005683899,0.693998634815216,0.459318310022354,-0.554429948329926,0.323088496923447,0.276621967554092,-0.905038177967072,0.924197673797607,-0.150067403912544,-0.351195931434631,0.937348544597626,-0.183493256568909,0.296155214309692,0.955873727798462,-0.237460598349571,0.172967940568924,0.602453947067261,-0.17015615105629,-0.779805183410645,0.122918538749218,-0.346504002809525,-0.929960191249847,0.173290207982063,-0.482702761888504,-0.85846871137619,0.602453947067261,-0.17015615105629,-0.779805183410645,0.49857172369957,-0.677088379859924,-0.541273951530457,0.602453947067261,-0.17015615105629,-0.779805183410645,0.173290207982063,-0.482702761888504,-0.85846871137619,0.924197673797607,-0.150067403912544,-0.351195931434631,0.152655780315399,-0.477877408266068,-0.865060329437256,0.122918538749218,-0.346504002809525,-0.929960191249847,0.49857172369957,-0.677088379859924,-0.541273951530457,-0.00899488292634487,-0.700446784496307,-0.713648080825806,-9.6773908353498e-007,-0.445692270994186,-0.895186245441437,0.152655780315399,-0.477877408266068,-0.865060329437256, +-0.00899488292634487,-0.700446784496307,-0.713648080825806,-7.73152976307756e-007,-0.668199360370636,-0.743982195854187,0.623434782028198,-0.494779735803604,-0.605410635471344,0.531965255737305,-0.829820811748505,-0.168553426861763,0.692581057548523,-0.521925985813141,-0.497920423746109,-1.76128764906025e-007,0.196174621582031,-0.980569005012512,0.323088496923447,0.276621967554092,-0.905038177967072,0.084631934762001,-0.0136881982907653,-0.996318221092224,0.96899539232254,0.140347361564636,0.203348413109779,0.810839951038361,-0.55767560005188,0.177584901452065,0.623434782028198,-0.494779735803604,-0.605410635471344,0.679866969585419,0.0668043047189713,-0.730286359786987,0.535719096660614,-0.34520548582077,-0.770608901977539,0.650178849697113,-0.643839538097382,-0.403408080339432,-1.58651900505902e-007,-0.88168740272522,-0.471833974123001,-2.63122558408213e-007,-0.508763194084167,-0.860906600952148,0.531965255737305,-0.829820811748505,-0.168553426861763,0.650178849697113,-0.643839538097382,-0.403408080339432,0.865175783634186,-0.492135018110275,-0.096301294863224,0.692581057548523,-0.521925985813141,-0.497920423746109,0.531965255737305,-0.829820811748505,-0.168553426861763,0.377079367637634,-0.914120554924011,-0.148979529738426,0.650178849697113,-0.643839538097382,-0.403408080339432,0.377079367637634,-0.914120554924011,-0.148979529738426,6.89521897356826e-008,-0.996173918247223,-0.0873929783701897,-1.58651900505902e-007,-0.88168740272522,-0.471833974123001,0.650178849697113,-0.643839538097382,-0.403408080339432,0.650178849697113,-0.643839538097382,-0.403408080339432,0.535719096660614,-0.34520548582077,-0.770608901977539,0.865175783634186,-0.492135018110275,-0.096301294863224,0.173290207982063,-0.482702761888504,-0.85846871137619,0.716259360313416,-0.67921394109726,-0.160127341747284,0.92537248134613,-0.326573759317398,0.192445501685143,0.924197673797607,-0.150067403912544,-0.351195931434631,0.487899243831635,-0.859375059604645,-0.153064996004105,0.437930226325989,-0.834002435207367,-0.335644274950027,0.437930256128311,-0.834002375602722,-0.335644274950027, +0.485228985548019,-0.85868912935257,-0.164941936731339,0.485228985548019,-0.85868912935257,-0.164941936731339,0.500044286251068,-0.860887706279755,-0.0939585417509079,0.500044286251068,-0.86088764667511,-0.0939585417509079,0.487899243831635,-0.859375059604645,-0.153064996004105,0.377079367637634,-0.914120554924011,-0.148979529738426,-3.82225863404528e-007,-0.935656070709229,-0.35291314125061,6.89521897356826e-008,-0.996173918247223,-0.0873929783701897,0.623434782028198,-0.494779735803604,-0.605410635471344,0.810839951038361,-0.55767560005188,0.177584901452065,0.531965255737305,-0.829820811748505,-0.168553426861763,-0.00608789920806885,-0.834401905536652,0.551122903823853,-0.332718223333359,-0.903327345848084,0.270736694335938,-0.354764074087143,-0.903942346572876,0.238810762763023,0.15192323923111,-0.763492345809937,0.627693295478821,0.630473017692566,-0.618963062763214,0.468389302492142,-0.00608789920806885,-0.834401905536652,0.551122903823853,0.15192323923111,-0.763492345809937,0.627693295478821,0.521174550056458,-0.623879015445709,0.582367599010468,0.790280997753143,-0.603276073932648,-0.10730341821909,0.78598564863205,-0.615581750869751,0.0573198720812798,0.769834458827972,-0.614113748073578,0.173836722970009,0.790280938148499,-0.603276014328003,-0.107303403317928,0.122918538749218,-0.346504002809525,-0.929960191249847,0.152655780315399,-0.477877408266068,-0.865060329437256,0.406481325626373,-0.0516438111662865,-0.912198305130005,0.406481385231018,-0.0516438186168671,-0.91219836473465,-0.332718223333359,-0.903327345848084,0.270736694335938,-0.449996650218964,-0.888881087303162,0.085984580218792,-0.449996650218964,-0.888881206512451,0.0859845876693726,-0.354764074087143,-0.903942346572876,0.238810762763023,0.78598564863205,-0.615581750869751,0.0573198720812798,0.630473017692566,-0.618963062763214,0.468389302492142,0.521174550056458,-0.623879015445709,0.582367599010468,0.769834458827972,-0.614113748073578,0.173836722970009,0.716259360313416,-0.67921394109726,-0.160127341747284,0.173290207982063,-0.482702761888504,-0.85846871137619, +0.122918538749218,-0.346504002809525,-0.929960191249847,0.602223992347717,-0.741142988204956,-0.296704262495041,0.693998634815216,0.459318310022354,-0.554429948329926,0.96899539232254,0.140347361564636,0.203348413109779,0.679866969585419,0.0668043047189713,-0.730286359786987,0.323088496923447,0.276621967554092,-0.905038177967072,0.989750862121582,0.11578144133091,-0.0835935324430466,0.92537248134613,-0.326573759317398,0.192445501685143,0.810839951038361,-0.55767560005188,0.177584901452065,0.96899539232254,0.140347361564636,0.203348413109779,0.716259360313416,-0.67921394109726,-0.160127341747284,0.531965255737305,-0.829820811748505,-0.168553426861763,0.810839951038361,-0.55767560005188,0.177584901452065,0.084631934762001,-0.0136881982907653,-0.996318221092224,0.623434782028198,-0.494779735803604,-0.605410635471344,0.692581057548523,-0.521925985813141,-0.497920423746109,0.679866969585419,0.0668043047189713,-0.730286359786987,0.623434782028198,-0.494779735803604,-0.605410635471344,0.084631934762001,-0.0136881982907653,-0.996318221092224,0.323088496923447,0.276621967554092,-0.905038177967072,0.96899539232254,0.140347361564636,0.203348413109779,0.693998634815216,0.459318310022354,-0.554429948329926,0.989750862121582,0.11578144133091,-0.0835935324430466,0.602453947067261,-0.17015615105629,-0.779805183410645,0.955873727798462,-0.237460598349571,0.172967940568924,0.462576538324356,-0.698397576808929,0.546135246753693,0.49857172369957,-0.677088379859924,-0.541273951530457,0.49857172369957,-0.677088379859924,-0.541273951530457,0.462576538324356,-0.698397576808929,0.546135246753693,0.0248176269233227,-0.946943998336792,0.320439070463181,-0.00899488292634487,-0.700446784496307,-0.713648080825806,-0.00899488292634487,-0.700446784496307,-0.713648080825806,0.0248176269233227,-0.946943998336792,0.320439070463181,4.66771695073476e-007,-0.882330894470215,0.470629721879959,-7.73152976307756e-007,-0.668199360370636,-0.743982195854187,0.92537248134613,-0.326573759317398,0.192445501685143,0.716259360313416,-0.67921394109726,-0.160127341747284, +0.810839951038361,-0.55767560005188,0.177584901452065,1.37027651447852e-008,-0.00606912467628717,0.999981641769409,0,0.742637932300568,0.669693171977997,-0.512092411518097,0.529273808002472,0.676483929157257,1.37027651447852e-008,-0.00606912467628717,0.999981641769409,-0.512092411518097,0.529273808002472,0.676483929157257,-0.726637303829193,0.0302276443690062,0.686355948448181,1.37027651447852e-008,-0.00606912467628717,0.999981641769409,-0.726637303829193,0.0302276443690062,0.686355948448181,-0.537553012371063,-0.489766359329224,0.686415135860443,1.37027651447852e-008,-0.00606912467628717,0.999981641769409,-0.537553012371063,-0.489766359329224,0.686415135860443,1.1439591673934e-007,-0.752996683120728,0.658024191856384,0,0.742637932300568,0.669693171977997,0,0.997438728809357,0.071525901556015,-0.698269248008728,0.709616541862488,0.0941521227359772,-0.512092411518097,0.529273808002472,0.676483929157257,-0.512092411518097,0.529273808002472,0.676483929157257,-0.698269248008728,0.709616541862488,0.0941521227359772,-0.990322530269623,0.0476962216198444,0.130331337451935,-0.726637303829193,0.0302276443690062,0.686355948448181,-0.726637303829193,0.0302276443690062,0.686355948448181,-0.990322530269623,0.0476962216198444,0.130331337451935,-0.937348604202271,-0.183492705225945,0.296155095100403,-0.537553012371063,-0.489766359329224,0.686415135860443,-0.537553012371063,-0.489766359329224,0.686415135860443,-0.937348604202271,-0.183492705225945,0.296155095100403,-0.551138758659363,-0.554010391235352,0.623953819274902,-0.537553012371063,-0.489766359329224,0.686415135860443,-0.551138758659363,-0.554010391235352,0.623953819274902,-0.0930783152580261,-0.757826685905457,0.645782649517059,1.1439591673934e-007,-0.752996683120728,0.658024191856384,1.1439591673934e-007,-0.752996683120728,0.658024191856384,-0.0930783152580261,-0.757826685905457,0.645782649517059,5.47146441931545e-007,-0.795121133327484,0.60645055770874,-5.32756558868641e-008,0.928556799888611,-0.371190190315247,-0.647058606147766,0.668819785118103,-0.366053551435471,-0.698269248008728,0.709616541862488,0.0941521227359772, +0,0.997438728809357,0.071525901556015,-0.647058606147766,0.668819785118103,-0.366053551435471,-0.936730802059174,0.0604546442627907,-0.344790875911713,-0.990322530269623,0.0476962216198444,0.130331337451935,-0.698269248008728,0.709616541862488,0.0941521227359772,-0.936730802059174,0.0604546442627907,-0.344790875911713,-0.924197673797607,-0.150067582726479,-0.351195782423019,-0.937348604202271,-0.183492705225945,0.296155095100403,-0.990322530269623,0.0476962216198444,0.130331337451935,-0.955873548984528,-0.237460762262344,0.172968223690987,-0.46257695555687,-0.698397815227509,0.5461345911026,-0.551138758659363,-0.554010391235352,0.623953819274902,-0.937348604202271,-0.183492705225945,0.296155095100403,-0.46257695555687,-0.698397815227509,0.5461345911026,-0.0248175021260977,-0.946943700313568,0.320439547300339,-0.0930783152580261,-0.757826685905457,0.645782649517059,-0.551138758659363,-0.554010391235352,0.623953819274902,-0.0248175021260977,-0.946943700313568,0.320439547300339,4.66771695073476e-007,-0.882330894470215,0.470629721879959,5.47146441931545e-007,-0.795121133327484,0.60645055770874,-0.0930783152580261,-0.757826685905457,0.645782649517059,-9.53650243218362e-008,0.615638673305511,-0.788028597831726,-0.418333888053894,0.477073580026627,-0.772915005683899,-0.647058606147766,0.668819785118103,-0.366053551435471,-5.32756558868641e-008,0.928556799888611,-0.371190190315247,-0.418333888053894,0.477073580026627,-0.772915005683899,-0.69399881362915,0.45931813120842,-0.554429888725281,-0.936730802059174,0.0604546442627907,-0.344790875911713,-0.647058606147766,0.668819785118103,-0.366053551435471,-0.69399881362915,0.45931813120842,-0.554429888725281,-0.989750862121582,0.115781471133232,-0.0835934281349182,-0.936730802059174,0.0604546442627907,-0.344790875911713,-0.989750862121582,0.115781471133232,-0.0835934281349182,-0.925372540950775,-0.326573878526688,0.192445293068886,-0.924197673797607,-0.150067582726479,-0.351195782423019,-0.936730802059174,0.0604546442627907,-0.344790875911713,-0.602223932743073,-0.741142928600311,-0.296704143285751, +-0.716259360313416,-0.679214119911194,-0.160127118229866,-0.53196519613266,-0.829820871353149,-0.168553307652473,-0.546920001506805,-0.757240891456604,-0.357022106647491,-0.53196519613266,-0.829820871353149,-0.168553307652473,-0.377079427242279,-0.914120554924011,-0.148979321122169,-0.330876976251602,-0.883503377437592,-0.331575393676758,-0.546920001506805,-0.757240891456604,-0.357022106647491,-0.238302275538445,-0.894033432006836,-0.379363089799881,-0.330876976251602,-0.883503377437592,-0.331575393676758,-0.377079427242279,-0.914120554924011,-0.148979321122169,-3.82225863404528e-007,-0.935656070709229,-0.35291314125061,-0.238302275538445,-0.894033432006836,-0.379363089799881,-3.82225863404528e-007,-0.935656070709229,-0.35291314125061,-9.6773908353498e-007,-0.445692270994186,-0.895186245441437,-0.152656823396683,-0.477876484394073,-0.865060687065125,-1.76128764906025e-007,0.196174621582031,-0.980569005012512,-0.418333888053894,0.477073580026627,-0.772915005683899,-9.53650243218362e-008,0.615638673305511,-0.788028597831726,-1.76128764906025e-007,0.196174621582031,-0.980569005012512,-0.323088407516479,0.276621758937836,-0.905038297176361,-0.69399881362915,0.45931813120842,-0.554429888725281,-0.418333888053894,0.477073580026627,-0.772915005683899,-0.924197673797607,-0.150067582726479,-0.351195782423019,-0.602453291416168,-0.170156806707382,-0.779805600643158,-0.955873548984528,-0.237460762262344,0.172968223690987,-0.937348604202271,-0.183492705225945,0.296155095100403,-0.122918754816055,-0.346504658460617,-0.929960012435913,-0.498572081327438,-0.677088916301727,-0.541272938251495,-0.602453291416168,-0.170156806707382,-0.779805600643158,-0.173288255929947,-0.482703566551209,-0.85846871137619,-0.602453291416168,-0.170156806707382,-0.779805600643158,-0.924197673797607,-0.150067582726479,-0.351195782423019,-0.173288255929947,-0.482703566551209,-0.85846871137619,-0.152656823396683,-0.477876484394073,-0.865060687065125,0.00899399071931839,-0.700446724891663,-0.713648080825806,-0.498572081327438,-0.677088916301727,-0.541272938251495, +-0.122918754816055,-0.346504658460617,-0.929960012435913,-9.6773908353498e-007,-0.445692270994186,-0.895186245441437,-7.73152976307756e-007,-0.668199360370636,-0.743982195854187,0.00899399071931839,-0.700446724891663,-0.713648080825806,-0.152656823396683,-0.477876484394073,-0.865060687065125,-0.623434960842133,-0.494779676198959,-0.605410575866699,-0.692581832408905,-0.521925926208496,-0.497919291257858,-0.53196519613266,-0.829820871353149,-0.168553307652473,-1.76128764906025e-007,0.196174621582031,-0.980569005012512,-0.0846319198608398,-0.0136884404346347,-0.996318221092224,-0.323088407516479,0.276621758937836,-0.905038297176361,-0.96899539232254,0.140347197651863,0.203348323702812,-0.679866075515747,0.0668042302131653,-0.730287134647369,-0.623434960842133,-0.494779676198959,-0.605410575866699,-0.810840129852295,-0.557675719261169,0.177584245800972,-0.535719096660614,-0.345205456018448,-0.770609021186829,-2.63122558408213e-007,-0.508763194084167,-0.860906600952148,-1.58651900505902e-007,-0.88168740272522,-0.471833974123001,-0.650178909301758,-0.643839597702026,-0.403408020734787,-0.53196519613266,-0.829820871353149,-0.168553307652473,-0.692581832408905,-0.521925926208496,-0.497919291257858,-0.865175724029541,-0.492134988307953,-0.0963017120957375,-0.650178909301758,-0.643839597702026,-0.403408020734787,-0.53196519613266,-0.829820871353149,-0.168553307652473,-0.650178909301758,-0.643839597702026,-0.403408020734787,-0.377079427242279,-0.914120554924011,-0.148979321122169,-0.377079427242279,-0.914120554924011,-0.148979321122169,-0.650178909301758,-0.643839597702026,-0.403408020734787,-1.58651900505902e-007,-0.88168740272522,-0.471833974123001,6.89521897356826e-008,-0.996173918247223,-0.0873929783701897,-0.650178909301758,-0.643839597702026,-0.403408020734787,-0.865175724029541,-0.492134988307953,-0.0963017120957375,-0.535719096660614,-0.345205456018448,-0.770609021186829,-0.173288255929947,-0.482703566551209,-0.85846871137619,-0.924197673797607,-0.150067582726479,-0.351195782423019,-0.925372540950775,-0.326573878526688,0.192445293068886, +-0.716259360313416,-0.679214119911194,-0.160127118229866,-0.487899094820023,-0.85937511920929,-0.153064861893654,-0.48522886633873,-0.858689248561859,-0.164941921830177,-0.437930017709732,-0.834002494812012,-0.335644155740738,-0.437930047512054,-0.834002554416656,-0.335644215345383,-0.48522886633873,-0.858689248561859,-0.164941921830177,-0.487899094820023,-0.85937511920929,-0.153064861893654,-0.500044167041779,-0.860887765884399,-0.0939584448933601,-0.500044167041779,-0.860887765884399,-0.0939584448933601,-0.377079427242279,-0.914120554924011,-0.148979321122169,6.89521897356826e-008,-0.996173918247223,-0.0873929783701897,-3.82225863404528e-007,-0.935656070709229,-0.35291314125061,-0.623434960842133,-0.494779676198959,-0.605410575866699,-0.53196519613266,-0.829820871353149,-0.168553307652473,-0.810840129852295,-0.557675719261169,0.177584245800972,0.00609012320637703,-0.834400713443756,0.551124691963196,-0.151922851800919,-0.763489782810211,0.627696454524994,0.354764312505722,-0.903942048549652,0.238811746239662,0.332719057798386,-0.903326809406281,0.270737081766129,-0.630472958087921,-0.618962049484253,0.468390762805939,-0.521173775196075,-0.623877286911011,0.582370221614838,-0.151922851800919,-0.763489782810211,0.627696454524994,0.00609012320637703,-0.834400713443756,0.551124691963196,-0.790280878543854,-0.603276252746582,-0.10730317234993,-0.790280878543854,-0.603276193141937,-0.10730317234993,-0.769834518432617,-0.614113628864288,0.173837244510651,-0.78598564863205,-0.615581750869751,0.0573202297091484,-0.122918754816055,-0.346504658460617,-0.929960012435913,-0.406480401754379,-0.0516420975327492,-0.912198841571808,-0.406480401754379,-0.0516420975327492,-0.912198841571808,-0.152656823396683,-0.477876484394073,-0.865060687065125,0.332719057798386,-0.903326809406281,0.270737081766129,0.354764312505722,-0.903942048549652,0.238811746239662,0.449996501207352,-0.888881206512451,0.085984542965889,0.449996501207352,-0.888881206512451,0.085984542965889,-0.78598564863205,-0.615581750869751,0.0573202297091484,-0.769834518432617,-0.614113628864288,0.173837244510651, +-0.521173775196075,-0.623877286911011,0.582370221614838,-0.630472958087921,-0.618962049484253,0.468390762805939,-0.716259360313416,-0.679214119911194,-0.160127118229866,-0.602223932743073,-0.741142928600311,-0.296704143285751,-0.122918754816055,-0.346504658460617,-0.929960012435913,-0.173288255929947,-0.482703566551209,-0.85846871137619,-0.69399881362915,0.45931813120842,-0.554429888725281,-0.323088407516479,0.276621758937836,-0.905038297176361,-0.679866075515747,0.0668042302131653,-0.730287134647369,-0.96899539232254,0.140347197651863,0.203348323702812,-0.989750862121582,0.115781471133232,-0.0835934281349182,-0.96899539232254,0.140347197651863,0.203348323702812,-0.810840129852295,-0.557675719261169,0.177584245800972,-0.925372540950775,-0.326573878526688,0.192445293068886,-0.716259360313416,-0.679214119911194,-0.160127118229866,-0.810840129852295,-0.557675719261169,0.177584245800972,-0.53196519613266,-0.829820871353149,-0.168553307652473,-0.0846319198608398,-0.0136884404346347,-0.996318221092224,-0.692581832408905,-0.521925926208496,-0.497919291257858,-0.623434960842133,-0.494779676198959,-0.605410575866699,-0.679866075515747,0.0668042302131653,-0.730287134647369,-0.323088407516479,0.276621758937836,-0.905038297176361,-0.0846319198608398,-0.0136884404346347,-0.996318221092224,-0.623434960842133,-0.494779676198959,-0.605410575866699,-0.96899539232254,0.140347197651863,0.203348323702812,-0.989750862121582,0.115781471133232,-0.0835934281349182,-0.69399881362915,0.45931813120842,-0.554429888725281,-0.602453291416168,-0.170156806707382,-0.779805600643158,-0.498572081327438,-0.677088916301727,-0.541272938251495,-0.46257695555687,-0.698397815227509,0.5461345911026,-0.955873548984528,-0.237460762262344,0.172968223690987,-0.498572081327438,-0.677088916301727,-0.541272938251495,0.00899399071931839,-0.700446724891663,-0.713648080825806,-0.0248175021260977,-0.946943700313568,0.320439547300339,-0.46257695555687,-0.698397815227509,0.5461345911026,0.00899399071931839,-0.700446724891663,-0.713648080825806,-7.73152976307756e-007,-0.668199360370636,-0.743982195854187, +4.66771695073476e-007,-0.882330894470215,0.470629721879959,-0.0248175021260977,-0.946943700313568,0.320439547300339,-0.925372540950775,-0.326573878526688,0.192445293068886,-0.810840129852295,-0.557675719261169,0.177584245800972,-0.716259360313416,-0.679214119911194,-0.160127118229866,0.999896824359894,-0.00843594595789909,0.0116258636116982,0.999896764755249,-0.00843594595789909,0.0116258626803756,0.999896764755249,-0.00843594595789909,0.0116258636116982,0.999896943569183,-0.00843594782054424,0.0116258654743433,0.999896824359894,-0.00843594595789909,0.0116258626803756,-0.452326357364655,-0.326355695724487,0.829995691776276,-0.463371098041534,-0.88182532787323,0.0875859335064888,-0.463369190692902,-0.881807565689087,0.0877750739455223,-0.456457704305649,-0.36398383975029,0.811887979507446,-0.299331396818161,0.813851833343506,0.498042106628418,-0.452326357364655,-0.326355695724487,0.829995691776276,-0.456457704305649,-0.36398383975029,0.811887979507446,-0.30912572145462,0.768354177474976,0.560422420501709,-0.299331396818161,0.813851833343506,0.498042106628418,-0.30912572145462,0.768354177474976,0.560422420501709,-0.335788577795029,0.61036741733551,-0.717424273490906,-0.313071340322495,0.714384436607361,-0.625812411308289,-0.463371098041534,-0.88182532787323,0.0875859335064888,-0.483445525169373,-0.471258968114853,-0.737695932388306,-0.485668987035751,-0.496662586927414,-0.719341456890106,-0.463369190692902,-0.881807565689087,0.0877750739455223,-0.483445525169373,-0.471258968114853,-0.737695932388306,-0.313071340322495,0.714384436607361,-0.625812411308289,-0.335788577795029,0.61036741733551,-0.717424273490906,-0.485668987035751,-0.496662586927414,-0.719341456890106,-0.999924898147583,-0.0121228415518999,-0.00177845626603812,-0.999924957752228,-0.0121228424832225,-0.00177845626603812,-0.999925017356873,-0.0121228424832225,-0.00177845638245344,-0.999924898147583,-0.0121228415518999,-0.00177845626603812,-0.999924898147583,-0.0121228415518999,-0.00177845626603812,-0.0498541668057442,-1.04904408715356e-007,-0.998756468296051, +-0.0498543828725815,0.998756468296051,-2.15054251384572e-006,0.420092552900314,0.907481253147125,-1.75777313415892e-006,0.42009225487709,-7.47987343174827e-008,-0.90748143196106,-0.0498543754220009,-0.998756468296051,-2.25544636123232e-006,0.420092433691025,-0.90748119354248,-1.88867056749586e-006,0.420092761516571,-1.12198833335242e-007,0.907481074333191,-0.049854714423418,-1.57357249008783e-007,0.998756468296051,-0.0498541668057442,-1.04904408715356e-007,-0.998756468296051,0.42009225487709,-7.47987343174827e-008,-0.90748143196106,0.420092433691025,-0.90748119354248,-1.88867056749586e-006,-0.0498543754220009,-0.998756468296051,-2.25544636123232e-006,1,1.33125812595836e-008,-1.65076005487208e-006,0.420092552900314,0.907481253147125,-1.75777313415892e-006,0.420092761516571,-1.12198833335242e-007,0.907481074333191,0.420092552900314,0.907481253147125,-1.75777313415892e-006,1,1.33125812595836e-008,-1.65076005487208e-006,0.42009225487709,-7.47987343174827e-008,-0.90748143196106,0.420092433691025,-0.90748119354248,-1.88867056749586e-006,1,1.33125812595836e-008,-1.65076005487208e-006,0.420092761516571,-1.12198833335242e-007,0.907481074333191,0.42009225487709,-7.47987343174827e-008,-0.90748143196106,1,1.33125812595836e-008,-1.65076005487208e-006,0.420092433691025,-0.90748119354248,-1.88867056749586e-006,0.420092552900314,0.907481253147125,-1.75777313415892e-006,-0.0498543828725815,0.998756468296051,-2.15054251384572e-006,-0.049854714423418,-1.57357249008783e-007,0.998756468296051,0.420092761516571,-1.12198833335242e-007,0.907481074333191,0.779209077358246,-0.354648530483246,0.516776323318481,0.800292432308197,-0.59285181760788,-0.0897709801793098,0.575969099998474,0.458134531974792,-0.677031993865967,0.78835517168045,0.389809995889664,0.47596675157547,0.581013917922974,0.0491865053772926,-0.812406003475189,0.575969099998474,0.458134531974792,-0.677031993865967,0.800292432308197,-0.59285181760788,-0.0897709801793098,0.581013917922974,0.0491865053772926,-0.812406003475189,-0.228435382246971,0.839881896972656,-0.492357134819031, +0.339805603027344,0.884766101837158,-0.318937361240387,0.575969099998474,0.458134531974792,-0.677031993865967,0.78835517168045,0.389809995889664,0.47596675157547,0.00996241439133883,0.650992095470428,0.759019076824188,-0.0938767194747925,-0.615620136260986,0.782431423664093,0.779209077358246,-0.354648530483246,0.516776323318481,0.779209077358246,-0.354648530483246,0.516776323318481,-0.0938767194747925,-0.615620136260986,0.782431423664093,0.0401604138314724,-0.936810791492462,0.347523868083954,0.800292432308197,-0.59285181760788,-0.0897709801793098,0.800292432308197,-0.59285181760788,-0.0897709801793098,0.216595157980919,-0.958023607730865,-0.187822356820107,0.0224373284727335,0.499979019165039,-0.865746796131134,0.581013917922974,0.0491865053772926,-0.812406003475189,0.575969099998474,0.458134531974792,-0.677031993865967,0.339805603027344,0.884766101837158,-0.318937361240387,0.00996241439133883,0.650992095470428,0.759019076824188,0.78835517168045,0.389809995889664,0.47596675157547,-0.61725914478302,-0.775979399681091,-0.129796132445335,-0.648292303085327,0.486018300056458,0.586091578006744,-0.506499886512756,0.357795625925064,-0.784500002861023,-0.228435382246971,0.839881896972656,-0.492357134819031,0.514148116111755,0.828495800495148,-0.221915617585182,0.339805603027344,0.884766101837158,-0.318937361240387,0.00996241439133883,0.650992095470428,0.759019076824188,-0.792928099632263,0.608747482299805,0.0262987427413464,-0.906221807003021,-0.408198624849319,0.110162451863289,-0.0938767194747925,-0.615620136260986,0.782431423664093,-0.0938767194747925,-0.615620136260986,0.782431423664093,-0.906221807003021,-0.408198624849319,0.110162451863289,0.131605565547943,-0.972493588924408,-0.192188024520874,0.0401604138314724,-0.936810791492462,0.347523868083954,0.339805603027344,0.884766101837158,-0.318937361240387,0.514148116111755,0.828495800495148,-0.221915617585182,-0.792928099632263,0.608747482299805,0.0262987427413464,0.00996241439133883,0.650992095470428,0.759019076824188,0.0401604138314724,-0.936810791492462,0.347523868083954, +0.131605565547943,-0.972493588924408,-0.192188024520874,-0.228435382246971,0.839881896972656,-0.492357134819031,0.0401604138314724,-0.936810791492462,0.347523868083954,0.216595157980919,-0.958023607730865,-0.187822356820107,0.800292432308197,-0.59285181760788,-0.0897709801793098,-0.228435382246971,0.839881896972656,-0.492357134819031,0.581013917922974,0.0491865053772926,-0.812406003475189,0.0224373284727335,0.499979019165039,-0.865746796131134,0.216595157980919,-0.958023607730865,-0.187822356820107,-0.61725914478302,-0.775979399681091,-0.129796132445335,-0.506499886512756,0.357795625925064,-0.784500002861023,0.0224373284727335,0.499979019165039,-0.865746796131134,0.0224373284727335,0.499979019165039,-0.865746796131134,-0.506499886512756,0.357795625925064,-0.784500002861023,-0.228435382246971,0.839881896972656,-0.492357134819031,-0.228435382246971,0.839881896972656,-0.492357134819031,-0.648292303085327,0.486018300056458,0.586091578006744,0.0401604138314724,-0.936810791492462,0.347523868083954,-0.648292303085327,0.486018300056458,0.586091578006744,-0.228435382246971,0.839881896972656,-0.492357134819031,-0.506499886512756,0.357795625925064,-0.784500002861023,0.0401604138314724,-0.936810791492462,0.347523868083954,-0.648292303085327,0.486018300056458,0.586091578006744,-0.61725914478302,-0.775979399681091,-0.129796132445335,0.216595157980919,-0.958023607730865,-0.187822356820107,0.514148116111755,0.828495800495148,-0.221915617585182,-0.228435382246971,0.839881896972656,-0.492357134819031,0.131605565547943,-0.972493588924408,-0.192188024520874,-0.906221807003021,-0.408198624849319,0.110162451863289,0.222936168313026,-0.694407403469086,-0.684176683425903,0.131605565547943,-0.972493588924408,-0.192188024520874,-0.792928099632263,0.608747482299805,0.0262987427413464,0.447289109230042,0.386660039424896,-0.806490302085876,0.222936168313026,-0.694407403469086,-0.684176683425903,-0.906221807003021,-0.408198624849319,0.110162451863289,0.131605565547943,-0.972493588924408,-0.192188024520874,0.222936168313026,-0.694407403469086,-0.684176683425903, +0.447289109230042,0.386660039424896,-0.806490302085876,0.514148116111755,0.828495800495148,-0.221915617585182,0.514148116111755,0.828495800495148,-0.221915617585182,0.447289109230042,0.386660039424896,-0.806490302085876,-0.792928099632263,0.608747482299805,0.0262987427413464,-0.0176288895308971,0.941694498062134,0.33600702881813,-0.2617327272892,0.622383892536163,0.737654507160187,-0.0279027819633484,0.799102783203125,0.600546538829803,-0.0176288895308971,0.941694498062134,0.33600702881813,-0.0279027819633484,0.799102783203125,0.600546538829803,0.208357751369476,0.673021256923676,0.709668576717377,0.208357751369476,0.673021256923676,0.709668576717377,-0.0279027819633484,0.799102783203125,0.600546538829803,-0.00346516654826701,0.00764281209558249,0.999964773654938,0.239141583442688,0.00432408647611737,0.97097510099411,-0.0279027819633484,0.799102783203125,0.600546538829803,-0.2617327272892,0.622383892536163,0.737654507160187,-0.280536651611328,-0.0128004150465131,0.95975798368454,-0.00346516654826701,0.00764281209558249,0.999964773654938,-0.00346516654826701,0.00764281209558249,0.999964773654938,-0.0177032593637705,-0.794282078742981,0.607291102409363,0.208152800798416,-0.667199313640594,0.715204536914825,0.239141583442688,0.00432408647611737,0.97097510099411,-0.280536651611328,-0.0128004150465131,0.95975798368454,-0.246253535151482,-0.612188756465912,0.751388132572174,-0.0177032593637705,-0.794282078742981,0.607291102409363,-0.00346516654826701,0.00764281209558249,0.999964773654938,-0.389204919338226,-0.918560087680817,0.0690426975488663,0.398052573204041,-0.0256086345762014,-0.917005181312561,-0.441711694002151,-0.0249292869120836,-0.8968106508255,0.424287021160126,-0.902370154857636,0.0755547434091568,-0.282583951950073,0.959019184112549,-0.0207029860466719,0.446639001369476,-0.0900079533457756,0.890175402164459,-0.492784440517426,-0.085964635014534,0.865894675254822,0.316960990428925,0.948197662830353,-0.021377706900239,-0.0870473459362984,0.792360603809357,0.603810727596283,-0.996308207511902,0.0298181418329477,0.0805041491985321, +-0.0761510729789734,-0.793632209300995,0.603613257408142,0.398052573204041,-0.0256086345762014,-0.917005181312561,-0.389204919338226,-0.918560087680817,0.0690426975488663,-0.0607562251389027,-0.798813760280609,-0.598502457141876,-0.112551294267178,0.796964406967163,-0.593447506427765,0.398052573204041,-0.0256086345762014,-0.917005181312561,-0.0607562251389027,-0.798813760280609,-0.598502457141876,0.398052573204041,-0.0256086345762014,-0.917005181312561,-0.112551294267178,0.796964406967163,-0.593447506427765,-0.282583951950073,0.959019184112549,-0.0207029860466719,-0.0607562251389027,-0.798813760280609,-0.598502457141876,-0.389204919338226,-0.918560087680817,0.0690426975488663,-0.997336864471436,-0.0666485726833344,-0.0296143982559443,-0.282583951950073,0.959019184112549,-0.0207029860466719,-0.997336864471436,-0.0666485726833344,-0.0296143982559443,-0.389204919338226,-0.918560087680817,0.0690426975488663,-0.0761510729789734,-0.793632209300995,0.603613257408142,-0.389204919338226,-0.918560087680817,0.0690426975488663,0.446639001369476,-0.0900079533457756,0.890175402164459,0.446639001369476,-0.0900079533457756,0.890175402164459,-0.282583951950073,0.959019184112549,-0.0207029860466719,-0.0870473459362984,0.792360603809357,0.603810727596283,-0.0870473459362984,0.792360603809357,0.603810727596283,-0.0761510729789734,-0.793632209300995,0.603613257408142,0.446639001369476,-0.0900079533457756,0.890175402164459,-0.996308207511902,0.0298181418329477,0.0805041491985321,-0.389204919338226,-0.918560087680817,0.0690426975488663,-0.0761510729789734,-0.793632209300995,0.603613257408142,-0.996308207511902,0.0298181418329477,0.0805041491985321,-0.0870473459362984,0.792360603809357,0.603810727596283,-0.282583951950073,0.959019184112549,-0.0207029860466719,-0.389204919338226,-0.918560087680817,0.0690426975488663,-0.996308207511902,0.0298181418329477,0.0805041491985321,-0.282583951950073,0.959019184112549,-0.0207029860466719,-0.997336864471436,-0.0666485726833344,-0.0296143982559443,-0.282583951950073,0.959019184112549,-0.0207029860466719, +-0.112551294267178,0.796964406967163,-0.593447506427765,-0.112551294267178,0.796964406967163,-0.593447506427765,-0.0607562251389027,-0.798813760280609,-0.598502457141876,-0.997336864471436,-0.0666485726833344,-0.0296143982559443,-0.441711694002151,-0.0249292869120836,-0.8968106508255,0.398052573204041,-0.0256086345762014,-0.917005181312561,-0.282583951950073,0.959019184112549,-0.0207029860466719,0.316960990428925,0.948197662830353,-0.021377706900239,-0.492784440517426,-0.085964635014534,0.865894675254822,0.446639001369476,-0.0900079533457756,0.890175402164459,-0.389204919338226,-0.918560087680817,0.0690426975488663,0.424287021160126,-0.902370154857636,0.0755547434091568,0.0518011376261711,0.804134368896484,0.592186331748962,0.0430886633694172,-0.806536257266998,0.589612364768982,0.991984486579895,0.0307399015873671,0.122563771903515,-0.441711694002151,-0.0249292869120836,-0.8968106508255,0.0276466254144907,-0.813023269176483,-0.581574559211731,0.424287021160126,-0.902370154857636,0.0755547434091568,0.0759655013680458,0.808455407619476,-0.583634257316589,0.0276466254144907,-0.813023269176483,-0.581574559211731,-0.441711694002151,-0.0249292869120836,-0.8968106508255,-0.441711694002151,-0.0249292869120836,-0.8968106508255,0.316960990428925,0.948197662830353,-0.021377706900239,0.0759655013680458,0.808455407619476,-0.583634257316589,0.0276466254144907,-0.813023269176483,-0.581574559211731,0.995688140392303,-0.0616225115954876,-0.0693387314677238,0.424287021160126,-0.902370154857636,0.0755547434091568,0.316960990428925,0.948197662830353,-0.021377706900239,0.424287021160126,-0.902370154857636,0.0755547434091568,0.995688140392303,-0.0616225115954876,-0.0693387314677238,0.0430886633694172,-0.806536257266998,0.589612364768982,-0.492784440517426,-0.085964635014534,0.865894675254822,0.424287021160126,-0.902370154857636,0.0755547434091568,-0.492784440517426,-0.085964635014534,0.865894675254822,0.0518011376261711,0.804134368896484,0.592186331748962,0.316960990428925,0.948197662830353,-0.021377706900239,0.0518011376261711,0.804134368896484,0.592186331748962, +-0.492784440517426,-0.085964635014534,0.865894675254822,0.0430886633694172,-0.806536257266998,0.589612364768982,0.991984486579895,0.0307399015873671,0.122563771903515,0.0430886633694172,-0.806536257266998,0.589612364768982,0.424287021160126,-0.902370154857636,0.0755547434091568,0.991984486579895,0.0307399015873671,0.122563771903515,0.316960990428925,0.948197662830353,-0.021377706900239,0.0518011376261711,0.804134368896484,0.592186331748962,0.424287021160126,-0.902370154857636,0.0755547434091568,0.316960990428925,0.948197662830353,-0.021377706900239,0.991984486579895,0.0307399015873671,0.122563771903515,0.995688140392303,-0.0616225115954876,-0.0693387314677238,0.0759655013680458,0.808455407619476,-0.583634257316589,0.316960990428925,0.948197662830353,-0.021377706900239,0.0759655013680458,0.808455407619476,-0.583634257316589,0.995688140392303,-0.0616225115954876,-0.0693387314677238,0.0276466254144907,-0.813023269176483,-0.581574559211731,-0.246253535151482,-0.612188756465912,0.751388132572174,-0.0101661654189229,-0.941961646080017,0.335566699504852,-0.0177032593637705,-0.794282078742981,0.607291102409363,-0.0101661654189229,-0.941961646080017,0.335566699504852,0.208152800798416,-0.667199313640594,0.715204536914825,-0.0177032593637705,-0.794282078742981,0.607291102409363,-0.0690419971942902,-0.918559908866882,-0.38920533657074,0.917005300521851,-0.0256086979061365,0.398052096366882,0.896810412406921,-0.0249292682856321,-0.441712141036987,-0.0755550786852837,-0.902370274066925,0.424286663532257,0.0207036472856998,0.959019005298615,-0.282584339380264,-0.890175640583038,-0.0900077819824219,0.446638494729996,-0.865895092487335,-0.0859643369913101,-0.4927838742733,0.0213779378682375,0.948197603225708,0.316961109638214,-0.603811323642731,0.792360126972198,-0.0870478004217148,-0.0805030539631844,0.0298178996890783,-0.996308267116547,-0.603612303733826,-0.793632805347443,-0.0761517658829689,0.917005300521851,-0.0256086979061365,0.398052096366882,-0.0690419971942902,-0.918559908866882,-0.38920533657074,0.598501861095428,-0.798814237117767,-0.0607562884688377, +0.593447983264923,0.79696398973465,-0.112551376223564,0.917005300521851,-0.0256086979061365,0.398052096366882,0.598501861095428,-0.798814237117767,-0.0607562884688377,0.917005300521851,-0.0256086979061365,0.398052096366882,0.593447983264923,0.79696398973465,-0.112551376223564,0.0207036472856998,0.959019005298615,-0.282584339380264,0.598501861095428,-0.798814237117767,-0.0607562884688377,-0.0690419971942902,-0.918559908866882,-0.38920533657074,0.0296162478625774,-0.0666486024856567,-0.997336864471436,0.0207036472856998,0.959019005298615,-0.282584339380264,0.0296162478625774,-0.0666486024856567,-0.997336864471436,-0.0690419971942902,-0.918559908866882,-0.38920533657074,-0.603612303733826,-0.793632805347443,-0.0761517658829689,-0.0690419971942902,-0.918559908866882,-0.38920533657074,-0.890175640583038,-0.0900077819824219,0.446638494729996,-0.890175640583038,-0.0900077819824219,0.446638494729996,0.0207036472856998,0.959019005298615,-0.282584339380264,-0.603811323642731,0.792360126972198,-0.0870478004217148,-0.603811323642731,0.792360126972198,-0.0870478004217148,-0.603612303733826,-0.793632805347443,-0.0761517658829689,-0.890175640583038,-0.0900077819824219,0.446638494729996,-0.0805030539631844,0.0298178996890783,-0.996308267116547,-0.0690419971942902,-0.918559908866882,-0.38920533657074,-0.603612303733826,-0.793632805347443,-0.0761517658829689,-0.0805030539631844,0.0298178996890783,-0.996308267116547,-0.603811323642731,0.792360126972198,-0.0870478004217148,0.0207036472856998,0.959019005298615,-0.282584339380264,-0.0690419971942902,-0.918559908866882,-0.38920533657074,-0.0805030539631844,0.0298178996890783,-0.996308267116547,0.0207036472856998,0.959019005298615,-0.282584339380264,0.0296162478625774,-0.0666486024856567,-0.997336864471436,0.0207036472856998,0.959019005298615,-0.282584339380264,0.593447983264923,0.79696398973465,-0.112551376223564,0.593447983264923,0.79696398973465,-0.112551376223564,0.598501861095428,-0.798814237117767,-0.0607562884688377,0.0296162478625774,-0.0666486024856567,-0.997336864471436,0.896810412406921,-0.0249292682856321,-0.441712141036987, +0.917005300521851,-0.0256086979061365,0.398052096366882,0.0207036472856998,0.959019005298615,-0.282584339380264,0.0213779378682375,0.948197603225708,0.316961109638214,-0.865895092487335,-0.0859643369913101,-0.4927838742733,-0.890175640583038,-0.0900077819824219,0.446638494729996,-0.0690419971942902,-0.918559908866882,-0.38920533657074,-0.0755550786852837,-0.902370274066925,0.424286663532257,-0.592185974121094,0.804134488105774,0.051801472902298,-0.589612305164337,-0.806536257266998,0.0430891215801239,-0.122564196586609,0.0307398214936256,0.99198442697525,0.896810412406921,-0.0249292682856321,-0.441712141036987,0.58157479763031,-0.813023090362549,0.0276458598673344,-0.0755550786852837,-0.902370274066925,0.424286663532257,0.583634674549103,0.808455169200897,0.0759655088186264,0.58157479763031,-0.813023090362549,0.0276458598673344,0.896810412406921,-0.0249292682856321,-0.441712141036987,0.896810412406921,-0.0249292682856321,-0.441712141036987,0.0213779378682375,0.948197603225708,0.316961109638214,0.583634674549103,0.808455169200897,0.0759655088186264,0.58157479763031,-0.813023090362549,0.0276458598673344,0.0693381950259209,-0.061622891575098,0.995688080787659,-0.0755550786852837,-0.902370274066925,0.424286663532257,0.0213779378682375,0.948197603225708,0.316961109638214,-0.0755550786852837,-0.902370274066925,0.424286663532257,0.0693381950259209,-0.061622891575098,0.995688080787659,-0.589612305164337,-0.806536257266998,0.0430891215801239,-0.865895092487335,-0.0859643369913101,-0.4927838742733,-0.0755550786852837,-0.902370274066925,0.424286663532257,-0.865895092487335,-0.0859643369913101,-0.4927838742733,-0.592185974121094,0.804134488105774,0.051801472902298,0.0213779378682375,0.948197603225708,0.316961109638214,-0.592185974121094,0.804134488105774,0.051801472902298,-0.865895092487335,-0.0859643369913101,-0.4927838742733,-0.589612305164337,-0.806536257266998,0.0430891215801239,-0.122564196586609,0.0307398214936256,0.99198442697525,-0.589612305164337,-0.806536257266998,0.0430891215801239,-0.0755550786852837,-0.902370274066925,0.424286663532257, +-0.122564196586609,0.0307398214936256,0.99198442697525,0.0213779378682375,0.948197603225708,0.316961109638214,-0.592185974121094,0.804134488105774,0.051801472902298,-0.0755550786852837,-0.902370274066925,0.424286663532257,0.0213779378682375,0.948197603225708,0.316961109638214,-0.122564196586609,0.0307398214936256,0.99198442697525,0.0693381950259209,-0.061622891575098,0.995688080787659,0.583634674549103,0.808455169200897,0.0759655088186264,0.0213779378682375,0.948197603225708,0.316961109638214,0.583634674549103,0.808455169200897,0.0759655088186264,0.0693381950259209,-0.061622891575098,0.995688080787659,0.58157479763031,-0.813023090362549,0.0276458598673344,0.998756408691406,0,-0.049854151904583,5.24522789646653e-008,0.998756408691406,-0.0498541742563248,-7.47988266880384e-008,0.907481670379639,0.420091778039932,0.907481253147125,6.5449029307274e-008,0.420092552900314,1.04904557929331e-007,-0.998756408691406,-0.0498541817069054,-5.60991253450993e-008,-0.907481670379639,0.420091718435287,-0.907481551170349,7.47988551097478e-008,0.420091927051544,-0.998756468296051,-5.24522860700927e-008,-0.0498542077839375,0.998756408691406,0,-0.049854151904583,0.907481253147125,6.5449029307274e-008,0.420092552900314,-5.60991253450993e-008,-0.907481670379639,0.420091718435287,1.04904557929331e-007,-0.998756408691406,-0.0498541817069054,-4.65941582206142e-007,6.65630821572449e-008,1,-7.47988266880384e-008,0.907481670379639,0.420091778039932,-0.907481551170349,7.47988551097478e-008,0.420091927051544,-7.47988266880384e-008,0.907481670379639,0.420091778039932,-4.65941582206142e-007,6.65630821572449e-008,1,0.907481253147125,6.5449029307274e-008,0.420092552900314,-5.60991253450993e-008,-0.907481670379639,0.420091718435287,-4.65941582206142e-007,6.65630821572449e-008,1,-0.907481551170349,7.47988551097478e-008,0.420091927051544,0.907481253147125,6.5449029307274e-008,0.420092552900314,-4.65941582206142e-007,6.65630821572449e-008,1,-5.60991253450993e-008,-0.907481670379639,0.420091718435287,-7.47988266880384e-008,0.907481670379639,0.420091778039932, +5.24522789646653e-008,0.998756408691406,-0.0498541742563248,-0.998756468296051,-5.24522860700927e-008,-0.0498542077839375,-0.907481551170349,7.47988551097478e-008,0.420091927051544,0.754284977912903,0.13346491754055,-0.642838537693024,-0.76011335849762,0.2597336769104,-0.595622420310974,-0.386048257350922,0.743940055370331,-0.545453906059265,0.443272978067398,0.70000833272934,-0.559908449649811,-0.0792622044682503,-0.981667459011078,-0.173339337110519,-0.986041247844696,-0.0855744928121567,-0.142827361822128,-0.99271821975708,0.0179196801036596,0.119119420647621,-0.121096551418304,-0.873800337314606,0.470965474843979,-0.986041247844696,-0.0855744928121567,-0.142827361822128,-0.40146017074585,0.880181670188904,-0.253199487924576,-0.490803003311157,0.871041715145111,-0.0199655368924141,-0.99271821975708,0.0179196801036596,0.119119420647621,0.972065448760986,-0.168495953083038,-0.163395076990128,-0.0792622044682503,-0.981667459011078,-0.173339337110519,-0.121096551418304,-0.873800337314606,0.470965474843979,0.99494206905365,-0.097113162279129,0.0256766900420189,-0.40146017074585,0.880181670188904,-0.253199487924576,0.517886877059937,0.820431530475616,-0.242250293493271,0.615439713001251,0.785580396652222,-0.0640107840299606,-0.490803003311157,0.871041715145111,-0.0199655368924141,0.517886877059937,0.820431530475616,-0.242250293493271,0.972065448760986,-0.168495953083038,-0.163395076990128,0.99494206905365,-0.097113162279129,0.0256766900420189,0.615439713001251,0.785580396652222,-0.0640107840299606,0.0438310131430626,0.137787401676178,0.989491581916809,-0.99271821975708,0.0179196801036596,0.119119420647621,-0.884542107582092,0.169591292738914,0.434538692235947,0.000172394691617228,0.00191503297537565,0.999998152256012,0.0438310131430626,0.137787401676178,0.989491581916809,-0.884542107582092,0.169591292738914,0.434538692235947,-0.836431741714478,-0.0865181982517242,0.541199266910553,-0.76011335849762,0.2597336769104,-0.595622420310974,-0.884542107582092,0.169591292738914,0.434538692235947,-0.99271821975708,0.0179196801036596,0.119119420647621, +-0.386048257350922,0.743940055370331,-0.545453906059265,-0.76011335849762,0.2597336769104,-0.595622420310974,-0.99271821975708,0.0179196801036596,0.119119420647621,-0.490803003311157,0.871041715145111,-0.0199655368924141,0.950192630290985,-0.0980531573295593,0.295836865901947,0.754284977912903,0.13346491754055,-0.642838537693024,0.99494206905365,-0.097113162279129,0.0256766900420189,0.443272978067398,0.70000833272934,-0.559908449649811,-0.386048257350922,0.743940055370331,-0.545453906059265,-0.490803003311157,0.871041715145111,-0.0199655368924141,0.615439713001251,0.785580396652222,-0.0640107840299606,0.754284977912903,0.13346491754055,-0.642838537693024,0.443272978067398,0.70000833272934,-0.559908449649811,0.615439713001251,0.785580396652222,-0.0640107840299606,0.99494206905365,-0.097113162279129,0.0256766900420189,0.682541728019714,-0.332053869962692,-0.651058435440063,-0.0591521076858044,-0.758592665195465,-0.648874580860138,-0.77205216884613,-0.196788743138313,-0.604325771331787,-0.677590250968933,0.165706425905228,-0.716528356075287,0.682690918445587,0.0458159185945988,-0.729269444942474,-0.77205216884613,-0.196788743138313,-0.604325771331787,-0.0591521076858044,-0.758592665195465,-0.648874580860138,-0.0657415762543678,-0.926875114440918,0.369568139314651,-0.836431741714478,-0.0865181982517242,0.541199266910553,-0.0591521076858044,-0.758592665195465,-0.648874580860138,0.682541728019714,-0.332053869962692,-0.651058435440063,0.835499405860901,-0.255511701107025,0.48647141456604,-0.0657415762543678,-0.926875114440918,0.369568139314651,-0.677590250968933,0.165706425905228,-0.716528356075287,-0.77205216884613,-0.196788743138313,-0.604325771331787,-0.836431741714478,-0.0865181982517242,0.541199266910553,-0.884542107582092,0.169591292738914,0.434538692235947,0.682541728019714,-0.332053869962692,-0.651058435440063,0.682690918445587,0.0458159185945988,-0.729269444942474,0.950192630290985,-0.0980531573295593,0.295836865901947,0.835499405860901,-0.255511701107025,0.48647141456604,0.000172394691617228,0.00191503297537565,0.999998152256012, +0.835499405860901,-0.255511701107025,0.48647141456604,0.950192630290985,-0.0980531573295593,0.295836865901947,0.0438310131430626,0.137787401676178,0.989491581916809,0.99494206905365,-0.097113162279129,0.0256766900420189,0.0438310131430626,0.137787401676178,0.989491581916809,0.950192630290985,-0.0980531573295593,0.295836865901947,0.99494206905365,-0.097113162279129,0.0256766900420189,-0.121096551418304,-0.873800337314606,0.470965474843979,0.0438310131430626,0.137787401676178,0.989491581916809,-0.121096551418304,-0.873800337314606,0.470965474843979,-0.99271821975708,0.0179196801036596,0.119119420647621,0.0438310131430626,0.137787401676178,0.989491581916809,-0.76011335849762,0.2597336769104,-0.595622420310974,-0.677590250968933,0.165706425905228,-0.716528356075287,-0.884542107582092,0.169591292738914,0.434538692235947,0.950192630290985,-0.0980531573295593,0.295836865901947,0.682690918445587,0.0458159185945988,-0.729269444942474,0.754284977912903,0.13346491754055,-0.642838537693024,-0.836431741714478,-0.0865181982517242,0.541199266910553,-0.0657415762543678,-0.926875114440918,0.369568139314651,0.000172394691617228,0.00191503297537565,0.999998152256012,-0.0657415762543678,-0.926875114440918,0.369568139314651,0.835499405860901,-0.255511701107025,0.48647141456604,0.000172394691617228,0.00191503297537565,0.999998152256012,0.682690918445587,0.0458159185945988,-0.729269444942474,-0.677590250968933,0.165706425905228,-0.716528356075287,-0.76011335849762,0.2597336769104,-0.595622420310974,0.754284977912903,0.13346491754055,-0.642838537693024,-0.999896824359894,-0.00843606237322092,0.0116255916655064,-0.999896824359894,-0.00843606237322092,0.0116255925968289,-0.999896824359894,-0.0084360633045435,0.0116255925968289,-0.999896824359894,-0.00843606237322092,0.0116255925968289,-0.999896764755249,-0.00843606144189835,0.0116255916655064,0.452326327562332,-0.326355546712875,0.82999575138092,0.456457674503326,-0.363983690738678,0.811888098716736,0.463369250297546,-0.881807625293732,0.087775319814682,0.463371068239212,-0.881825268268585,0.0875859931111336, +0.299331337213516,0.813851833343506,0.498042106628418,0.309125661849976,0.768353998661041,0.560422480106354,0.456457674503326,-0.363983690738678,0.811888098716736,0.452326327562332,-0.326355546712875,0.82999575138092,0.299331337213516,0.813851833343506,0.498042106628418,0.31307128071785,0.714384377002716,-0.625812530517578,0.335788458585739,0.610367476940155,-0.717424213886261,0.309125661849976,0.768353998661041,0.560422480106354,0.463371068239212,-0.881825268268585,0.0875859931111336,0.463369250297546,-0.881807625293732,0.087775319814682,0.485668987035751,-0.496662586927414,-0.719341337680817,0.483445584774017,-0.471258908510208,-0.73769599199295,0.483445584774017,-0.471258908510208,-0.73769599199295,0.485668987035751,-0.496662586927414,-0.719341337680817,0.335788458585739,0.610367476940155,-0.717424213886261,0.31307128071785,0.714384377002716,-0.625812530517578,0.999924898147583,-0.0121231023222208,-0.00177787314169109,0.999924957752228,-0.0121231032535434,-0.00177787314169109,0.999924898147583,-0.0121231023222208,-0.00177787302527577,0.999924898147583,-0.0121231023222208,-0.00177787302527577,0.999924957752228,-0.0121231023222208,-0.00177787314169109,0.0498541705310345,-1.04904408715356e-007,-0.998756468296051,-0.420091390609741,-7.47986774740639e-008,-0.907481789588928,-0.420091688632965,0.907481610774994,-1.75777142885636e-006,0.0498543903231621,0.998756468296051,-2.09809036277875e-006,0.0498543791472912,-0.998756468296051,-2.25544658860599e-006,0.049854714423418,-1.57357249008783e-007,0.998756468296051,-0.420091956853867,-7.47991677485516e-008,0.907481610774994,-0.420091688632965,-0.907481551170349,-1.85126975793537e-006,0.0498541705310345,-1.04904408715356e-007,-0.998756468296051,0.0498543791472912,-0.998756468296051,-2.25544658860599e-006,-0.420091688632965,-0.907481551170349,-1.85126975793537e-006,-0.420091390609741,-7.47986774740639e-008,-0.907481789588928,-1,1.3312626556683e-008,-1.59751516548567e-006,-0.420091956853867,-7.47991677485516e-008,0.907481610774994,-0.420091688632965,0.907481610774994,-1.75777142885636e-006, +-0.420091688632965,0.907481610774994,-1.75777142885636e-006,-0.420091390609741,-7.47986774740639e-008,-0.907481789588928,-1,1.3312626556683e-008,-1.59751516548567e-006,-0.420091688632965,-0.907481551170349,-1.85126975793537e-006,-0.420091956853867,-7.47991677485516e-008,0.907481610774994,-1,1.3312626556683e-008,-1.59751516548567e-006,-0.420091390609741,-7.47986774740639e-008,-0.907481789588928,-0.420091688632965,-0.907481551170349,-1.85126975793537e-006,-1,1.3312626556683e-008,-1.59751516548567e-006,-0.420091688632965,0.907481610774994,-1.75777142885636e-006,-0.420091956853867,-7.47991677485516e-008,0.907481610774994,0.049854714423418,-1.57357249008783e-007,0.998756468296051,0.0498543903231621,0.998756468296051,-2.09809036277875e-006,-0.772124230861664,-0.243796139955521,0.586845338344574,-0.788355052471161,0.389810174703598,0.475966721773148,-0.572437584400177,0.451461106538773,-0.684469103813171,-0.857480823993683,-0.5122931599617,-0.0477744042873383,-0.54857724905014,-0.0331620201468468,-0.835442006587982,-0.857480823993683,-0.5122931599617,-0.0477744042873383,-0.572437584400177,0.451461106538773,-0.684469103813171,-0.54857724905014,-0.0331620201468468,-0.835442006587982,-0.572437584400177,0.451461106538773,-0.684469103813171,-0.181121215224266,0.812877774238586,-0.553556442260742,0.555069983005524,0.388679563999176,-0.735408365726471,-0.788355052471161,0.389810174703598,0.475966721773148,-0.772124230861664,-0.243796139955521,0.586845338344574,-0.107613444328308,-0.510660171508789,0.853021383285522,-0.262567132711411,0.655892670154572,0.707716882228851,-0.772124230861664,-0.243796139955521,0.586845338344574,-0.857480823993683,-0.5122931599617,-0.0477744042873383,-0.145273432135582,-0.755869269371033,0.638402104377747,-0.107613444328308,-0.510660171508789,0.853021383285522,-0.857480823993683,-0.5122931599617,-0.0477744042873383,-0.54857724905014,-0.0331620201468468,-0.835442006587982,-0.00947217550128698,-0.057103406637907,-0.998323261737823,-0.341014176607132,-0.930357813835144,-0.134698390960693,-0.572437584400177,0.451461106538773,-0.684469103813171, +-0.788355052471161,0.389810174703598,0.475966721773148,-0.262567132711411,0.655892670154572,0.707716882228851,-0.181121215224266,0.812877774238586,-0.553556442260742,0.508672535419464,-0.860274016857147,0.0343613550066948,0.690499901771545,0.0865698754787445,-0.718133330345154,0.729632675647736,0.095041036605835,0.677202701568604,0.555069983005524,0.388679563999176,-0.735408365726471,-0.181121215224266,0.812877774238586,-0.553556442260742,-0.0878237187862396,0.752229869365692,-0.653021693229675,-0.262567132711411,0.655892670154572,0.707716882228851,-0.107613444328308,-0.510660171508789,0.853021383285522,0.39621114730835,-0.356112897396088,0.846286177635193,0.262856751680374,0.679319977760315,0.685150146484375,-0.107613444328308,-0.510660171508789,0.853021383285522,-0.145273432135582,-0.755869269371033,0.638402104377747,0.156038120388985,-0.834945917129517,-0.527747571468353,0.39621114730835,-0.356112897396088,0.846286177635193,-0.181121215224266,0.812877774238586,-0.553556442260742,-0.262567132711411,0.655892670154572,0.707716882228851,0.262856751680374,0.679319977760315,0.685150146484375,-0.0878237187862396,0.752229869365692,-0.653021693229675,-0.145273432135582,-0.755869269371033,0.638402104377747,0.555069983005524,0.388679563999176,-0.735408365726471,0.156038120388985,-0.834945917129517,-0.527747571468353,-0.145273432135582,-0.755869269371033,0.638402104377747,-0.857480823993683,-0.5122931599617,-0.0477744042873383,-0.341014176607132,-0.930357813835144,-0.134698390960693,0.555069983005524,0.388679563999176,-0.735408365726471,-0.00947217550128698,-0.057103406637907,-0.998323261737823,-0.54857724905014,-0.0331620201468468,-0.835442006587982,-0.341014176607132,-0.930357813835144,-0.134698390960693,-0.00947217550128698,-0.057103406637907,-0.998323261737823,0.690499901771545,0.0865698754787445,-0.718133330345154,0.508672535419464,-0.860274016857147,0.0343613550066948,-0.00947217550128698,-0.057103406637907,-0.998323261737823,0.555069983005524,0.388679563999176,-0.735408365726471,0.690499901771545,0.0865698754787445,-0.718133330345154, +0.555069983005524,0.388679563999176,-0.735408365726471,-0.145273432135582,-0.755869269371033,0.638402104377747,0.729632675647736,0.095041036605835,0.677202701568604,0.729632675647736,0.095041036605835,0.677202701568604,0.690499901771545,0.0865698754787445,-0.718133330345154,0.555069983005524,0.388679563999176,-0.735408365726471,-0.145273432135582,-0.755869269371033,0.638402104377747,-0.341014176607132,-0.930357813835144,-0.134698390960693,0.508672535419464,-0.860274016857147,0.0343613550066948,0.729632675647736,0.095041036605835,0.677202701568604,-0.0878237187862396,0.752229869365692,-0.653021693229675,0.156038120388985,-0.834945917129517,-0.527747571468353,0.555069983005524,0.388679563999176,-0.735408365726471,0.39621114730835,-0.356112897396088,0.846286177635193,0.156038120388985,-0.834945917129517,-0.527747571468353,0.774728834629059,-0.54269951581955,-0.324457257986069,0.262856751680374,0.679319977760315,0.685150146484375,0.39621114730835,-0.356112897396088,0.846286177635193,0.774728834629059,-0.54269951581955,-0.324457257986069,0.680148482322693,0.543003499507904,-0.492488861083984,0.156038120388985,-0.834945917129517,-0.527747571468353,-0.0878237187862396,0.752229869365692,-0.653021693229675,0.680148482322693,0.543003499507904,-0.492488861083984,0.774728834629059,-0.54269951581955,-0.324457257986069,-0.0878237187862396,0.752229869365692,-0.653021693229675,0.262856751680374,0.679319977760315,0.685150146484375,0.680148482322693,0.543003499507904,-0.492488861083984,0.0176288411021233,0.941694378852844,0.33600702881813,0.0181320328265429,0.804558336734772,0.593596696853638,0.233709797263145,0.654462158679962,0.719068169593811,0.0176288411021233,0.941694378852844,0.33600702881813,-0.208357751369476,0.673021197319031,0.709668636322021,0.0181320328265429,0.804558336734772,0.593596696853638,-0.208357751369476,0.673021197319031,0.709668636322021,-0.23914161324501,0.00432408601045609,0.97097510099411,-0.0124449925497174,0.00718195457011461,0.999896824359894,0.0181320328265429,0.804558336734772,0.593596696853638,0.0181320328265429,0.804558336734772,0.593596696853638, +-0.0124449925497174,0.00718195457011461,0.999896824359894,0.246635600924492,-0.0137736797332764,0.969010353088379,0.233709797263145,0.654462158679962,0.719068169593811,-0.0124449925497174,0.00718195457011461,0.999896824359894,-0.23914161324501,0.00432408601045609,0.97097510099411,-0.208152830600739,-0.667199313640594,0.715204536914825,0.00807841029018164,-0.800155878067017,0.599737703800201,0.246635600924492,-0.0137736797332764,0.969010353088379,-0.0124449925497174,0.00718195457011461,0.999896824359894,0.00807841029018164,-0.800155878067017,0.599737703800201,0.218371734023094,-0.646056056022644,0.731385886669159,0.38920471072197,-0.918560206890106,0.0690427720546722,-0.424287021160126,-0.902370154857636,0.0755547434091568,0.441711694002151,-0.0249292869120836,-0.8968106508255,-0.398052543401718,-0.0256085842847824,-0.917005062103271,0.282584488391876,0.959019005298615,-0.0207029115408659,-0.316960990428925,0.948197662830353,-0.0213777329772711,0.492784440517426,-0.085964635014534,0.865894675254822,-0.446639329195023,-0.0900078788399696,0.890175223350525,0.0870469436049461,0.792360603809357,0.603810727596283,0.0761509239673615,-0.79363214969635,0.603613197803497,0.996308207511902,0.0298179816454649,0.0805043280124664,-0.398052543401718,-0.0256085842847824,-0.917005062103271,0.0607562251389027,-0.798813760280609,-0.598502457141876,0.38920471072197,-0.918560206890106,0.0690427720546722,0.112551122903824,0.796964406967163,-0.59344744682312,0.0607562251389027,-0.798813760280609,-0.598502457141876,-0.398052543401718,-0.0256085842847824,-0.917005062103271,-0.398052543401718,-0.0256085842847824,-0.917005062103271,0.282584488391876,0.959019005298615,-0.0207029115408659,0.112551122903824,0.796964406967163,-0.59344744682312,0.0607562251389027,-0.798813760280609,-0.598502457141876,0.99733692407608,-0.0666487514972687,-0.0296145547181368,0.38920471072197,-0.918560206890106,0.0690427720546722,0.282584488391876,0.959019005298615,-0.0207029115408659,0.38920471072197,-0.918560206890106,0.0690427720546722,0.99733692407608,-0.0666487514972687,-0.0296145547181368, +0.0761509239673615,-0.79363214969635,0.603613197803497,-0.446639329195023,-0.0900078788399696,0.890175223350525,0.38920471072197,-0.918560206890106,0.0690427720546722,-0.446639329195023,-0.0900078788399696,0.890175223350525,0.0870469436049461,0.792360603809357,0.603810727596283,0.282584488391876,0.959019005298615,-0.0207029115408659,0.0870469436049461,0.792360603809357,0.603810727596283,-0.446639329195023,-0.0900078788399696,0.890175223350525,0.0761509239673615,-0.79363214969635,0.603613197803497,0.996308207511902,0.0298179816454649,0.0805043280124664,0.0761509239673615,-0.79363214969635,0.603613197803497,0.38920471072197,-0.918560206890106,0.0690427720546722,0.996308207511902,0.0298179816454649,0.0805043280124664,0.282584488391876,0.959019005298615,-0.0207029115408659,0.0870469436049461,0.792360603809357,0.603810727596283,0.38920471072197,-0.918560206890106,0.0690427720546722,0.282584488391876,0.959019005298615,-0.0207029115408659,0.996308207511902,0.0298179816454649,0.0805043280124664,0.99733692407608,-0.0666487514972687,-0.0296145547181368,0.112551122903824,0.796964406967163,-0.59344744682312,0.282584488391876,0.959019005298615,-0.0207029115408659,0.112551122903824,0.796964406967163,-0.59344744682312,0.99733692407608,-0.0666487514972687,-0.0296145547181368,0.0607562251389027,-0.798813760280609,-0.598502457141876,0.441711694002151,-0.0249292869120836,-0.8968106508255,-0.316960990428925,0.948197662830353,-0.0213777329772711,0.282584488391876,0.959019005298615,-0.0207029115408659,-0.398052543401718,-0.0256085842847824,-0.917005062103271,0.492784440517426,-0.085964635014534,0.865894675254822,-0.424287021160126,-0.902370154857636,0.0755547434091568,0.38920471072197,-0.918560206890106,0.0690427720546722,-0.446639329195023,-0.0900078788399696,0.890175223350525,-0.0518011376261711,0.804134368896484,0.592186331748962,-0.991984486579895,0.0307399015873671,0.122563771903515,-0.0430886633694172,-0.806536257266998,0.589612364768982,0.441711694002151,-0.0249292869120836,-0.8968106508255,-0.424287021160126,-0.902370154857636,0.0755547434091568, +-0.0276466254144907,-0.813023269176483,-0.581574559211731,-0.0759655013680458,0.808455407619476,-0.583634257316589,0.441711694002151,-0.0249292869120836,-0.8968106508255,-0.0276466254144907,-0.813023269176483,-0.581574559211731,0.441711694002151,-0.0249292869120836,-0.8968106508255,-0.0759655013680458,0.808455407619476,-0.583634257316589,-0.316960990428925,0.948197662830353,-0.0213777329772711,-0.0276466254144907,-0.813023269176483,-0.581574559211731,-0.424287021160126,-0.902370154857636,0.0755547434091568,-0.995688140392303,-0.0616225115954876,-0.0693387314677238,-0.316960990428925,0.948197662830353,-0.0213777329772711,-0.995688140392303,-0.0616225115954876,-0.0693387314677238,-0.424287021160126,-0.902370154857636,0.0755547434091568,-0.0430886633694172,-0.806536257266998,0.589612364768982,-0.424287021160126,-0.902370154857636,0.0755547434091568,0.492784440517426,-0.085964635014534,0.865894675254822,0.492784440517426,-0.085964635014534,0.865894675254822,-0.316960990428925,0.948197662830353,-0.0213777329772711,-0.0518011376261711,0.804134368896484,0.592186331748962,-0.0518011376261711,0.804134368896484,0.592186331748962,-0.0430886633694172,-0.806536257266998,0.589612364768982,0.492784440517426,-0.085964635014534,0.865894675254822,-0.991984486579895,0.0307399015873671,0.122563771903515,-0.424287021160126,-0.902370154857636,0.0755547434091568,-0.0430886633694172,-0.806536257266998,0.589612364768982,-0.991984486579895,0.0307399015873671,0.122563771903515,-0.0518011376261711,0.804134368896484,0.592186331748962,-0.316960990428925,0.948197662830353,-0.0213777329772711,-0.424287021160126,-0.902370154857636,0.0755547434091568,-0.991984486579895,0.0307399015873671,0.122563771903515,-0.316960990428925,0.948197662830353,-0.0213777329772711,-0.995688140392303,-0.0616225115954876,-0.0693387314677238,-0.316960990428925,0.948197662830353,-0.0213777329772711,-0.0759655013680458,0.808455407619476,-0.583634257316589,-0.0759655013680458,0.808455407619476,-0.583634257316589,-0.0276466254144907,-0.813023269176483,-0.581574559211731,-0.995688140392303,-0.0616225115954876,-0.0693387314677238, +0.218371734023094,-0.646056056022644,0.731385886669159,0.00807841029018164,-0.800155878067017,0.599737703800201,0.0101661514490843,-0.941961586475372,0.335566699504852,0.0101661514490843,-0.941961586475372,0.335566699504852,0.00807841029018164,-0.800155878067017,0.599737703800201,-0.208152830600739,-0.667199313640594,0.715204536914825,0.0690419971942902,-0.918559908866882,-0.389205276966095,0.0755549520254135,-0.902370393276215,0.424286633729935,-0.896810412406921,-0.0249292682856321,-0.441712230443954,-0.917005300521851,-0.0256086979061365,0.398052096366882,-0.0207036193460226,0.959019005298615,-0.28258416056633,-0.0213780328631401,0.948197603225708,0.316961020231247,0.86589515209198,-0.0859643891453743,-0.492783576250076,0.890175759792328,-0.0900078341364861,0.446638166904449,0.603811323642731,0.792360186576843,-0.0870478451251984,0.603612244129181,-0.793632805347443,-0.0761518329381943,0.0805033147335052,0.0298179183155298,-0.996308207511902,-0.917005300521851,-0.0256086979061365,0.398052096366882,-0.598501920700073,-0.798814237117767,-0.0607562623918056,0.0690419971942902,-0.918559908866882,-0.389205276966095,-0.593447983264923,0.79696398973465,-0.112551271915436,-0.598501920700073,-0.798814237117767,-0.0607562623918056,-0.917005300521851,-0.0256086979061365,0.398052096366882,-0.917005300521851,-0.0256086979061365,0.398052096366882,-0.0207036193460226,0.959019005298615,-0.28258416056633,-0.593447983264923,0.79696398973465,-0.112551271915436,-0.598501920700073,-0.798814237117767,-0.0607562623918056,-0.0296161882579327,-0.0666486471891403,-0.997336864471436,0.0690419971942902,-0.918559908866882,-0.389205276966095,-0.0207036193460226,0.959019005298615,-0.28258416056633,0.0690419971942902,-0.918559908866882,-0.389205276966095,-0.0296161882579327,-0.0666486471891403,-0.997336864471436,0.603612244129181,-0.793632805347443,-0.0761518329381943,0.890175759792328,-0.0900078341364861,0.446638166904449,0.0690419971942902,-0.918559908866882,-0.389205276966095,0.890175759792328,-0.0900078341364861,0.446638166904449,0.603811323642731,0.792360186576843,-0.0870478451251984, +-0.0207036193460226,0.959019005298615,-0.28258416056633,0.603811323642731,0.792360186576843,-0.0870478451251984,0.890175759792328,-0.0900078341364861,0.446638166904449,0.603612244129181,-0.793632805347443,-0.0761518329381943,0.0805033147335052,0.0298179183155298,-0.996308207511902,0.603612244129181,-0.793632805347443,-0.0761518329381943,0.0690419971942902,-0.918559908866882,-0.389205276966095,0.0805033147335052,0.0298179183155298,-0.996308207511902,-0.0207036193460226,0.959019005298615,-0.28258416056633,0.603811323642731,0.792360186576843,-0.0870478451251984,0.0690419971942902,-0.918559908866882,-0.389205276966095,-0.0207036193460226,0.959019005298615,-0.28258416056633,0.0805033147335052,0.0298179183155298,-0.996308207511902,-0.0296161882579327,-0.0666486471891403,-0.997336864471436,-0.593447983264923,0.79696398973465,-0.112551271915436,-0.0207036193460226,0.959019005298615,-0.28258416056633,-0.593447983264923,0.79696398973465,-0.112551271915436,-0.0296161882579327,-0.0666486471891403,-0.997336864471436,-0.598501920700073,-0.798814237117767,-0.0607562623918056,-0.896810412406921,-0.0249292682856321,-0.441712230443954,-0.0213780328631401,0.948197603225708,0.316961020231247,-0.0207036193460226,0.959019005298615,-0.28258416056633,-0.917005300521851,-0.0256086979061365,0.398052096366882,0.86589515209198,-0.0859643891453743,-0.492783576250076,0.0755549520254135,-0.902370393276215,0.424286633729935,0.0690419971942902,-0.918559908866882,-0.389205276966095,0.890175759792328,-0.0900078341364861,0.446638166904449,0.592185914516449,0.804134488105774,0.0518015511333942,0.122564069926739,0.0307398084551096,0.991984367370605,0.589612245559692,-0.806536257266998,0.0430890843272209,-0.896810412406921,-0.0249292682856321,-0.441712230443954,0.0755549520254135,-0.902370393276215,0.424286633729935,-0.581574857234955,-0.813023090362549,0.0276459343731403,-0.583634853363037,0.808455169200897,0.0759653598070145,-0.896810412406921,-0.0249292682856321,-0.441712230443954,-0.581574857234955,-0.813023090362549,0.0276459343731403,-0.896810412406921,-0.0249292682856321,-0.441712230443954, +-0.583634853363037,0.808455169200897,0.0759653598070145,-0.0213780328631401,0.948197603225708,0.316961020231247,-0.581574857234955,-0.813023090362549,0.0276459343731403,0.0755549520254135,-0.902370393276215,0.424286633729935,-0.069338247179985,-0.0616229027509689,0.995688140392303,-0.0213780328631401,0.948197603225708,0.316961020231247,-0.069338247179985,-0.0616229027509689,0.995688140392303,0.0755549520254135,-0.902370393276215,0.424286633729935,0.589612245559692,-0.806536257266998,0.0430890843272209,0.0755549520254135,-0.902370393276215,0.424286633729935,0.86589515209198,-0.0859643891453743,-0.492783576250076,0.86589515209198,-0.0859643891453743,-0.492783576250076,-0.0213780328631401,0.948197603225708,0.316961020231247,0.592185914516449,0.804134488105774,0.0518015511333942,0.592185914516449,0.804134488105774,0.0518015511333942,0.589612245559692,-0.806536257266998,0.0430890843272209,0.86589515209198,-0.0859643891453743,-0.492783576250076,0.122564069926739,0.0307398084551096,0.991984367370605,0.0755549520254135,-0.902370393276215,0.424286633729935,0.589612245559692,-0.806536257266998,0.0430890843272209,0.122564069926739,0.0307398084551096,0.991984367370605,0.592185914516449,0.804134488105774,0.0518015511333942,-0.0213780328631401,0.948197603225708,0.316961020231247,0.0755549520254135,-0.902370393276215,0.424286633729935,0.122564069926739,0.0307398084551096,0.991984367370605,-0.0213780328631401,0.948197603225708,0.316961020231247,-0.069338247179985,-0.0616229027509689,0.995688140392303,-0.0213780328631401,0.948197603225708,0.316961020231247,-0.583634853363037,0.808455169200897,0.0759653598070145,-0.583634853363037,0.808455169200897,0.0759653598070145,-0.581574857234955,-0.813023090362549,0.0276459343731403,-0.069338247179985,-0.0616229027509689,0.995688140392303,-0.998756527900696,1.04904557929331e-007,-0.0498542301356792,-0.90748131275177,6.5449029307274e-008,0.42009249329567,1.12198250690199e-007,0.907481610774994,0.420091778039932,0,0.998756587505341,-0.0498542673885822,-1.57356893737415e-007,-0.998756587505341,-0.0498542822897434, +0.998756408691406,-1.57356836893996e-007,-0.0498542860150337,0.907481610774994,0,0.420091807842255,1.86997102247233e-008,-0.907481610774994,0.420091718435287,-0.998756527900696,1.04904557929331e-007,-0.0498542301356792,-1.57356893737415e-007,-0.998756587505341,-0.0498542822897434,1.86997102247233e-008,-0.907481610774994,0.420091718435287,-0.90748131275177,6.5449029307274e-008,0.42009249329567,4.65941582206142e-007,6.65630821572449e-008,1,0.907481610774994,0,0.420091807842255,1.12198250690199e-007,0.907481610774994,0.420091778039932,1.12198250690199e-007,0.907481610774994,0.420091778039932,-0.90748131275177,6.5449029307274e-008,0.42009249329567,4.65941582206142e-007,6.65630821572449e-008,1,1.86997102247233e-008,-0.907481610774994,0.420091718435287,0.907481610774994,0,0.420091807842255,4.65941582206142e-007,6.65630821572449e-008,1,-0.90748131275177,6.5449029307274e-008,0.42009249329567,1.86997102247233e-008,-0.907481610774994,0.420091718435287,4.65941582206142e-007,6.65630821572449e-008,1,1.12198250690199e-007,0.907481610774994,0.420091778039932,0.907481610774994,0,0.420091807842255,0.998756408691406,-1.57356836893996e-007,-0.0498542860150337,0,0.998756587505341,-0.0498542673885822,-0.754284977912903,0.13346491754055,-0.642838537693024,-0.443272978067398,0.70000833272934,-0.559908330440521,0.386048287153244,0.743940114974976,-0.545453906059265,0.76011335849762,0.2597336769104,-0.595622360706329,0.0792620927095413,-0.981667459011078,-0.173339381814003,0.121096432209015,-0.873800337314606,0.470965504646301,0.99271821975708,0.0179196950048208,0.119119472801685,0.986041307449341,-0.0855744853615761,-0.142827361822128,0.986041307449341,-0.0855744853615761,-0.142827361822128,0.99271821975708,0.0179196950048208,0.119119472801685,0.490803003311157,0.871041774749756,-0.0199655331671238,0.401460140943527,0.880181670188904,-0.253199487924576,-0.972065329551697,-0.168495863676071,-0.163395181298256,-0.994942128658295,-0.097113162279129,0.0256766360253096,0.121096432209015,-0.873800337314606,0.470965504646301,0.0792620927095413,-0.981667459011078,-0.173339381814003, +0.401460140943527,0.880181670188904,-0.253199487924576,0.490803003311157,0.871041774749756,-0.0199655331671238,-0.615439713001251,0.785580396652222,-0.0640108287334442,-0.517886996269226,0.820431470870972,-0.242250367999077,-0.517886996269226,0.820431470870972,-0.242250367999077,-0.615439713001251,0.785580396652222,-0.0640108287334442,-0.994942128658295,-0.097113162279129,0.0256766360253096,-0.972065329551697,-0.168495863676071,-0.163395181298256,-0.0438309535384178,0.137787386775017,0.989491522312164,0.884542226791382,0.169591143727303,0.434538632631302,0.99271821975708,0.0179196950048208,0.119119472801685,-0.000172223662957549,0.00191506033297628,0.999998152256012,0.836431741714478,-0.0865183174610138,0.541199207305908,0.884542226791382,0.169591143727303,0.434538632631302,-0.0438309535384178,0.137787386775017,0.989491522312164,0.76011335849762,0.2597336769104,-0.595622360706329,0.99271821975708,0.0179196950048208,0.119119472801685,0.884542226791382,0.169591143727303,0.434538632631302,0.386048287153244,0.743940114974976,-0.545453906059265,0.490803003311157,0.871041774749756,-0.0199655331671238,0.99271821975708,0.0179196950048208,0.119119472801685,0.76011335849762,0.2597336769104,-0.595622360706329,-0.95019268989563,-0.0980532094836235,0.295836836099625,-0.994942128658295,-0.097113162279129,0.0256766360253096,-0.754284977912903,0.13346491754055,-0.642838537693024,-0.443272978067398,0.70000833272934,-0.559908330440521,-0.615439713001251,0.785580396652222,-0.0640108287334442,0.490803003311157,0.871041774749756,-0.0199655331671238,0.386048287153244,0.743940114974976,-0.545453906059265,-0.754284977912903,0.13346491754055,-0.642838537693024,-0.994942128658295,-0.097113162279129,0.0256766360253096,-0.615439713001251,0.785580396652222,-0.0640108287334442,-0.443272978067398,0.70000833272934,-0.559908330440521,-0.68254166841507,-0.33205372095108,-0.651058375835419,-0.682690918445587,0.0458159185945988,-0.729269444942474,0.677590370178223,0.165706276893616,-0.716528236865997,0.77205216884613,-0.196788936853409,-0.604325711727142, +0.0591520741581917,-0.75859260559082,-0.648874521255493,0.77205216884613,-0.196788936853409,-0.604325711727142,0.836431741714478,-0.0865183174610138,0.541199207305908,0.0657414570450783,-0.926875174045563,0.369568049907684,0.0591520741581917,-0.75859260559082,-0.648874521255493,0.0591520741581917,-0.75859260559082,-0.648874521255493,0.0657414570450783,-0.926875174045563,0.369568049907684,-0.83549952507019,-0.255511552095413,0.48647141456604,-0.68254166841507,-0.33205372095108,-0.651058375835419,0.677590370178223,0.165706276893616,-0.716528236865997,0.884542226791382,0.169591143727303,0.434538632631302,0.836431741714478,-0.0865183174610138,0.541199207305908,0.77205216884613,-0.196788936853409,-0.604325711727142,-0.68254166841507,-0.33205372095108,-0.651058375835419,-0.83549952507019,-0.255511552095413,0.48647141456604,-0.95019268989563,-0.0980532094836235,0.295836836099625,-0.682690918445587,0.0458159185945988,-0.729269444942474,-0.000172223662957549,0.00191506033297628,0.999998152256012,-0.0438309535384178,0.137787386775017,0.989491522312164,-0.95019268989563,-0.0980532094836235,0.295836836099625,-0.83549952507019,-0.255511552095413,0.48647141456604,-0.994942128658295,-0.097113162279129,0.0256766360253096,-0.95019268989563,-0.0980532094836235,0.295836836099625,-0.0438309535384178,0.137787386775017,0.989491522312164,-0.994942128658295,-0.097113162279129,0.0256766360253096,-0.0438309535384178,0.137787386775017,0.989491522312164,0.121096432209015,-0.873800337314606,0.470965504646301,0.121096432209015,-0.873800337314606,0.470965504646301,-0.0438309535384178,0.137787386775017,0.989491522312164,0.99271821975708,0.0179196950048208,0.119119472801685,0.76011335849762,0.2597336769104,-0.595622360706329,0.884542226791382,0.169591143727303,0.434538632631302,0.677590370178223,0.165706276893616,-0.716528236865997,-0.95019268989563,-0.0980532094836235,0.295836836099625,-0.754284977912903,0.13346491754055,-0.642838537693024,-0.682690918445587,0.0458159185945988,-0.729269444942474,0.836431741714478,-0.0865183174610138,0.541199207305908, +-0.000172223662957549,0.00191506033297628,0.999998152256012,0.0657414570450783,-0.926875174045563,0.369568049907684,0.0657414570450783,-0.926875174045563,0.369568049907684,-0.000172223662957549,0.00191506033297628,0.999998152256012,-0.83549952507019,-0.255511552095413,0.48647141456604,-0.682690918445587,0.0458159185945988,-0.729269444942474,-0.754284977912903,0.13346491754055,-0.642838537693024,0.76011335849762,0.2597336769104,-0.595622360706329,0.677590370178223,0.165706276893616,-0.716528236865997,0.525539994239807,-0.611545979976654,0.591455221176147,-0.549781382083893,-0.556027293205261,0.623357176780701,-0.559741020202637,-0.671042442321777,-0.486201673746109,0.486121356487274,-0.722505152225494,-0.491601824760437,0.597675442695618,0.484949141740799,-0.63844221830368,0.630429327487946,0.543019354343414,0.554697155952454,0.525539994239807,-0.611545979976654,0.591455221176147,0.486121356487274,-0.722505152225494,-0.491601824760437,-0.628242790699005,0.458852648735046,-0.628303349018097,0.597675442695618,0.484949141740799,-0.63844221830368,0.486121356487274,-0.722505152225494,-0.491601824760437,-0.559741020202637,-0.671042442321777,-0.486201673746109,0.630429327487946,0.543019354343414,0.554697155952454,-0.611592411994934,0.550924777984619,0.567834913730621,-0.549781382083893,-0.556027293205261,0.623357176780701,0.525539994239807,-0.611545979976654,0.591455221176147,-0.611592411994934,0.550924777984619,0.567834913730621,-0.628242790699005,0.458852648735046,-0.628303349018097,-0.559741020202637,-0.671042442321777,-0.486201673746109,-0.549781382083893,-0.556027293205261,0.623357176780701,-0.628242790699005,0.458852648735046,-0.628303349018097,-0.611592411994934,0.550924777984619,0.567834913730621,0.630429327487946,0.543019354343414,0.554697155952454,0.597675442695618,0.484949141740799,-0.63844221830368 +} + } + LayerElementUV: 0 { + Version: 101 + Name: "UVChannel_1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1144 { +a: 0.512752771377563,0.990972638130188,0.983570516109467,0.906453967094421,0.88958615064621,0.906453967094421,0.761776089668274,0.906453967094421,0.658338844776154,0.906453967094421,0.512541055679321,0.906453967094421,0.983677506446838,0.695719838142395,0.888399660587311,0.695719838142395,0.759625673294067,0.695719838142395,0.688622057437897,0.706773161888123,0.626409471035004,0.711171269416809,0.54466724395752,0.687821924686432,0.51275622844696,0.716070532798767,0.983655989170074,0.620303392410278,0.888637721538544,0.614382266998291,0.759760022163391,0.599353909492493,0.691262066364288,0.615440487861633,0.616873562335968,0.526000261306763,0.530319511890411,0.596897721290588,0.51275622844696,0.597320795059204,0.983570516109467,0.473446846008301,0.88958615064621,0.473446846008301,0.78254109621048,0.511958956718445,0.77790755033493,0.462763428688049,0.512756288051605,0.435310482978821,0.912887573242188,0.421901226043701,0.676385402679443,0.620525717735291,0.623232960700989,0.610133051872253,0.54012793302536,0.602810263633728,0.512756168842316,0.65408980846405,0.741990625858307,0.458439707756042,0.655289828777313,0.446235358715057,0.603708326816559,0.469401121139526,0.569338738918304,0.474936723709106,0.591020464897156,0.327405333518982,0.512780785560608,0.360331654548645,0.58166241645813,0.378791689872742,0.657986581325531,0.395831406116486,0.51275634765625,0.30674135684967,0.64714390039444,0.605647087097168,0.540000915527344,0.558198094367981,0.639494717121124,0.557105779647827,0.567074537277222,0.522758841514587,0.61039787530899,0.536992430686951,0.540012240409851,0.595354557037354,0.642551600933075,0.603455901145935,0.54825085401535,0.56606924533844,0.636257469654083,0.567329049110413,0.572474360466003,0.533876895904541,0.694980621337891,0.55234706401825,0.740440309047699,0.550003528594971,0.729114949703217,0.481495022773743,0.685906708240509,0.482765078544617,0.685756862163544,0.527765274047852,0.733219027519226,0.525811910629272,0.51275622844696,0.561147570610046,0.675522983074188,0.660618901252747, +0.617610573768616,0.659353613853455,0.548417687416077,0.657350659370422,0.512756168842316,0.601751208305359,0.66496354341507,0.610710859298706,0.663118720054626,0.554757714271545,0.512752771377563,0.990972638130188,0.983570516109467,0.906453967094421,0.88958615064621,0.906453967094421,0.761776089668274,0.906453967094421,0.658338844776154,0.906453967094421,0.512541055679321,0.906453967094421,0.983677506446838,0.695719838142395,0.888399660587311,0.695719838142395,0.759625673294067,0.695719838142395,0.688622057437897,0.706773161888123,0.626409471035004,0.711171269416809,0.54466724395752,0.687821924686432,0.51275622844696,0.716070532798767,0.983655989170074,0.620303392410278,0.888637721538544,0.614382266998291,0.759760022163391,0.599353909492493,0.691262066364288,0.615440487861633,0.616873562335968,0.526000261306763,0.530319511890411,0.596897721290588,0.51275622844696,0.597320795059204,0.983570516109467,0.473446846008301,0.88958615064621,0.473446846008301,0.78254109621048,0.511958956718445,0.77790755033493,0.462763428688049,0.512756288051605,0.435310482978821,0.912887573242188,0.421901226043701,0.676385402679443,0.620525717735291,0.623232960700989,0.610133051872253,0.54012793302536,0.602810263633728,0.512756168842316,0.65408980846405,0.741990625858307,0.458439707756042,0.655289828777313,0.446235358715057,0.603708326816559,0.469401121139526,0.569338738918304,0.474936723709106,0.591020464897156,0.327405333518982,0.512780785560608,0.360331654548645,0.58166241645813,0.378791689872742,0.657986581325531,0.395831406116486,0.51275634765625,0.30674135684967,0.64714390039444,0.605647087097168,0.540000915527344,0.558198094367981,0.639494717121124,0.557105779647827,0.567074537277222,0.522758841514587,0.61039787530899,0.536992430686951,0.540012240409851,0.595354557037354,0.642551600933075,0.603455901145935,0.54825085401535,0.56606924533844,0.636257469654083,0.567329049110413,0.572474360466003,0.533876895904541,0.694980621337891,0.55234706401825,0.740440309047699,0.550003528594971,0.729114949703217,0.481495022773743,0.685906708240509, +0.482765078544617,0.685756862163544,0.527765274047852,0.733219027519226,0.525811910629272,0.51275622844696,0.561147570610046,0.675522983074188,0.660618901252747,0.617610573768616,0.659353613853455,0.548417687416077,0.657350659370422,0.512756168842316,0.601751208305359,0.66496354341507,0.610710859298706,0.663118720054626,0.554757714271545,0.346515953540802,0.206947982311249,0.346515953540802,0.29705211520195,0.198218941688538,0.285845547914505,0.214483886957169,0.201181650161743,0.346515953540802,0.0473023056983948,0.211099416017532,0.0323291420936584,0.112163200974464,0.250249743461609,0.12223407626152,0.157634049654007,0.119911849498749,0.00238275527954102,0.0150658544152975,0.20140528678894,0.11216314136982,0.250249743461609,0.122234031558037,0.157634049654007,0.198218896985054,0.285845547914505,0.214483857154846,0.201181650161743,0.119911849498749,0.00238275527954102,0.211099416017532,0.0323291420936584,0.0150658544152975,0.021750807762146,0.0150658544152975,0.20140528678894,0.0150658544152975,0.021750807762146,0.215922489762306,0.385487109422684,0.190706580877304,0.299934476613998,0.275849461555481,0.299934923648834,0.294859886169434,0.360839188098907,0.494350284337997,0.396539032459259,0.452106833457947,0.396539032459259,0.399933099746704,0.299935191869736,0.494350284337997,0.329467117786407,0.494350284337997,0.47883403301239,0.453347086906433,0.47883403301239,0.494350284337997,0.47883403301239,0.494350284337997,0.967299282550812,0.465010583400726,0.960415303707123,0.494350284337997,0.99008446931839,0.494350284337997,0.953531444072723,0.450275868177414,0.608657598495483,0.494350284337997,0.608657598495483,0.494350284337997,0.608657598495483,0.45171782374382,0.84395045042038,0.494350284337997,0.84395045042038,0.494350284337997,0.84395045042038,0.427814602851868,0.373501807451248,0.494350284337997,0.396539032459259,0.494350284337997,0.329467117786407,0.399203270673752,0.380898654460907,0.279613077640533,0.381008982658386,0.29171621799469,0.420603603124619,0.215922683477402,0.385487109422684,0.294860064983368,0.360839188098907, +0.275849580764771,0.299934923648834,0.19070665538311,0.299934476613998,0.399933159351349,0.299935191869736,0.452106893062592,0.396539032459259,0.453347086906433,0.47883403301239,0.465010702610016,0.960415303707123,0.450275927782059,0.608657598495483,0.45171782374382,0.84395045042038,0.427814602851868,0.373501807451248,0.399203270673752,0.380898654460907,0.29171621799469,0.420603603124619,0.671750366687775,0.122553497552872,0.671750366687775,0.197867050766945,0.553554654121399,0.197867050766945,0.553561210632324,0.122528374195099,0.453106462955475,0.197867050766945,0.453110158443451,0.122478038072586,0.357930302619934,0.197867050766945,0.357930392026901,0.122464627027512,0.891470968723297,0.197867050766945,0.89146625995636,0.122478038072586,0.790536820888519,0.197867050766945,0.790529608726501,0.122528374195099,0.553747296333313,0.00868146680295467,0.672135651111603,0.00871015805751085,0.454857498407364,0.00862430781126022,0.790522634983063,0.00868146680295467,0.889411270618439,0.00862430781126022,0.40744823217392,0.00860918406397104,0.952457070350647,0.00860918406397104,0.987043738365173,0.197867050766945,0.987043738365173,0.122464627027512,0.17866176366806,0.719504654407501,0.166292145848274,0.701940953731537,0.162287637591362,0.881334483623505,0.186476469039917,0.92333048582077,0.164867579936981,0.95209664106369,0.162895739078522,0.867020785808563,0.165418848395348,0.658515393733978,0.178232863545418,0.785273492336273,0.121588319540024,0.768774211406708,0.111096449196339,0.658485651016235,0.124764516949654,0.963375926017761,0.122627772390842,0.879300653934479,0.118629537522793,0.829940021038055,0.122887618839741,0.630382716655731,0.130793049931526,0.801500856876373,0.0463201403617859,0.809379041194916,0.03931749984622,0.831140458583832,0.0551983676850796,0.824830234050751,0.089809313416481,0.771439254283905,0.0919297188520432,0.87653112411499,0.0848216563463211,0.858446180820465,0.0904625281691551,0.795386135578156,0.0874449759721756,0.842250287532806,0.121443644165993,0.606260597705841,0.120862759649754,0.813160836696625, +0.0715621635317802,0.624888837337494,0.0722501799464226,0.602058827877045,0.00945955328643322,0.867416799068451,0.0954204946756363,0.9684818983078,0.0257746912539005,0.983553826808929,0.0794899165630341,0.661956369876862,0.0398607403039932,0.773851096630096,0.0203046165406704,0.66486120223999,0.0412796698510647,0.403893113136292,0.192425221204758,0.461209803819656,0.154991924762726,0.405234277248383,0.309781849384308,0.609646320343018,0.20757669210434,0.609646320343018,0.309781849384308,0.667019903659821,0.20757669210434,0.666039228439331,0.20757669210434,0.717319905757904,0.309781938791275,0.561589777469635,0.20757669210434,0.561099469661713,0.309781849384308,0.717319905757904,0.20757669210434,0.738896310329437,0.309781849384308,0.739877045154572,0.20757669210434,0.759591400623322,0.0947702378034592,0.407228708267212,0.1030542999506,0.320969939231873,0.0343127883970737,0.355668008327484,0.059341985732317,0.488066047430038,0.0184010714292526,0.528196215629578,0.0564790554344654,0.526171386241913,0.136228680610657,0.488436430692673,0.188639670610428,0.513902127742767,0.138181179761887,0.532618522644043,0.133801311254501,0.558907508850098,0.173099964857101,0.577236235141754,0.00699661578983068,0.463122010231018,0.0171371474862099,0.390296190977097,0.174031466245651,0.391356766223907,0.0167572125792503,0.329930871725082,0.1030542999506,0.296397805213928,0.16236937046051,0.355480849742889,0.178212255239487,0.328047633171082,0.0985367149114609,0.48195669054985,0.309781849384308,0.759150683879852,0.00699661578983068,0.463122010231018,0.0171371474862099,0.390296190977097,0.174031466245651,0.391356766223907,0.100411489605904,0.375353693962097,0.100411489605904,0.375353693962097,0.100411489605904,0.375353693962097,0.100411489605904,0.375353693962097,0.868015289306641,0.208252608776093,0.73174262046814,0.212384939193726,0.845751523971558,0.28324630856514,0.991345107555389,0.329498440027237,0.834491193294525,0.374873667955399,0.984914600849152,0.390686899423599,0.699983894824982,0.283090680837631,0.845751404762268,0.28324630856514, +0.991345107555389,0.329498440027237,0.73174262046814,0.212384939193726,0.868015170097351,0.208252549171448,0.394899547100067,0.98568731546402,0.413190931081772,0.928689122200012,0.394424051046371,0.862477779388428,0.346043258905411,0.871781170368195,0.33737725019455,0.968025684356689,0.20338599383831,0.905978322029114,0.203811720013618,0.857242465019226,0.202066421508789,0.951267957687378,0.202474743127823,0.773168325424194,0.203738212585449,0.818235754966736,0.323137223720551,0.860432505607605,0.324300229549408,0.90054178237915,0.324300229549408,0.90054178237915,0.325185000896454,0.946797013282776,0.325185000896454,0.946797013282776,0.3269282579422,0.997641563415527,0.202474743127823,0.990857839584351,0.327035188674927,0.823217868804932,0.323137223720551,0.860432505607605,0.327035188674927,0.823217868804932,0.3269282579422,0.779951930046082,0.005852235481143,0.590954720973969,0.0198808368295431,0.625212132930756,0.0630763620138168,0.613962888717651,0.0586530193686485,0.561315953731537,0.0135012734681368,0.558233380317688,0.37673208117485,0.600655555725098,0.398557811975479,0.635846972465515,0.399513334035873,0.716340124607086,0.376886785030365,0.749225735664368,0.37209352850914,0.6053386926651,0.346633851528168,0.635881721973419,0.345683991909027,0.716307699680328,0.372077912092209,0.744849503040314,0.322536081075668,0.600661754608154,0.341752856969833,0.578653872013092,0.322535127401352,0.600661754608154,0.421345233917236,0.60066169500351,0.421344310045242,0.600661754608154,0.401470720767975,0.578838169574738,0.322535127401352,0.747420847415924,0.322533428668976,0.747420847415924,0.340465366840363,0.769745230674744,0.421344608068466,0.747420847415924,0.421345919370651,0.747420847415924,0.402530997991562,0.769654512405396,0.376639574766159,0.600214064121246,0.398455739021301,0.635367810726166,0.39941081404686,0.715774714946747,0.376794219017029,0.7486252784729,0.372003078460693,0.604892134666443,0.346554547548294,0.635402500629425,0.345605075359344,0.715742349624634,0.37198743224144,0.744253635406494,0.322467386722565, +0.600220263004303,0.341675728559494,0.578235864639282,0.322466433048248,0.600220263004303,0.421233057975769,0.600220263004303,0.421232223510742,0.600220263004303,0.401367336511612,0.578419923782349,0.322466403245926,0.746822237968445,0.32246470451355,0.746822237968445,0.340388745069504,0.769122660160065,0.421232461929321,0.7468221783638,0.421233832836151,0.746822237968445,0.402427196502686,0.769032180309296,0.407421261072159,0.414758145809174,0.378848075866699,0.414758145809174,0.378848075866699,0.551559925079346,0.416013151407242,0.551559925079346,0.378848075866699,0.414758145809174,0.378848075866699,0.551559925079346,0.341683030128479,0.551559925079346,0.350274920463562,0.414758145809174,0.378848075866699,0.56630152463913,0.407421261072159,0.414758145809174,0.378848075866699,0.414758145809174,0.378848075866699,0.551559925079346,0.416013151407242,0.551559925079346,0.378848075866699,0.414758145809174,0.378848075866699,0.551559925079346,0.341683030128479,0.551559925079346,0.350274920463562,0.414758145809174,0.378848075866699,0.56630152463913,0.524737000465393,0.209688276052475,0.530935764312744,0.271307438611984,0.551193714141846,0.256319671869278,0.549404740333557,0.222827777266502,0.415093213319778,0.20820526778698,0.398054569959641,0.244893670082092,0.423734396696091,0.289916485548019,0.469621688127518,0.276556968688965,0.469623595476151,0.21325671672821,0.17866176366806,0.719504654407501,0.166292145848274,0.701940953731537,0.162287637591362,0.881334483623505,0.186476469039917,0.92333048582077,0.164867579936981,0.95209664106369,0.162895739078522,0.867020785808563,0.165418848395348,0.658515393733978,0.178232863545418,0.785273492336273,0.121588319540024,0.768774211406708,0.111096449196339,0.658485651016235,0.124764516949654,0.963375926017761,0.122627772390842,0.879300653934479,0.118629537522793,0.829940021038055,0.122887618839741,0.630382716655731,0.130793049931526,0.801500856876373,0.0463201403617859,0.809379041194916,0.03931749984622,0.831140458583832,0.0551983676850796,0.824830234050751,0.089809313416481,0.771439254283905, +0.0919297188520432,0.87653112411499,0.0848216563463211,0.858446180820465,0.0904625281691551,0.795386135578156,0.0874449759721756,0.842250287532806,0.121443644165993,0.606260597705841,0.120862759649754,0.813160836696625,0.0715621635317802,0.624888837337494,0.0722501799464226,0.602058827877045,0.00945955328643322,0.867416799068451,0.0954204946756363,0.9684818983078,0.0257746912539005,0.983553826808929,0.0794899165630341,0.661956369876862,0.0398607403039932,0.773851096630096,0.0203046165406704,0.66486120223999,0.0412796698510647,0.403893113136292,0.192425221204758,0.461209803819656,0.154991924762726,0.405234277248383,0.309781849384308,0.609646320343018,0.20757669210434,0.609646320343018,0.309781849384308,0.667019903659821,0.20757669210434,0.666039228439331,0.20757669210434,0.717319905757904,0.309781938791275,0.561589777469635,0.20757669210434,0.561099469661713,0.309781849384308,0.717319905757904,0.20757669210434,0.738896310329437,0.309781849384308,0.739877045154572,0.20757669210434,0.759591400623322,0.0947702378034592,0.407228708267212,0.1030542999506,0.320969939231873,0.0343127883970737,0.355668008327484,0.059341985732317,0.488066047430038,0.0184010714292526,0.528196215629578,0.0564790554344654,0.526171386241913,0.136228680610657,0.488436430692673,0.188639670610428,0.513902127742767,0.138181179761887,0.532618522644043,0.133801311254501,0.558907508850098,0.173099964857101,0.577236235141754,0.00699661578983068,0.463122010231018,0.0171371474862099,0.390296190977097,0.174031466245651,0.391356766223907,0.0167572125792503,0.329930871725082,0.1030542999506,0.296397805213928,0.16236937046051,0.355480849742889,0.178212255239487,0.328047633171082,0.0985367149114609,0.48195669054985,0.309781849384308,0.759150683879852,0.00699661578983068,0.463122010231018,0.0171371474862099,0.390296190977097,0.174031466245651,0.391356766223907,0.100411489605904,0.375353693962097,0.100411489605904,0.375353693962097,0.100411489605904,0.375353693962097,0.100411489605904,0.375353693962097,0.868015289306641,0.208252608776093,0.73174262046814,0.212384939193726, +0.845751523971558,0.28324630856514,0.991345107555389,0.329498440027237,0.834491193294525,0.374873667955399,0.984914600849152,0.390686899423599,0.699983894824982,0.283090680837631,0.845751404762268,0.28324630856514,0.991345107555389,0.329498440027237,0.73174262046814,0.212384939193726,0.868015170097351,0.208252549171448,0.394899547100067,0.98568731546402,0.413190931081772,0.928689122200012,0.394424051046371,0.862477779388428,0.346043258905411,0.871781170368195,0.33737725019455,0.968025684356689,0.20338599383831,0.905978322029114,0.203811720013618,0.857242465019226,0.202066421508789,0.951267957687378,0.202474743127823,0.773168325424194,0.203738212585449,0.818235754966736,0.323137223720551,0.860432505607605,0.324300229549408,0.90054178237915,0.324300229549408,0.90054178237915,0.325185000896454,0.946797013282776,0.325185000896454,0.946797013282776,0.3269282579422,0.997641563415527,0.202474743127823,0.990857839584351,0.327035188674927,0.823217868804932,0.323137223720551,0.860432505607605,0.327035188674927,0.823217868804932,0.3269282579422,0.779951930046082,0.005852235481143,0.590954720973969,0.0198808368295431,0.625212132930756,0.0630763620138168,0.613962888717651,0.0586530193686485,0.561315953731537,0.0135012734681368,0.558233380317688,0.37673208117485,0.600655555725098,0.398557811975479,0.635846972465515,0.399513334035873,0.716340124607086,0.376886785030365,0.749225735664368,0.37209352850914,0.6053386926651,0.346633851528168,0.635881721973419,0.345683991909027,0.716307699680328,0.372077912092209,0.744849503040314,0.322536081075668,0.600661754608154,0.341752856969833,0.578653872013092,0.322535127401352,0.600661754608154,0.421345233917236,0.60066169500351,0.421344310045242,0.600661754608154,0.401470720767975,0.578838169574738,0.322535127401352,0.747420847415924,0.322533428668976,0.747420847415924,0.340465366840363,0.769745230674744,0.421344608068466,0.747420847415924,0.421345919370651,0.747420847415924,0.402530997991562,0.769654512405396,0.376639574766159,0.600214064121246,0.398455739021301,0.635367810726166,0.39941081404686, +0.715774714946747,0.376794219017029,0.7486252784729,0.372003078460693,0.604892134666443,0.346554547548294,0.635402500629425,0.345605075359344,0.715742349624634,0.37198743224144,0.744253635406494,0.322467386722565,0.600220263004303,0.341675728559494,0.578235864639282,0.322466433048248,0.600220263004303,0.421233057975769,0.600220263004303,0.421232223510742,0.600220263004303,0.401367336511612,0.578419923782349,0.322466403245926,0.746822237968445,0.32246470451355,0.746822237968445,0.340388745069504,0.769122660160065,0.421232461929321,0.7468221783638,0.421233832836151,0.746822237968445,0.402427196502686,0.769032180309296,0.407421261072159,0.414758145809174,0.378848075866699,0.414758145809174,0.378848075866699,0.551559925079346,0.416013151407242,0.551559925079346,0.378848075866699,0.414758145809174,0.378848075866699,0.551559925079346,0.341683030128479,0.551559925079346,0.350274920463562,0.414758145809174,0.378848075866699,0.56630152463913,0.407421261072159,0.414758145809174,0.378848075866699,0.414758145809174,0.378848075866699,0.551559925079346,0.416013151407242,0.551559925079346,0.378848075866699,0.414758145809174,0.378848075866699,0.551559925079346,0.341683030128479,0.551559925079346,0.350274920463562,0.414758145809174,0.378848075866699,0.56630152463913,0.524737000465393,0.209688276052475,0.530935764312744,0.271307438611984,0.551193714141846,0.256319671869278,0.549404740333557,0.222827777266502,0.415093213319778,0.20820526778698,0.398054569959641,0.244893670082092,0.423734396696091,0.289916485548019,0.469621688127518,0.276556968688965,0.469623595476151,0.21325671672821,0.677508533000946,0.315907448530197,0.677773833274841,0.211531713604927,0.574438452720642,0.315676271915436,0.574459552764893,0.211531713604927,0.671194553375244,0.308959513902664,0.671076953411102,0.218559801578522,0.580872297286987,0.218605399131775,0.580823540687561,0.308944076299667,0.677773833274841,0.211531713604927,0.677508533000946,0.315907448530197,0.671194553375244,0.308959513902664,0.671076953411102,0.218559801578522 +} + UVIndex: *1734 { +a: 143,144,145,146,147,148,149,150,148,147,151,152,153,152,158,159,152,151,160,158,154,155,156,155,157,156,159,158,161,162,158,160,163,161,162,161,155,154,161,163,157,155,164,165,166,149,148,165,164,167,165,148,152,153,146,149,148,167,168,164,149,145,169,167,164,168,145,149,146,146,167,169,143,168,145,144,169,168,143,146,169,143,170,171,172,173,147,150,174,175,175,176,151,147,153,159,178,176,176,178,160,151,154,156,177,177,156,157,159,162,179,178,178,179,163,160,162,154,177,179,179,177,157,163,180,174,166,165,175,181,180,165,165,153,176,175,171,181,175,174,168,172,174,180,182,168,180,181,172,171,174,171,182,181,170,173,172,168,182,170,168,171,170,182,124,125,126,127,128,124,127,129,127,126,130,131,129,127,131,132,131,130,141,133,134,135,135,134,136,137,138,135,137,139,137,136,125,124,139,137,124,128,131,141,142,132,133,135,138,140,183,184,185,186,186,185,187,188,188,187,189,190,202,191,192,203,192,191,193,194,194,193,184,183,183,186,195,196,186,188,197,195,192,194,198,199,194,183,196,198,188,190,200,197,203,192,199,201,0,2,1,0,3,2,0,4,3,0,5,4,1,2,7,6,2,3,8,7,3,4,9,8,4,10,9,4,5,11,10,5,12,11,13,6,7,14,14,7,8,15,15,8,9,16,56,9,10,57,57,10,11,58,58,11,12,29,20,13,14,21,21,14,15,22,22,15,50,50,15,16,49,41,17,32,61,32,17,42,33,40,55,33,42,40,18,19,55,25,20,21,25,21,22,23,16,9,56,26,39,60,26,27,26,60,16,18,39,27,28,19,18,28,59,52,32,31,25,23,30,54,53,52,51,34,36,35,38,32,36,37,31,32,33,36,33,24,35,36,36,34,37,60,61,49,16,46,48,43,47,47,45,44,46,33,55,24,52,53,32,17,41,47,43,42,17,43,48,18,40,46,44,39,18,44,45,41,39,45,47,40,42,48,46,61,60,39,41,22,54,51,23,50,49,53,54,61,32,53,30,52,31,51,52,30,23,54,22,50,26,56,57,27,27,57,58,28,28,58,29,59,49,61,53,62,63,64,62,64,65,62,65,66,62,66,67,63,68,69,64,64,69,70,65,65,70,71,66,66,71,72,66,72,73,67,67,73,74,75,76,69,68,76,77,70,69,77,78,71,70,118,119,72,71,119,120,73,72,120,91,74,73,82,83,76,75,83,84,77,76,84,112,77,112,111,78,77,103,123,94,79,94,95,104,79,102,104,95,117,102,117,81,80,87,83,82,87,85,84,83,78,88,118,71,101,89,88,122,88,78,122,80,90,89,101,81, +121,90,80,114,93,94,87,92,85,116,113,114,115,96,100,97,98,94,93,99,98,94,98,95,95,98,97,86,98,99,96,122,78,111,123,108,109,105,110,109,108,106,107,95,86,117,114,94,115,79,105,109,103,104,110,105,79,80,106,108,102,101,107,106,80,103,109,107,101,102,108,110,104,123,103,101,122,84,85,113,116,112,116,115,111,123,115,94,92,93,114,113,85,92,114,116,112,84,88,89,119,118,89,90,120,119,90,121,91,120,111,115,123,289,290,291,292,293,294,295,299,300,296,294,301,302,296,303,304,305,295,298,306,307,298,297,309,308,310,311,312,313,314,355,356,357,358,359,360,361,362,355,358,360,359,363,357,361,357,363,358,360,363,361,358,363,360,357,356,362,361,206,209,207,208,205,204,210,205,213,212,204,208,214,215,206,206,215,216,209,210,227,217,205,204,212,218,211,219,221,220,213,222,212,214,232,223,215,215,223,224,216,212,222,225,218,216,224,226,216,228,209,213,205,217,227,230,229,217,217,229,213,226,221,216,221,226,220,216,221,219,228,222,213,234,223,231,224,232,233,231,223,234,236,235,222,222,235,225,278,279,280,278,280,281,281,280,282,283,280,279,284,282,282,285,286,283,284,287,285,282,315,316,317,318,319,320,321,322,323,324,325,316,315,326,327,316,326,316,327,319,326,315,328,319,328,315,325,315,320,320,319,323,323,325,320,324,315,325,324,323,319,315,324,319,328,319,327,327,326,328,317,316,319,322,321,320,315,318,329,330,331,317,332,318,333,332,317,317,322,333,332,334,318,322,318,334,330,321,318,321,329,322,329,321,330,331,330,318,331,322,329,318,322,331,334,333,322,333,334,332,287,288,285,288,286,285,335,336,337,338,339,340,341,342,343,344,345,336,335,346,347,336,346,336,347,339,346,335,348,339,348,335,345,335,340,340,339,343,343,345,340,344,335,345,344,343,339,335,344,339,348,339,347,347,346,348,337,336,339,342,341,340,335,338,349,350,351,337,352,338,353,352,337,337,342,353,352,354,338,342,338,354,350,341,338,341,349,342,349,341,350,351,350,338,351,342,349,338,342,351,354,353,342,353,354,352,364,365,366,367,368,369,370,371,364,367,369,368,372,366,370,366,372,367,369,372,370,367,372,369,366,365,371,370,373,374,375,376,240,242,243,241,242, +247,244,243,245,240,241,246,247,249,248,244,249,270,250,248,251,254,237,275,251,237,253,262,237,254,255,262,254,256,239,238,257,258,261,260,259,238,258,259,257,377,378,379,380,381,265,266,252,253,266,268,267,252,263,265,253,237,268,264,239,267,277,267,239,251,257,251,239,257,269,251,269,254,251,271,272,237,239,273,238,253,252,274,252,267,276,381,380,374,373,467,471,470,469,468,472,478,477,473,474,480,479,472,474,483,482,481,473,485,484,476,476,486,487,475,488,492,491,490,489,533,536,535,534,537,540,539,538,533,537,538,536,541,539,535,535,536,541,538,539,541,536,538,541,535,539,540,534,384,386,385,387,383,388,382,383,382,390,391,386,384,393,392,384,387,394,393,388,383,395,405,382,389,396,390,397,398,399,391,390,400,392,393,401,410,393,394,402,401,390,396,403,400,394,404,402,394,387,406,391,395,383,405,395,407,408,395,391,407,404,394,399,399,398,404,394,406,397,399,400,412,391,401,402,409,410,401,409,411,412,400,413,414,400,403,413,456,458,457,456,459,458,459,461,460,458,458,460,462,457,460,461,464,463,462,460,463,465,493,496,495,494,497,500,499,498,501,503,502,494,504,493,505,504,494,494,497,505,504,506,493,497,493,506,503,498,493,498,501,497,501,498,503,502,503,493,502,497,501,493,497,502,506,505,497,505,506,504,495,500,497,494,499,496,493,498,507,509,508,495,496,510,511,495,510,495,511,500,510,496,512,500,512,496,508,496,499,499,500,507,507,508,499,509,496,508,509,507,500,496,509,500,512,500,511,511,510,512,465,463,466,466,463,464,513,516,515,514,517,520,519,518,521,523,522,514,524,513,525,524,514,514,517,525,524,526,513,517,513,526,523,518,513,518,521,517,521,518,523,522,523,513,522,517,521,513,517,522,526,525,517,525,526,524,515,520,517,514,519,516,513,518,527,529,528,515,516,530,531,515,530,515,531,520,530,516,532,520,532,516,528,516,519,519,520,527,527,528,519,529,516,528,529,527,520,516,529,520,532,520,531,531,530,532,542,545,544,543,546,549,548,547,542,546,547,545,550,548,544,544,545,550,547,548,550,545,547,550,544,548,549,543,551,554,553,552,418,419,421,420,420,421,422,425,423,424,419,418,425,422,426,427,427, +426,428,448,429,415,432,453,431,415,429,440,432,415,433,434,432,440,417,435,416,436,437,438,439,416,435,437,436,555,559,558,557,556,443,431,430,444,444,430,445,446,441,415,431,443,446,445,417,442,455,429,417,445,435,417,429,435,429,447,447,429,432,449,415,450,417,416,451,431,452,430,430,454,445,559,551,552,558,564,567,566,565,561,560,564,565,563,561,565,566,560,562,567,564,562,563,566,567,568,569,570,571 +} + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: *1 { +a: 0 +} + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Geometry: 550248656, "Geometry::", "Mesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.223529411764706,0.0313725490196078,0.533333333333333 + } + Vertices: *93 { +a: -2.72186913008454e-008,-0.938206791877747,0.823628306388855,0.590331852436066,-0.938206732273102,0.482695490121841,-0.590331852436066,-0.938206732273102,0.482695490121841,6.80467282521136e-009,-0.938206732273102,0.141762733459473,-4.76327102205687e-008,-9.78582096099854,0.924393355846405,1.22044479846954,-9.78582096099854,0.482695579528809,-1.22044479846954,-9.78582096099854,0.482695460319519,2.04140189197233e-008,-9.78582096099854,0.0409978330135345,0,-12.9666013717651,0.482695609331131,0.252239644527435,3.22724914550781,0.482695668935776,-1.10257429852823e-008,3.22724914550781,0.734935164451599,-1.10257429852823e-008,-0.366634994745255,0.734935283660889,0.252239644527435,-0.366634428501129,0.482695519924164,-0.252239644527435,3.22724914550781,0.482695668935776,-0.252239644527435,-0.366634428501129,0.482695519924164,3.00792790675075e-009,3.22724914550781,0.230456009507179,3.00792790675075e-009,-0.366633832454681,0.230455994606018,-4.29893951547911e-008,3.75782370567322,1.46592962741852,0.983483076095581,3.75782370567322,0.48244696855545,-5.74431370525819e-011,4.60311508178711,0.482447326183319,-0.983483076095581,3.75782370567322,0.482446849346161,1.17279164157935e-008,3.75782370567322,-0.501035690307617,-1.29989838337785e-010,2.91253256797791,0.482446640729904,1.18910145759583,-1.15344333648682,0.950034916400909,1.18910205364227,-1.15344369411469,0.014858796261251,-1.18910145759583,-1.15344333648682,0.95003479719162,-1.18910109996796,-1.15344369411469,0.014858796261251,-1.18910109996796,-0.0755445063114166,0.0148588428273797,1.18910205364227,-0.0755445063114166,0.0148588428273797,1.18910145759583,-0.0755444839596748,0.950034856796265,-1.18910145759583,-0.0755444839596748,0.950034856796265 +} + PolygonVertexIndex: *92 { +a: 1,0,4,-6,0,2,6,-5,2,3,7,-7,3,1,5,-8,5,4,-9,4,6,-9,6,7,-9,7,5,-9,9,10,11,-13,10,13,14,-12,13,15,16,-15,15,9,12,-17,19,17,-19,19,20,-18,19,21,-21,19,18,-22,18,17,-23,17,20,-23,20,21,-23,21,18,-23,28,29,23,-25,29,30,25,-24,30,27,26,-26,27,28,24,-27,24,23,25,-27,28,27,30,-30 +} + Edges: *52 { +a: 0,4,8,12,1,2,3,5,6,9,10,14,17,18,20,23,28,29,30,31,32,33,34,36,37,38,40,42,44,45,46,47,48,50,51,54,57,58,60,63,69,70,71,73,74,77,78,82,91,90,89,88 +} + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *276 { +a: 0.396662622690201,0.0193510074168444,0.91776043176651,0.396662622690201,0.0193510074168444,0.917760491371155,0.396662622690201,0.0193510074168444,0.9177605509758,0.396662622690201,0.0193510074168444,0.917760491371155,-0.396662652492523,0.0193510055541992,0.917760491371155,-0.396662682294846,0.0193510036915541,0.91776043176651,-0.396662682294846,0.0193510055541992,0.917760491371155,-0.396662652492523,0.0193510036915541,0.917760491371155,-0.396662503480911,0.019350990653038,-0.91776043176651,-0.396662533283234,0.0193509925156832,-0.917760491371155,-0.396662533283234,0.0193509925156832,-0.9177605509758,-0.396662503480911,0.0193509925156832,-0.917760491371155,0.396662563085556,0.0193509887903929,-0.917760491371155,0.396662563085556,0.0193509887903929,-0.91776043176651,0.396662592887878,0.0193509887903929,-0.917760491371155,0.396662622690201,0.0193509887903929,-0.9177605509758,0.337448805570602,-0.12947690486908,0.93239688873291,0.337448805570602,-0.12947690486908,0.9323970079422,4.42199677763711e-007,-1,0,-0.33744889497757,-0.12947690486908,0.932396829128265,-0.337448924779892,-0.129476919770241,0.93239688873291,-4.42199677763711e-007,-1,-2.94799775701904e-007,-0.337448686361313,-0.129476934671402,-0.932396948337555,-0.337448716163635,-0.129476919770241,-0.9323970079422,4.42199677763711e-007,-1,0,0.337448805570602,-0.129476919770241,-0.9323970079422,0.337448805570602,-0.129476919770241,-0.93239688873291,-4.42199677763711e-007,-1,-2.94799775701904e-007,1,9.24624554698994e-009,0,-1.07326052045664e-007,-4.1094403435693e-009,1,-1.07326172837929e-007,-4.10944078765851e-009,1,1,9.24623222431364e-009,9.659347597335e-007,-1.07326052045664e-007,-4.1094403435693e-009,1,-1,9.24624554698994e-009,0,-1,9.24623222431364e-009,9.659347597335e-007,-1.07326172837929e-007,-4.10944078765851e-009,1,-1,9.24624554698994e-009,0,0,2.26019274407463e-008,-1,0,2.26019274407463e-008,-1,-1,9.24623222431364e-009,9.659347597335e-007,0,2.26019274407463e-008,-1,1,9.24624554698994e-009,0,1,9.24623222431364e-009,9.659347597335e-007, +0,2.26019274407463e-008,-1,-2.07195807178095e-008,1,2.07195810730809e-007,-2.71581637178997e-008,-1.90107144248941e-007,1,1,-8.14745533261885e-008,0,-2.07195807178095e-008,1,2.07195810730809e-007,-1,-2.71581850341818e-008,-8.14745533261885e-008,-2.71581637178997e-008,-1.90107144248941e-007,1,-2.07195807178095e-008,1,2.07195810730809e-007,5.43163274357994e-008,1.08632654871599e-007,-1,-1,-2.71581850341818e-008,-8.14745533261885e-008,-2.07195807178095e-008,1,2.07195810730809e-007,1,-8.14745533261885e-008,0,5.43163274357994e-008,1.08632654871599e-007,-1,1,-8.14745533261885e-008,0,-2.71581637178997e-008,-1.90107144248941e-007,1,2.07195736123822e-008,-0.999999940395355,-1.86476157182369e-007,-2.71581637178997e-008,-1.90107144248941e-007,1,-1,-2.71581850341818e-008,-8.14745533261885e-008,2.07195736123822e-008,-0.999999940395355,-1.86476157182369e-007,-1,-2.71581850341818e-008,-8.14745533261885e-008,5.43163274357994e-008,1.08632654871599e-007,-1,2.07195736123822e-008,-0.999999940395355,-1.86476157182369e-007,5.43163274357994e-008,1.08632654871599e-007,-1,1,-8.14745533261885e-008,0,2.07195736123822e-008,-0.999999940395355,-1.86476157182369e-007,1,-7.04885741518568e-015,6.37362745692371e-007,1,-7.04885741518568e-015,6.37362745692371e-007,1,-7.04885783870215e-015,6.37362745692371e-007,0.999999940395355,-7.04885741518568e-015,6.37362688848953e-007,-2.50628922060514e-008,0,1,-2.50628922060514e-008,0,1,-2.50628922060514e-008,0,1,-2.50628922060514e-008,0,1,-1,2.11465739396229e-014,-3.82417738364893e-007,-1,2.11465739396229e-014,-3.82417681521474e-007,-0.999999940395355,2.11465739396229e-014,-3.82417681521474e-007,-1,2.11465756336888e-014,-3.82417738364893e-007,0,4.32008206985302e-008,-1,0,4.32008206985302e-008,-1,0,4.32008206985302e-008,-1,0,4.32008206985302e-008,-1,-9.58449374147173e-015,-1,3.82417738364893e-007,-9.58449289443879e-015,-1,3.82417681521474e-007,-9.58449374147173e-015,-1,3.82417738364893e-007,-9.58449374147173e-015,-1,3.82417738364893e-007,0,1,-2.39011086478058e-008,0,1,-2.39011086478058e-008,0,0.999999940395355,-2.39011050950921e-008, +0,1,-2.39011050950921e-008 +} + } + LayerElementUV: 0 { + Version: 101 + Name: "UVChannel_1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *90 { +a: 0.635420143604279,0.989106118679047,0.853325128555298,0.923221528530121,0.853325128555298,0.989106118679047,0.635420143604279,0.718601167201996,0.853325128555298,0.718601167201996,0.853325128555298,0.923221528530121,0.853325128555298,0.65271657705307,0.982112407684326,0.922820210456848,0.853325128555298,0.922820210456848,0.853325009346008,0.699086725711823,0.982112407684326,0.699086725711823,0.635420143604279,0.65271657705307,0.635420143604279,0.923221528530121,0.635420143604279,0.923221528530121,0.982112407684326,0.922820210456848,0.853325128555298,0.922820210456848,0.853325009346008,0.699086725711823,0.982112407684326,0.699086725711823,0.156479686498642,0.00803246255964041,0.299083441495895,0.00803246255964041,0.299083441495895,0.730391085147858,0.00426608324050903,0.730391085147858,0.441687285900116,0.00803246255964041,0.593900799751282,0.730391085147858,0.299083471298218,0.00803246255964041,0.299083471298218,0.730391085147858,0.299083441495895,0.990084290504456,0.711038172245026,0.249859601259232,0.80349987745285,0.249859601259232,0.80349987745285,0.591733813285828,0.711038172245026,0.591733694076538,0.89596164226532,0.249859601259232,0.89596164226532,0.591733694076538,0.80349987745285,0.249859601259232,0.80349987745285,0.591733694076538,0.801603555679321,0.000499441986903548,0.801603436470032,0.0998116806149483,0.603497445583344,0.0998116806149483,0.999709486961365,0.0998116806149483,0.801603555679321,0.0998116806149483,0.801603555679321,0.199123904109001,0.635420143604279,0.923221528530121,0.853325128555298,0.923221528530121,0.853325128555298,0.718601167201996,0.635420143604279,0.718601167201996 +} + UVIndex: *92 { +a: 18,19,20,21,19,22,23,20,22,24,25,23,24,18,21,25,21,20,26,20,23,26,23,25,26,25,21,26,27,28,29,30,28,31,32,29,31,33,34,32,33,27,30,34,35,36,37,35,38,36,35,39,38,35,37,39,37,36,40,36,38,40,38,39,40,39,37,40,0,12,1,2,13,3,4,5,3,11,6,4,44,41,42,43,7,8,9,10,14,17,16,15 +} + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: *1 { +a: 0 +} + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 551080896, "Model::Root", "Null" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "MaxHandle", "int", "Integer", "U",436 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 551087008, "Model::Bip001", "Root" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "Show", "bool", "", "",0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.362284749746323,5.07679843902588 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,-0,-89.9999214528199 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999940396295,0.999999940396295,1 + P: "MaxHandle", "int", "Integer", "U",478 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 551069616, "Model::Bip001 Pelvis", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-89.999920542207,-90,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000000000096,0.999999940396317,0.999999940397278 + P: "MaxHandle", "int", "Integer", "U",479 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 551066880, "Model::Bip001 Spine", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0.843459129333496,-0.00157788395881653,-0.000277097104117274 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",9.99976490472026,-0.00800177659316424,0.0449325537120604 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000001923014,0.999999942860045,0.999999926866741 + P: "MaxHandle", "int", "Integer", "U",480 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 551064544, "Model::Bip001 Spine1", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",2.01283359527588,-0.00200581550598145,-1.34110450744629e-007 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0.00804432185971403,9.99997997629556,10.0007319948383 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000009936863,1.00000005665806,1.0000001032806 + P: "MaxHandle", "int", "Integer", "U",481 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 551062000, "Model::Bip001 Neck", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",2.55766248703003,-0.000469207763671875,1.19209289550781e-007 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",5.3360846529616e-007,-0,1.70754729250319e-006 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1,1.00000011920929,1 + P: "MaxHandle", "int", "Integer", "U",499 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 551060016, "Model::Bip001 Head", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0.589160919189453,1.19209289550781e-007,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-8.24620636229287,-9.84654445411995,-10.1968111900316 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999999720281,1.00000009135188,1.00000002301607 + P: "MaxHandle", "int", "Integer", "U",498 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733770144, "Model::Bip001 HeadNub", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",6.00742816925049,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-4.7182680022964e-018,3.88251303889589e-019,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1,0.999999940395355,0.999999940395355 + P: "MaxHandle", "int", "Integer", "U",513 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733772192, "Model::Bip001 L Clavicle", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0.000155448913574219,0.196512758731842,0.491858839988709 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-0.000802550586235054,-78.5408403127078,179.955173598875 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999972592606,1.00000001906565,0.999999982280221 + P: "MaxHandle", "int", "Integer", "U",516 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733494528, "Model::Bip001 L UpperArm", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.95057189464569,1.19209289550781e-007,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",41.6915039234789,38.5954939963913,46.8499586323026 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000004278091,1.00000012321608,1.00000008779319 + P: "MaxHandle", "int", "Integer", "U",517 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733492816, "Model::Bip001 L Forearm", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "RotationMinX", "bool", "", "",1 + P: "RotationMinY", "bool", "", "",1 + P: "RotationMaxX", "bool", "", "",1 + P: "RotationMaxY", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",2.09111094474792,-4.76837158203125e-007,-9.5367431640625e-007 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-9.33814914040997e-007,1.70754728838635e-006,-51.7817859997004 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000000241096,1.00000001236507,0.99999988079071 + P: "MaxHandle", "int", "Integer", "U",518 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733479616, "Model::Bip001 L Hand", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.75816583633423,-1.19209289550781e-007,-9.5367431640625e-007 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-89.9543768697499,-0,5.33608528907246e-008 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1,1.0000001382117,1.00000007860744 + P: "MaxHandle", "int", "Integer", "U",519 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733505600, "Model::Bip001 R Clavicle", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0.000155448913574219,0.196515619754791,-0.491858005523682 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-0.000798253230057754,78.5408439330021,179.953580977343 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000008141803,1.00000001906561,1.00000003687575 + P: "MaxHandle", "int", "Integer", "U",520 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733486336, "Model::Bip001 R UpperArm", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.95057201385498,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-8.40561713831361,-47.0340156604356,21.2129101685565 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000009541179,1.00000014017375,1.00000006092117 + P: "MaxHandle", "int", "Integer", "U",521 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733483888, "Model::Bip001 R Forearm", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "RotationMinX", "bool", "", "",1 + P: "RotationMinY", "bool", "", "",1 + P: "RotationMaxX", "bool", "", "",1 + P: "RotationMaxY", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",2.0911111831665,2.38418579101563e-007,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",1.70754727344822e-006,-8.5377354438471e-007,-75.6999146510359 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.0000001193137,1.00000001115926,1 + P: "MaxHandle", "int", "Integer", "U",522 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733527296, "Model::Bip001 R Hand", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.75816512107849,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",89.9543777502026,-8.53773646251594e-007,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1,1.00000001901431,1.00000007859521 + P: "MaxHandle", "int", "Integer", "U",523 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733525744, "Model::Bip001 L Thigh", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-0.843206405639648,0.317917436361313,1.79013109207153 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-175.022841431811,9.02715677552457,128.475853535386 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000015345881,1.00000016547443,1.00000009008452 + P: "MaxHandle", "int", "Integer", "U",484 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733541040, "Model::Bip001 L Calf", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "RotationMinX", "bool", "", "",1 + P: "RotationMinY", "bool", "", "",1 + P: "RotationMaxX", "bool", "", "",1 + P: "RotationMaxY", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",2.44020819664001,0,1.19209289550781e-007 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",1.06721711513337e-007,1.06721685303856e-007,-31.2054232601002 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000019187847,0.999999946291267,1 + P: "MaxHandle", "int", "Integer", "U",485 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733543680, "Model::Bip001 L Foot", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.64455533027649,-2.38418579101563e-007,1.19209289550781e-007 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-16.8175989360009,11.4069492062462,7.79217183846743 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999977630314,0.999999950364024,0.999999984111899 + P: "MaxHandle", "int", "Integer", "U",486 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733539088, "Model::Bip001 L Toe0", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.54465210437775,1.9879002571106,5.96046447753906e-008 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",7.32502990812576e-006,-19.9999942411144,90.0000072685355 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999958816161,0.99999994039537,1.00000001482622 + P: "MaxHandle", "int", "Integer", "U",502 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733536912, "Model::Bip001 L Toe0Nub", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0.116105079650879,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-8.53773646251593e-007,4.26886848570236e-007,-180 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",-0.999999940395355,-1,-1 + P: "MaxHandle", "int", "Integer", "U",512 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733520224, "Model::Bip001 R Thigh", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-0.843708992004395,-0.313369303941727,-1.79013109207153 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-169.407506881545,-0.749073336730562,-148.357834720399 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000009014845,1.00000022526508,1.00000009335111 + P: "MaxHandle", "int", "Integer", "U",487 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733523200, "Model::Bip001 R Calf", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "RotationMinX", "bool", "", "",1 + P: "RotationMinY", "bool", "", "",1 + P: "RotationMaxX", "bool", "", "",1 + P: "RotationMaxY", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",2.44020795822144,2.38418579101563e-007,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-4.26886833581839e-007,4.2688676223615e-007,-45.9739406804654 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000014263653,0.999999975506291,1.00000011920929 + P: "MaxHandle", "int", "Integer", "U",488 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733519104, "Model::Bip001 R Foot", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.64455533027649,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",12.1283143987827,10.9908368587083,52.825022483687 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.00000012307916,1.00000006034745,1.00000008865329 + P: "MaxHandle", "int", "Integer", "U",489 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733482240, "Model::Bip001 R Toe0", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.54465210437775,1.98789978027344,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",7.81727503143985e-006,15.0000249789351,90.0000176778328 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",0.999999979355545,0.999999880790755,0.999999937208688 + P: "MaxHandle", "int", "Integer", "U",505 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 733517280, "Model::Bip001 R Toe0Nub", "LimbNode" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0.11610472202301,2.98023223876953e-008,2.38418579101563e-007 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,2.13443411562898e-007,1.70754729250319e-006 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1,1,1 + P: "MaxHandle", "int", "Integer", "U",511 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 380933440, "Model::Skeleton01", "Mesh" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "MaxHandle", "int", "Integer", "U",325 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Model: 380954672, "Model::Sword01", "Mesh" { + Version: 232 + Properties70: { + P: "InheritType", "enum", "", "",1 + P: "ScalingMin", "Vector3D", "Vector", "",1,1,1 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,-1.23281335830688,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-3.1601185798645,-2.77757406234741,5.6705904006958 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-58.1595879290039,-46.4063230037028,72.1477983770527 + P: "Lcl Scaling", "Lcl Scaling", "", "A+",1.0000002890174,1.0000001594726,1.00000016292125 + P: "MaxHandle", "int", "Integer", "U",433 + } + MultiLayer: 0 + MultiTake: 1 + Shading: T + Culling: "CullingOff" + } + Material: 733702848, "Material::Skeleton01", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "ShadingModel", "KString", "", "", "phong" + P: "EmissiveFactor", "double", "Number", "",0 + P: "AmbientColor", "ColorRGB", "Color", "",0.587999999523163,0.587999999523163,0.587999999523163 + P: "DiffuseColor", "ColorRGB", "Color", "",0.587999999523163,0.587999999523163,0.587999999523163 + P: "TransparentColor", "ColorRGB", "Color", "",1,1,1 + P: "SpecularColor", "ColorRGB", "Color", "",0.899999976158142,0.899999976158142,0.899999976158142 + P: "SpecularFactor", "double", "Number", "",0 + P: "ShininessExponent", "double", "Number", "",2.0000000206574 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "Ambient", "Vector3D", "Vector", "",0.587999999523163,0.587999999523163,0.587999999523163 + P: "Diffuse", "Vector3D", "Vector", "",0.587999999523163,0.587999999523163,0.587999999523163 + P: "Specular", "Vector3D", "Vector", "",0,0,0 + P: "Shininess", "double", "Number", "",2.0000000206574 + P: "Opacity", "double", "Number", "",1 + P: "Reflectivity", "double", "Number", "",0 + } + } + Material: 550255040, "Material::Sword01", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "ShadingModel", "KString", "", "", "phong" + P: "EmissiveFactor", "double", "Number", "",0 + P: "AmbientColor", "ColorRGB", "Color", "",0.587999999523163,0.587999999523163,0.587999999523163 + P: "DiffuseColor", "ColorRGB", "Color", "",0.587999999523163,0.587999999523163,0.587999999523163 + P: "TransparentColor", "ColorRGB", "Color", "",1,1,1 + P: "SpecularColor", "ColorRGB", "Color", "",0.899999976158142,0.899999976158142,0.899999976158142 + P: "SpecularFactor", "double", "Number", "",0 + P: "ShininessExponent", "double", "Number", "",2.0000000206574 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "Ambient", "Vector3D", "Vector", "",0.587999999523163,0.587999999523163,0.587999999523163 + P: "Diffuse", "Vector3D", "Vector", "",0.587999999523163,0.587999999523163,0.587999999523163 + P: "Specular", "Vector3D", "Vector", "",0,0,0 + P: "Shininess", "double", "Number", "",2.0000000206574 + P: "Opacity", "double", "Number", "",1 + P: "Reflectivity", "double", "Number", "",0 + } + } + Deformer: 550334800, "Deformer::", "Skin" { + Version: 100 + Link_DeformAcuracy: 50 + } + Deformer: 877427664, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *50 { +a: 0,7,8,9,10,11,12,13,14,15,16,17,18,30,31,32,33,34,35,36,37,38,39,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,437,438,439,440,441,442,443,444 +} + Weights: *50 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + Transform: *16 { +a: 6.12323399573088e-017,2.75770718100142e-006,1.00000005959608,0,2.35098898188189e-038,-1.00000005959704,2.75770718099877e-006,0,0.999999999999039,-1.68860863609953e-022,-6.12323436065752e-017,0,-5.67751646041324,0.471109895172703,-1.29918306318222e-006,1 +} + TransformLink: *16 { +a: 6.12323399574265e-017,0,1.00000000000096,0,2.75770685227809e-006,-0.999999940395355,-1.68860843481454e-022,0,0.999999940396317,2.75770685228074e-006,-6.12323363076947e-017,0,0,0.471109867095947,5.6775164604187,1 +} + } + Deformer: 550261728, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *14 { +a: 1,2,3,19,20,21,23,24,42,45,48,51,54,56 +} + Weights: *14 { +a: 1,0.5,0.5,1,1,1,0.5,0.5,1,1,1,1,1,1 +} + Transform: *16 { +a: 6.12323387916295e-017,-1.4026924459308e-006,1.00000005960268,0,0,-1.00000004056466,-1.40269247263528e-006,0,0.999999980962051,8.58901407048662e-023,-6.12323436069793e-017,0,-6.52097594244335,0.472712088925235,6.65266522519392e-007,1 +} + TransformLink: *16 { +a: 6.12323411231059e-017,0,1.00000001903795,0,-1.40269233212855e-006,-0.99999995943337,8.58901337364881e-023,0,0.999999940395355,-1.40269230542407e-006,-6.12323363076358e-017,0,-2.19686002722597e-009,0.472712069749832,6.52097606658936,1 +} + } + Deformer: 550396576, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *19 { +a: 2,3,4,23,24,25,26,27,40,41,43,44,46,47,49,50,52,53,55 +} + Weights: *19 { +a: 0.5,0.5,1,0.5,0.5,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + Transform: *16 { +a: 6.12323387916295e-017,-1.4026924459308e-006,1.00000005960268,0,0,-1.00000004056466,-1.40269247263528e-006,0,0.999999980962051,8.58901407048662e-023,-6.12323436069793e-017,0,-8.53345663990865,0.473146100163772,6.66470436229923e-007,1 +} + TransformLink: *16 { +a: 6.12323411231059e-017,0,1.00000001903795,0,-1.40269233212855e-006,-0.99999995943337,8.58901337364881e-023,0,0.999999940395355,-1.40269230542407e-006,-6.12323363076358e-017,0,-2.79198930641655e-009,0.473146080970764,8.53345680236816,1 +} + } + Deformer: 550426544, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *116 { +a: 5,6,22,28,29,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,223,224 +} + Weights: *116 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.000291112693957984,0.00874167215079069 +} + Transform: *16 { +a: 6.12323399573124e-017,-1.40269338212877e-006,1.00000005960268,0,0,-1.00000005960178,-1.40269338213003e-006,0,0.999999999999098,8.58901980304586e-023,-6.12323436069793e-017,0,-11.6802787780656,0.471109388535423,6.6082198288701e-007,1 +} + TransformLink: *16 { +a: 6.12323399574229e-017,0,1.0000000000009,0,-1.40269321491998e-006,-0.999999940396257,8.58901877918734e-023,0,0.999999940395355,-1.40269321491872e-006,-6.12323363076358e-017,0,0,0.471109360456467,11.6802787780762,1 +} + } + Deformer: 550614032, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *24 { +a: 185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208 +} + Weights: *24 { +a: 1,1,1,1,1,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,0.5,0.5,1,1,1,1,0.5,0.5,0.5,0.5,0.5 +} + Transform: *16 { +a: -0.996978099800872,-0.0764928264469218,-0.0135466584583032,0,-0.0766298618577355,0.997010450980535,0.00990282165115047,0,0.0127486651211719,0.0109109752734761,-0.999859187775834,0,-4.59699150457516,-0.730287473553274,10.6668082655323,1 +} + TransformLink: *16 { +a: -0.996978104114533,-0.0766298621892927,0.012748665176332,0,-0.0764928232920773,0.99701040986017,0.0109109748234675,0,-0.0135466588211939,0.00990282191642934,-0.999859214560272,0,-4.49446201324463,0.27020588517189,10.7318801879883,1 +} + } + Deformer: 550643232, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *30 { +a: 190,191,192,193,194,195,196,198,199,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224 +} + Weights: *30 { +a: 0.5,0.5,0.5,0.5,0.499999970197678,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.999708890914917,0.991258323192596 +} + Transform: *16 { +a: -0.996978099800872,-0.0136075634140216,0.0764820126144082,0,-0.0766298618577355,0.0106967128343109,-0.997002214105464,0,0.0127486651211719,-0.999850177838404,-0.0117071342042935,0,-6.35515693853853,10.6662232681881,0.738780902479477,1 +} + TransformLink: *16 { +a: -0.996978104114533,-0.0766298621892927,0.012748665176332,0,-0.0136075639097313,0.0106967132239813,-0.999850214261933,0,0.0764820148954059,-0.997002243840034,-0.0117071345534467,0,-6.247314453125,0.135477885603905,10.7542943954468,1 +} + } + Deformer: 734308656, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *11 { +a: 225,226,227,228,229,230,231,232,233,234,235 +} + Weights: *11 { +a: 1,1,1,1,1,1,1,1,1,1,1 +} + Transform: *16 { +a: -0.980066597846814,-1.3622229585029e-006,0.198669375132186,0,-1.33489603752342e-006,1.00000005960279,2.71485913200586e-007,0,-0.198669386149634,8.71313719542929e-010,-0.980066543497875,0,1.72141234182255,-0.275064508811379,10.9677505914219,1 +} + TransformLink: *16 { +a: -0.980066537857056,-1.3348959558146e-006,-0.198669373989105,0,-1.3622227961158e-006,0.999999940395355,8.71313615675778e-010,0,0.198669385006182,2.7148592669361e-007,-0.980066592207812,0,-0.491858005523682,0.275063812732697,11.0911178588867,1 +} + } + Deformer: 733846928, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *20 { +a: 236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255 +} + Weights: *20 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + Transform: *16 { +a: -0.99990592835522,-0.00218763324859634,-0.0135466593182345,0,-0.00232188907187385,0.999948217626476,0.00990281546672619,0,0.0135242961082427,0.00993333653248656,-0.999859187825435,0,-2.54744187693484,-0.386627479070072,10.6668078529384,1 +} + TransformLink: *16 { +a: -0.99990576505661,-0.00232188869267692,0.0135242938995361,0,-0.0021876334786298,0.999948322772777,0.00993333757699424,0,-0.0135466596811253,0.00990281573200489,-0.999859214609873,0,-2.40354800224304,0.275061190128326,10.7035989761353,1 +} + } + Deformer: 733898416, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *20 { +a: 256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275 +} + Weights: *20 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + Transform: *16 { +a: 4.98763614482686e-008,1.37278596270102e-006,-1.00000005960276,0,-0.0998334116647626,-0.995004212500749,-1.37090709630158e-006,0,-0.995004154232145,0.0998334175111925,8.74227184963973e-008,0,5.69618478607703,-0.0980498016490567,-1.81774552521058,1 +} + TransformLink: *16 { +a: 4.98763625942352e-008,-0.0998334139585497,-0.995004177093506,0,1.37278583345587e-006,-0.995004118823017,0.0998334081120684,0,-0.999999940395355,-1.37090693287931e-006,8.74227080749624e-008,0,-1.8177455663681,0.471107125282288,5.6775164604187,1 +} + } + Deformer: 733928560, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *19 { +a: 276,277,278,279,280,281,282,283,284,289,290,291,292,293,294,295,296,297,298 +} + Weights: *19 { +a: 0.5,0.5,1,0.5,0.5,1,1,1,1,1,0.5,1,0.5,0.5,1,0.5,1,0.5,1 +} + Transform: *16 { +a: -2.23848325071969e-007,1.35533041760233e-006,-1.00000005960276,0,0.0998334481750812,-0.995004205099762,-1.37090698043266e-006,0,-0.995004146831088,-0.0998334540217564,8.7422718495296e-008,0,3.21055373675732,0.550767545208872,-1.81774552771005,1 +} + TransformLink: *16 { +a: -2.23848331880174e-007,0.099833451211452,-0.995004177093506,0,1.35533030008169e-006,-0.995004118822995,-0.0998334453652023,0,-0.999999940395355,-1.37090681701041e-006,8.74227080738612e-008,0,-1.81774544715881,0.227492824196815,3.24949955940247,1 +} + } + Deformer: 733951920, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *26 { +a: 276,277,279,280,285,286,287,288,290,292,293,295,297,299,300,301,302,303,304,305,306,307,308,309,310,435 +} + Weights: *26 { +a: 0.5,0.5,0.5,0.5,1,1,1,1,0.5,0.5,0.5,0.5,0.5,1,1,1,1,1,1,1,1,0.999995529651642,1,0.99725741147995,1,0.000657709722872823 +} + Transform: *16 { +a: 6.12323399573676e-017,1.37090699293548e-006,-1.00000005960277,0,-0,-1.00000005960277,-1.37090699293548e-006,0,-0.999999999999999,8.39438430413579e-023,-6.12323436069847e-017,0,1.61316013336182,0.391677004088202,-1.81774537618007,1 +} + TransformLink: *16 { +a: 6.12323399573677e-017,0,-1,0,1.37090682951322e-006,-0.999999940395356,8.39438330346303e-023,0,-0.999999940395355,-1.37090682951321e-006,-6.12323363076358e-017,0,-1.81774580478668,0.391674488782883,1.61316013336182,1 +} + } + Deformer: 733981808, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *26 { +a: 309,402,403,405,406,411,412,413,414,416,418,419,421,423,425,426,427,428,429,430,431,432,433,434,435,436 +} + Weights: *26 { +a: 0.00274261273443699,0.5,0.5,0.5,0.5,1,1,1,1,0.5,0.5,0.5,0.5,0.5,1,1,1,1,1,1,1,1,1,1,0.999342262744904,1 +} + Transform: *16 { +a: 6.12323399573676e-017,1.37090699293548e-006,-1.00000005960277,0,-0,-1.00000005960277,-1.37090699293548e-006,0,-0.999999999999999,8.39438430413579e-023,-6.12323436069847e-017,0,1.61316013336181,0.391677026958444,1.81774597324834,1 +} + TransformLink: *16 { +a: 6.12323399573677e-017,0,-1,0,1.37090682951322e-006,-0.999999940395356,8.39438330346303e-023,0,-0.999999940395355,-1.37090682951321e-006,-6.12323363076358e-017,0,1.81774532794952,0.391679495573044,1.61316013336182,1 +} + } + Deformer: 734003504, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *24 { +a: 311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334 +} + Weights: *24 { +a: 1,1,1,1,1,0.5,0.5,0.5,0.5,0.5,0.5,0.245866924524307,1,0.5,0.5,1,1,1,1,0.5,0.5,0.5,0.5,0.5 +} + Transform: *16 { +a: 0.996978280915291,0.0764900950242154,-0.0135466309609329,0,-0.0766271305408871,0.997010631336833,-0.00990285844483602,0,0.0127486643884062,0.0109109746379983,0.999859187793553,0,-4.59699257869935,-0.730287576942613,-10.6668082507239,1 +} + TransformLink: *16 { +a: 0.996978342533112,-0.0766271352767944,0.012748665176332,0,0.0764900963243148,0.997010648282988,0.0109109748234517,0,-0.0135466313235634,-0.00990285870992611,0.999859214558831,0,4.49446249008179,0.270218223333359,10.7318801879883,1 +} + } + Deformer: 734009984, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *30 { +a: 316,317,318,319,320,321,322,324,325,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350 +} + Weights: *30 { +a: 0.5,0.5,0.5,0.5,0.5,0.5,0.75413304567337,0.5,0.5,0.5,0.5,0.5,0.5,0.5,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + Transform: *16 { +a: 0.996978280915291,0.013607533741802,0.0764792812130904,0,-0.0766271305408871,0.0106967497712729,0.997002394405435,0,0.0127486643884062,-0.999850177866797,0.0117071335216886,0,-6.35515806757061,10.6662232522619,-0.738781043258984,1 +} + TransformLink: *16 { +a: 0.996978342533112,-0.0766271352767944,0.012748665176332,0,0.0136075342369738,0.0106967501605226,-0.999850214250878,0,0.0764792879524196,0.997002482260959,0.0117071345533174,0,6.24731540679932,0.1354950517416,10.7542943954468,1 +} + } + Deformer: 734061216, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *11 { +a: 351,352,353,354,355,356,357,358,359,360,361 +} + Weights: *11 { +a: 1,1,1,1,1,1,1,1,1,1,1 +} + Transform: *16 { +a: 0.980066597846768,-1.37959112583754e-006,0.198669375132179,0,1.35226420389575e-006,1.00000005960275,2.73228545131283e-007,0,-0.198669386149625,8.71313787062959e-010,0.980066543497876,0,1.72141107693138,-0.275064531134331,-10.967750847828,1 +} + TransformLink: *16 { +a: 0.980066537857056,1.35226412112388e-006,-0.198669373989105,0,-1.37959096138009e-006,0.999999940395355,8.71313683195969e-010,0,0.198669385006175,2.73228558710917e-007,0.980066592207814,0,0.491858541965485,0.275065183639526,11.0911178588867,1 +} + } + Deformer: 734090864, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *20 { +a: 362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381 +} + Weights: *20 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + Transform: *16 { +a: 0.99990594107672,0.00218489181040349,-0.013546632254996,0,-0.00231914775293368,0.999948229613742,-0.00990285266543933,0,0.0135242962803082,0.00993333665146111,0.999859187833261,0,-2.54744312483231,-0.386627511277356,-10.6668078358601,1 +} + TransformLink: *16 { +a: 0.99990576505661,-0.00231914734467864,0.0135242938995361,0,0.00218489201395478,0.999948322772016,0.00993333757688152,0,-0.0135466326176264,-0.00990285293052926,0.999859214598539,0,2.4035484790802,0.275067806243896,10.7035989761353,1 +} + } + Deformer: 734114288, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *20 { +a: 382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401 +} + Weights: *20 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + Transform: *16 { +a: 4.98763614482686e-008,1.37278596270102e-006,-1.00000005960276,0,-0.0998334116647626,-0.995004212500749,-1.37090709630158e-006,0,-0.995004154232145,0.0998334175111925,8.74227184963973e-008,0,5.69618510459691,-0.0980498106229498,1.8177458242178,1 +} + TransformLink: *16 { +a: 4.98763625942352e-008,-0.0998334139585497,-0.995004177093506,0,1.37278583345587e-006,-0.995004118823017,0.0998334081120684,0,-0.999999940395355,-1.37090693287931e-006,8.74227080749624e-008,0,1.8177455663681,0.471112132072449,5.6775164604187,1 +} + } + Deformer: 734143872, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *19 { +a: 402,403,404,405,406,407,408,409,410,415,416,417,418,419,420,421,422,423,424 +} + Weights: *19 { +a: 0.5,0.5,1,0.5,0.5,1,1,1,1,1,0.5,1,0.5,0.5,1,0.5,1,0.5,1 +} + Transform: *16 { +a: -2.23848325071969e-007,1.35533041760233e-006,-1.00000005960276,0,0.0998334481750812,-0.995004205099762,-1.37090698043266e-006,0,-0.995004146831088,-0.0998334540217564,8.7422718495296e-008,0,3.21055405071079,0.550767599694421,1.81774582171833,1 +} + TransformLink: *16 { +a: -2.23848331880174e-007,0.099833451211452,-0.995004177093506,0,1.35533030008169e-006,-0.995004118822995,-0.0998334453652023,0,-0.999999940395355,-1.37090681701041e-006,8.74227080738612e-008,0,1.81774568557739,0.227497830986977,3.24949955940247,1 +} + } + Video: 734364032, "Video::Map #6", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "D:\Projects\evoland\res\tex\Skeleton01.png" + } + UseMipMap: 0 + Filename: "D:\Projects\evoland\res\tex\Skeleton01.png" + RelativeFilename: "..\tex\Skeleton01.png" + } + Video: 734374128, "Video::Map #9", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "D:\Projects\evoland\res\tex\Sword01.png" + } + UseMipMap: 0 + Filename: "D:\Projects\evoland\res\tex\Sword01.png" + RelativeFilename: "..\tex\Sword01.png" + } + Texture: 733687568, "Texture::Map #6", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::Map #6" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + P: "UVSet", "KString", "", "", "UVChannel_1" + } + Media: "Video::Map #6" + FileName: "D:\Projects\evoland\res\tex\Skeleton01.png" + RelativeFilename: "..\tex\Skeleton01.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "Alpha_Black" + Cropping: 0,0,0,0 + } + Texture: 550260496, "Texture::Map #9", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::Map #9" + Properties70: { + P: "UseMaterial", "bool", "", "",1 + P: "UVSet", "KString", "", "", "UVChannel_1" + } + Media: "Video::Map #9" + FileName: "D:\Projects\evoland\res\tex\Sword01.png" + RelativeFilename: "..\tex\Sword01.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + AnimationStack: 550998480, "AnimStack::Skeleton01_anim_walk", "" { + } + AnimationLayer: 551003008, "AnimLayer::BaseLayer", "" { + } + AnimationCurveNode: 733819952, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0 + P: "d|Y", "Number", "", "A+",0 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 733824096, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0 + P: "d|Y", "Number", "", "A+",0 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 733829344, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1 + P: "d|Y", "Number", "", "A+",1 + P: "d|Z", "Number", "", "A+",1 + } + } + AnimationCurveNode: 550282128, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0 + P: "d|Y", "Number", "", "A+",-0.362284749746323 + P: "d|Z", "Number", "", "A+",5.07679843902588 + } + } + AnimationCurveNode: 550287360, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0 + P: "d|Y", "Number", "", "A+",-0 + P: "d|Z", "Number", "", "A+",-89.9999214528199 + } + } + AnimationCurveNode: 550292576, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.999999940396295 + P: "d|Y", "Number", "", "A+",0.999999940396295 + P: "d|Z", "Number", "", "A+",1 + } + } + AnimationCurveNode: 550317888, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0 + P: "d|Y", "Number", "", "A+",0 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 550317120, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-89.999920542207 + P: "d|Y", "Number", "", "A+",-90 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 550314240, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000000000096 + P: "d|Y", "Number", "", "A+",0.999999940396317 + P: "d|Z", "Number", "", "A+",0.999999940397278 + } + } + AnimationCurveNode: 614274704, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.843459129333496 + P: "d|Y", "Number", "", "A+",-0.00157788395881653 + P: "d|Z", "Number", "", "A+",-0.000277097104117274 + } + } + AnimationCurveNode: 550372736, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",9.99976490472026 + P: "d|Y", "Number", "", "A+",-0.00800177659316424 + P: "d|Z", "Number", "", "A+",0.0449325537120604 + } + } + AnimationCurveNode: 550378000, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000001923014 + P: "d|Y", "Number", "", "A+",0.999999942860045 + P: "d|Z", "Number", "", "A+",0.999999926866741 + } + } + AnimationCurveNode: 550401328, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",2.01283359527588 + P: "d|Y", "Number", "", "A+",-0.00200581550598145 + P: "d|Z", "Number", "", "A+",-1.34110450744629e-007 + } + } + AnimationCurveNode: 550402208, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.00804432185971403 + P: "d|Y", "Number", "", "A+",9.99997997629556 + P: "d|Z", "Number", "", "A+",10.0007319948383 + } + } + AnimationCurveNode: 550401696, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000009936863 + P: "d|Y", "Number", "", "A+",1.00000005665806 + P: "d|Z", "Number", "", "A+",1.0000001032806 + } + } + AnimationCurveNode: 550432592, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",2.55766248703003 + P: "d|Y", "Number", "", "A+",-0.000469207763671875 + P: "d|Z", "Number", "", "A+",1.19209289550781e-007 + } + } + AnimationCurveNode: 550431504, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",5.3360846529616e-007 + P: "d|Y", "Number", "", "A+",-0 + P: "d|Z", "Number", "", "A+",1.70754729250319e-006 + } + } + AnimationCurveNode: 550435920, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1 + P: "d|Y", "Number", "", "A+",1.00000011920929 + P: "d|Z", "Number", "", "A+",1 + } + } + AnimationCurveNode: 550618592, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.589160919189453 + P: "d|Y", "Number", "", "A+",1.19209289550781e-007 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 550619744, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-8.24620636229287 + P: "d|Y", "Number", "", "A+",-9.84654445411995 + P: "d|Z", "Number", "", "A+",-10.1968111900316 + } + } + AnimationCurveNode: 550623344, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.999999999720281 + P: "d|Y", "Number", "", "A+",1.00000009135188 + P: "d|Z", "Number", "", "A+",1.00000002301607 + } + } + AnimationCurveNode: 550648464, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",6.00742816925049 + P: "d|Y", "Number", "", "A+",0 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 550648672, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-4.7182680022964e-018 + P: "d|Y", "Number", "", "A+",3.88251303889589e-019 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 550653216, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1 + P: "d|Y", "Number", "", "A+",0.999999940395355 + P: "d|Z", "Number", "", "A+",0.999999940395355 + } + } + AnimationCurveNode: 733845712, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.000155448913574219 + P: "d|Y", "Number", "", "A+",0.196512758731842 + P: "d|Z", "Number", "", "A+",0.491858839988709 + } + } + AnimationCurveNode: 733843504, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-0.000802550586235054 + P: "d|Y", "Number", "", "A+",-78.5408403127078 + P: "d|Z", "Number", "", "A+",179.955173598875 + } + } + AnimationCurveNode: 733848032, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.999999972592606 + P: "d|Y", "Number", "", "A+",1.00000001906565 + P: "d|Z", "Number", "", "A+",0.999999982280221 + } + } + AnimationCurveNode: 614317968, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.95057189464569 + P: "d|Y", "Number", "", "A+",1.19209289550781e-007 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 733873536, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",41.6915039234789 + P: "d|Y", "Number", "", "A+",38.5954939963913 + P: "d|Z", "Number", "", "A+",46.8499586323026 + } + } + AnimationCurveNode: 733878800, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000004278091 + P: "d|Y", "Number", "", "A+",1.00000012321608 + P: "d|Z", "Number", "", "A+",1.00000008779319 + } + } + AnimationCurveNode: 733904400, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",2.09111094474792 + P: "d|Y", "Number", "", "A+",-4.76837158203125e-007 + P: "d|Z", "Number", "", "A+",-9.5367431640625e-007 + } + } + AnimationCurveNode: 733900880, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-9.33814914040997e-007 + P: "d|Y", "Number", "", "A+",1.70754728838635e-006 + P: "d|Z", "Number", "", "A+",-51.7817859997004 + } + } + AnimationCurveNode: 381089232, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000000241096 + P: "d|Y", "Number", "", "A+",1.00000001236507 + P: "d|Z", "Number", "", "A+",0.99999988079071 + } + } + AnimationCurveNode: 733926448, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.75816583633423 + P: "d|Y", "Number", "", "A+",-1.19209289550781e-007 + P: "d|Z", "Number", "", "A+",-9.5367431640625e-007 + } + } + AnimationCurveNode: 733931664, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-89.9543768697499 + P: "d|Y", "Number", "", "A+",-0 + P: "d|Z", "Number", "", "A+",5.33608528907246e-008 + } + } + AnimationCurveNode: 733936928, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1 + P: "d|Y", "Number", "", "A+",1.0000001382117 + P: "d|Z", "Number", "", "A+",1.00000007860744 + } + } + AnimationCurveNode: 733957968, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.000155448913574219 + P: "d|Y", "Number", "", "A+",0.196515619754791 + P: "d|Z", "Number", "", "A+",-0.491858005523682 + } + } + AnimationCurveNode: 733955024, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-0.000798253230057754 + P: "d|Y", "Number", "", "A+",78.5408439330021 + P: "d|Z", "Number", "", "A+",179.953580977343 + } + } + AnimationCurveNode: 733960304, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000008141803 + P: "d|Y", "Number", "", "A+",1.00000001906561 + P: "d|Z", "Number", "", "A+",1.00000003687575 + } + } + AnimationCurveNode: 733979680, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.95057201385498 + P: "d|Y", "Number", "", "A+",0 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 733984880, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-8.40561713831361 + P: "d|Y", "Number", "", "A+",-47.0340156604356 + P: "d|Z", "Number", "", "A+",21.2129101685565 + } + } + AnimationCurveNode: 733990176, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000009541179 + P: "d|Y", "Number", "", "A+",1.00000014017375 + P: "d|Z", "Number", "", "A+",1.00000006092117 + } + } + AnimationCurveNode: 734009552, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",2.0911111831665 + P: "d|Y", "Number", "", "A+",2.38418579101563e-007 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 734007344, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.70754727344822e-006 + P: "d|Y", "Number", "", "A+",-8.5377354438471e-007 + P: "d|Z", "Number", "", "A+",-75.6999146510359 + } + } + AnimationCurveNode: 734011872, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.0000001193137 + P: "d|Y", "Number", "", "A+",1.00000001115926 + P: "d|Z", "Number", "", "A+",1 + } + } + AnimationCurveNode: 614594048, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.75816512107849 + P: "d|Y", "Number", "", "A+",0 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 734037376, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",89.9543777502026 + P: "d|Y", "Number", "", "A+",-8.53773646251594e-007 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 734042640, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1 + P: "d|Y", "Number", "", "A+",1.00000001901431 + P: "d|Z", "Number", "", "A+",1.00000007859521 + } + } + AnimationCurveNode: 734065968, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-0.843206405639648 + P: "d|Y", "Number", "", "A+",0.317917436361313 + P: "d|Z", "Number", "", "A+",1.79013109207153 + } + } + AnimationCurveNode: 734066848, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-175.022841431811 + P: "d|Y", "Number", "", "A+",9.02715677552457 + P: "d|Z", "Number", "", "A+",128.475853535386 + } + } + AnimationCurveNode: 734066208, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000015345881 + P: "d|Y", "Number", "", "A+",1.00000016547443 + P: "d|Z", "Number", "", "A+",1.00000009008452 + } + } + AnimationCurveNode: 734090608, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",2.44020819664001 + P: "d|Y", "Number", "", "A+",0 + P: "d|Z", "Number", "", "A+",1.19209289550781e-007 + } + } + AnimationCurveNode: 734095776, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.06721711513337e-007 + P: "d|Y", "Number", "", "A+",1.06721685303856e-007 + P: "d|Z", "Number", "", "A+",-31.2054232601002 + } + } + AnimationCurveNode: 734101024, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000019187847 + P: "d|Y", "Number", "", "A+",0.999999946291267 + P: "d|Z", "Number", "", "A+",1 + } + } + AnimationCurveNode: 734119392, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.64455533027649 + P: "d|Y", "Number", "", "A+",-2.38418579101563e-007 + P: "d|Z", "Number", "", "A+",1.19209289550781e-007 + } + } + AnimationCurveNode: 734120544, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-16.8175989360009 + P: "d|Y", "Number", "", "A+",11.4069492062462 + P: "d|Z", "Number", "", "A+",7.79217183846743 + } + } + AnimationCurveNode: 734124144, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.999999977630314 + P: "d|Y", "Number", "", "A+",0.999999950364024 + P: "d|Z", "Number", "", "A+",0.999999984111899 + } + } + AnimationCurveNode: 734149264, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.54465210437775 + P: "d|Y", "Number", "", "A+",1.9879002571106 + P: "d|Z", "Number", "", "A+",5.96046447753906e-008 + } + } + AnimationCurveNode: 734149472, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",7.32502990812576e-006 + P: "d|Y", "Number", "", "A+",-19.9999942411144 + P: "d|Z", "Number", "", "A+",90.0000072685355 + } + } + AnimationCurveNode: 734154016, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.999999958816161 + P: "d|Y", "Number", "", "A+",0.99999994039537 + P: "d|Z", "Number", "", "A+",1.00000001482622 + } + } + AnimationCurveNode: 734173392, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.116105079650879 + P: "d|Y", "Number", "", "A+",0 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 734171184, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-8.53773646251593e-007 + P: "d|Y", "Number", "", "A+",4.26886848570236e-007 + P: "d|Z", "Number", "", "A+",-180 + } + } + AnimationCurveNode: 734175712, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-0.999999940395355 + P: "d|Y", "Number", "", "A+",-1 + P: "d|Z", "Number", "", "A+",-1 + } + } + AnimationCurveNode: 614573040, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-0.843708992004395 + P: "d|Y", "Number", "", "A+",-0.313369303941727 + P: "d|Z", "Number", "", "A+",-1.79013109207153 + } + } + AnimationCurveNode: 734201216, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-169.407506881545 + P: "d|Y", "Number", "", "A+",-0.749073336730562 + P: "d|Z", "Number", "", "A+",-148.357834720399 + } + } + AnimationCurveNode: 734205952, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000009014845 + P: "d|Y", "Number", "", "A+",1.00000022526508 + P: "d|Z", "Number", "", "A+",1.00000009335111 + } + } + AnimationCurveNode: 734224400, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",2.44020795822144 + P: "d|Y", "Number", "", "A+",2.38418579101563e-007 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 734229616, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-4.26886833581839e-007 + P: "d|Y", "Number", "", "A+",4.2688676223615e-007 + P: "d|Z", "Number", "", "A+",-45.9739406804654 + } + } + AnimationCurveNode: 381068592, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000014263653 + P: "d|Y", "Number", "", "A+",0.999999975506291 + P: "d|Z", "Number", "", "A+",1.00000011920929 + } + } + AnimationCurveNode: 734254448, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.64455533027649 + P: "d|Y", "Number", "", "A+",0 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 734259616, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",12.1283143987827 + P: "d|Y", "Number", "", "A+",10.9908368587083 + P: "d|Z", "Number", "", "A+",52.825022483687 + } + } + AnimationCurveNode: 734264864, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.00000012307916 + P: "d|Y", "Number", "", "A+",1.00000006034745 + P: "d|Z", "Number", "", "A+",1.00000008865329 + } + } + AnimationCurveNode: 734283232, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.54465210437775 + P: "d|Y", "Number", "", "A+",1.98789978027344 + P: "d|Z", "Number", "", "A+",0 + } + } + AnimationCurveNode: 734284384, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",7.81727503143985e-006 + P: "d|Y", "Number", "", "A+",15.0000249789351 + P: "d|Z", "Number", "", "A+",90.0000176778328 + } + } + AnimationCurveNode: 734287984, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.999999979355545 + P: "d|Y", "Number", "", "A+",0.999999880790755 + P: "d|Z", "Number", "", "A+",0.999999937208688 + } + } + AnimationCurveNode: 734307360, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0.11610472202301 + P: "d|Y", "Number", "", "A+",2.98023223876953e-008 + P: "d|Z", "Number", "", "A+",2.38418579101563e-007 + } + } + AnimationCurveNode: 734312560, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",0 + P: "d|Y", "Number", "", "A+",2.13443411562898e-007 + P: "d|Z", "Number", "", "A+",1.70754729250319e-006 + } + } + AnimationCurveNode: 734317856, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1 + P: "d|Y", "Number", "", "A+",1 + P: "d|Z", "Number", "", "A+",1 + } + } + AnimationCurveNode: 734347312, "AnimCurveNode::T", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-3.1601185798645 + P: "d|Y", "Number", "", "A+",-2.77757406234741 + P: "d|Z", "Number", "", "A+",5.6705904006958 + } + } + AnimationCurveNode: 734353840, "AnimCurveNode::R", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",-58.1595879290039 + P: "d|Y", "Number", "", "A+",-46.4063230037028 + P: "d|Z", "Number", "", "A+",72.1477983770527 + } + } + AnimationCurveNode: 734357536, "AnimCurveNode::S", "" { + Properties70: { + P: "d", "Compound", "", "" + P: "d|X", "Number", "", "A+",1.0000002890174 + P: "d|Y", "Number", "", "A+",1.0000001594726 + P: "d|Z", "Number", "", "A+",1.00000016292125 + } + } + AnimationCurve: 550261664, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550270784, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550269024, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733688384, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733809232, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733807424, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733813840, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733812080, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733818496, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733816400, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733834288, "AnimCurve::", "" { + Default: -0.362284749746323 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.3622847,-0.3622847,-0.3622847,-0.3622847,-0.3622847,-0.3622847,-0.3622847,-0.3622848,-0.3622848,-0.3622848,-0.3622848,-0.3622848,-0.3622847,-0.3622847,-0.3622847,-0.3622847,-0.3622847,-0.3622847,-0.3622847,-0.3622847,-0.3622847,-0.3622848,-0.3622848,-0.3622848,-0.3622848,-0.3622848,-0.3622848,-0.3622848,-0.3622848,-0.3622848,-0.3622847 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733832528, "AnimCurve::", "" { + Default: 5.07679843902588 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 5.076798,4.948932,4.856494,4.842854,4.919621,5.144726,5.422571,5.704773,5.90762,5.900155,5.775739,5.56435,5.325193,5.129385,4.97117,4.877399,4.821365,4.776541,4.76924,4.808676,4.919621,5.159713,5.439568,5.704515,5.908055,5.968997,5.936743,5.836422,5.659657,5.387339,5.076798 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733838944, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733837184, "AnimCurve::", "" { + Default: -0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733835424, "AnimCurve::", "" { + Default: -89.9999237060547 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992,-89.99992 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550275664, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550273904, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550280160, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550289616, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550277328, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550296032, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550294272, "AnimCurve::", "" { + Default: -89.9999237060547 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -44.99996,-19.68744,7.629395e-005,2.812579,7.629395e-005,7.629395e-005,7.629395e-005,7.629395e-005,7.629395e-005,7.629395e-005,7.629395e-005,7.629395e-005,7.629395e-005,7.629395e-005,7.629395e-005,7.609634e-005,7.629395e-005,7.787472e-005,7.945567e-005,7.96539e-005,7.945694e-005,7.945713e-005,7.945717e-005,7.945721e-005,7.945718e-005,7.945714e-005,7.945687e-005,7.955471e-005,7.945502e-005,7.876343e-005,7.787449e-005 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550300672, "AnimCurve::", "" { + Default: -90 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -90,-90.88115,-92.08785,-94.24886,-96.78006,-99.39989,-101.8295,-103.7402,-104.9999,-105.2912,-104.8408,-103.7289,-102.0788,-100.005,-97.61408,-95.01537,-92.31441,-89.61767,-87.03166,-84.66189,-82.61786,-81.00603,-79.94107,-79.54633,-79.90225,-81.28326,-83.23073,-85.54288,-87.72353,-89.00029,-90 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550298912, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -44.99996,-70.31248,-90,-92.8125,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90,-90 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550305328, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550303568, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550301808, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550308144, "AnimCurve::", "" { + Default: 0.843459129333496 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.8434591,0.8434741,0.8428917,0.8409326,0.8375444,0.8318847,0.8255448,0.8193605,0.8147559,0.8138088,0.8153944,0.81947,0.8248677,0.8306478,0.8360825,0.8401677,0.8427916,0.8433393,0.8423147,0.8397226,0.8364449,0.8331014,0.830482,0.8296213,0.8304052,0.8336728,0.8376002,0.8406106,0.8428035,0.8434155,0.8434591 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550319280, "AnimCurve::", "" { + Default: -0.00157788395881653 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.001577884,-0.00158062,-0.001584053,-0.001589898,-0.001595795,-0.001600148,-0.001602381,-0.001601234,-0.001597166,-0.001589725,-0.001580387,-0.001569886,-0.001560003,-0.001552489,-0.001548171,-0.001548991,-0.001553357,-0.001560807,-0.001569897,-0.001579346,-0.001588196,-0.001595132,-0.001599938,-0.001601774,-0.001601189,-0.001598114,-0.00159356,-0.001588112,-0.00158298,-0.001580089,-0.001577884 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550325680, "AnimCurve::", "" { + Default: -0.000277097104117274 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.0002770971,-0.0132448,-0.0309699,-0.06268917,-0.09972197,-0.1377912,-0.1729231,-0.2002744,-0.2181766,-0.2222863,-0.2157841,-0.1998632,-0.1761422,-0.1461233,-0.1113495,-0.07331389,-0.03366904,0.005982664,0.04399742,0.07871792,0.1085823,0.1320006,0.1474,0.1530789,0.1478335,0.1276968,0.09925604,0.06531607,0.03325659,0.01446064,-0.0002770971 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550323920, "AnimCurve::", "" { + Default: 9.99976444244385 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 9.999764,9.460476,8.659096,7.150486,5.221695,2.979379,0.5195731,-2.059163,-4.65774,-7.17931,-9.518579,-11.57408,-13.23748,-14.37938,-14.96154,-14.85776,-14.2025,-13.05879,-11.51467,-9.654428,-7.55232,-5.286159,-2.929537,-0.5564898,1.756486,3.935177,5.898692,7.568854,8.863298,9.54579,9.999764 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550330320, "AnimCurve::", "" { + Default: -0.0080017764121294 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.008001776,0.9021423,2.152208,4.395321,7.031795,9.774723,12.33889,14.38956,15.78841,16.21149,15.88096,14.87102,13.3016,11.2822,8.918392,6.315382,3.583748,0.8326492,-1.828459,-4.291472,-6.44318,-8.174143,-9.364937,-9.888138,-9.658302,-8.396139,-6.555759,-4.33413,-2.223396,-0.9833882,-0.008001776 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550328560, "AnimCurve::", "" { + Default: 0.0449325554072857 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.04493256,0.05410578,0.06543927,0.08459052,0.1032281,0.1157802,0.1196253,0.1096107,0.08775812,0.0521544,0.009451139,-0.03678903,-0.07921231,-0.1100718,-0.1269842,-0.12287,-0.1040706,-0.0727645,-0.03436065,0.006266266,0.04533459,0.07792139,0.1025759,0.1156113,0.1188127,0.1112937,0.09738249,0.07968955,0.06248175,0.05262268,0.04493256 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550326528, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550332944, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550331184, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550383104, "AnimCurve::", "" { + Default: 2.01283359527588 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 2.012834,2.012833,2.012833,2.012833,2.012833,2.012833,2.012833,2.012833,2.012834,2.012833,2.012833,2.012833,2.012833,2.012833,2.012834,2.012834,2.012834,2.012834,2.012834,2.012833,2.012833,2.012833,2.012834,2.012833,2.012833,2.012834,2.012835,2.012835,2.012834,2.012834,2.012834 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550381344, "AnimCurve::", "" { + Default: -0.00200581550598145 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.002005816,-0.002005814,-0.002005816,-0.002005834,-0.002005845,-0.002005816,-0.002005786,-0.002005799,-0.002005816,-0.002005797,-0.002005786,-0.002005829,-0.002005875,-0.002005883,-0.002005875,-0.00200586,-0.002005845,-0.002005843,-0.002005845,-0.002005849,-0.002005845,-0.002005816,-0.002005786,-0.002005784,-0.002005786,-0.002005769,-0.002005756,-0.002005767,-0.002005786,-0.002005801,-0.002005816 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550379584, "AnimCurve::", "" { + Default: -1.34110450744629e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -1.341105e-007,-1.044245e-007,-8.195639e-008,-8.183997e-008,-8.754432e-008,-8.929055e-008,-8.195639e-008,-4.994217e-008,-1.490116e-008,3.259629e-009,1.490116e-008,2.142042e-008,2.980232e-008,5.401671e-008,7.450581e-008,7.171184e-008,5.960464e-008,4.563481e-008,2.980232e-008,1.396984e-008,0,-4.423782e-009,-1.490116e-008,-5.448237e-008,-9.313226e-008,-9.778887e-008,-1.005828e-007,-1.345761e-007,-1.639128e-007,-1.548324e-007,-1.341105e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550386000, "AnimCurve::", "" { + Default: 0.00804432202130556 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.008044322,0.007768312,0.007359469,0.006590749,0.005611966,0.004481092,0.003246618,0.001960925,0.0006703251,-0.0005777823,-0.001734275,-0.002752464,-0.003577656,-0.00414639,-0.004438273,-0.004390078,-0.004066849,-0.003497135,-0.00272719,-0.001800792,-0.0007539176,0.000375042,0.00154956,0.002732539,0.0038873,0.004978504,0.005965041,0.006808923,0.007465447,0.00781248,0.008044322 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550384240, "AnimCurve::", "" { + Default: 9.99997997283936 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 9.99998,9.663166,9.162304,8.21869,7.012233,5.609373,4.071809,2.462827,0.8441013,-0.722645,-2.174269,-3.449121,-4.481001,-5.191548,-5.555593,-5.4946,-5.090296,-4.379966,-3.418387,-2.256897,-0.9431078,0.4739757,1.947194,3.428909,4.871549,6.227953,7.449245,8.487873,9.292701,9.717352,9.99998 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550390656, "AnimCurve::", "" { + Default: 10.000732421875 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 10.00073,10.00068,10.00061,10.00049,10.00036,10.00023,10.00012,10.00005,10.00001,10,10.00002,10.00007,10.00013,10.00017,10.0002,10.00019,10.00016,10.00012,10.00007,10.00003,10,10,10.00003,10.00009,10.00018,10.00029,10.00041,10.00053,10.00063,10.00069,10.00073 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550388896, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,0.9999999,0.9999998,0.9999999,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550395312, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550393552, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550404992, "AnimCurve::", "" { + Default: 2.55766248703003 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 2.557662,2.557662,2.557662,2.557662,2.557662,2.557662,2.557662,2.557661,2.55766,2.557662,2.557663,2.557662,2.557661,2.557662,2.557662,2.557662,2.557661,2.557662,2.557662,2.557662,2.557662,2.557662,2.557661,2.557661,2.557661,2.557661,2.557661,2.557661,2.557661,2.557662,2.557662 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550411408, "AnimCurve::", "" { + Default: -0.000469207763671875 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.0004692078,-0.0004692525,-0.0004692674,-0.0004691817,-0.0004690886,-0.0004690699,-0.0004690886,-0.0004691482,-0.0004692078,-0.0004692152,-0.0004692078,-0.0004692078,-0.0004692078,-0.0004692078,-0.0004692078,-0.0004692115,-0.0004692078,-0.0004691742,-0.0004691482,-0.0004691891,-0.0004692078,-0.0004690923,-0.0004689693,-0.0004689321,-0.0004689693,-0.0004691631,-0.000469327,-0.0004692227,-0.0004690886,-0.0004691258,-0.0004692078 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550409648, "AnimCurve::", "" { + Default: 1.19209289550781e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.192093e-007,4.842877e-008,0,2.607703e-008,5.960464e-008,3.352761e-008,0,-3.72529e-009,0,0,0,0,0,3.72529e-009,0,-3.166497e-008,-5.960464e-008,-5.058246e-008,-2.980232e-008,-8.556526e-009,4.656613e-009,-8.556526e-009,-2.980232e-008,-5.803304e-008,-5.960464e-008,4.284084e-008,1.192093e-007,-3.72529e-009,-1.192093e-007,-2.980233e-008,1.192093e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550416048, "AnimCurve::", "" { + Default: 5.33608442765399e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 5.336084e-007,1.067217e-007,-2.134434e-007,-2.167784e-007,-1.067217e-007,3.335053e-009,5.336085e-008,-1.675864e-007,-3.201651e-007,6.419978e-008,3.868662e-007,-6.586733e-008,-4.802477e-007,5.252708e-008,5.336086e-007,-1.183944e-007,-7.47052e-007,-2.283014e-007,4.535672e-007,5.806184e-007,4.778506e-007,1.503966e-007,-1.600826e-007,-1.332523e-007,0,1.23397e-007,2.134434e-007,1.467424e-007,1.067217e-007,2.868146e-007,5.336084e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550414288, "AnimCurve::", "" { + Default: -0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,-2.668043e-008,0,2.134434e-007,4.268869e-007,4.735776e-007,4.268868e-007,2.868146e-007,1.067217e-007,-8.671138e-008,-2.134434e-007,-1.000516e-007,-0,-2.267836e-007,-4.268868e-007,-2.53464e-007,-0,1.451009e-007,2.134434e-007,1.214949e-007,2.626355e-008,9.481451e-008,2.134434e-007,3.585443e-007,4.268868e-007,2.801445e-007,0,-5.069281e-007,-8.537735e-007,-5.336084e-007,-0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550412528, "AnimCurve::", "" { + Default: 1.70754731243505e-006 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.707547e-006,1.28066e-006,8.537735e-007,4.268868e-007,0,-5.869693e-007,-8.537735e-007,5.684342e-014,8.537737e-007,5.336085e-007,0,-5.336085e-008,0,0,0,5.336085e-008,0,-5.336084e-007,-8.537735e-007,9.947598e-014,8.537737e-007,5.336086e-007,0,-5.336086e-008,0,0,0,-1.067217e-007,0,7.470519e-007,1.707547e-006 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550418928, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550417168, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550423584, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550428336, "AnimCurve::", "" { + Default: 0.589160919189453 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.5891609,0.5891615,0.5891619,0.5891614,0.5891609,0.5891608,0.5891609,0.5891614,0.5891619,0.5891614,0.5891609,0.5891614,0.5891619,0.5891614,0.5891609,0.5891614,0.5891619,0.5891614,0.5891609,0.5891608,0.5891609,0.5891615,0.5891619,0.5891609,0.58916,0.5891608,0.5891619,0.5891621,0.5891619,0.5891615,0.5891609 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550420592, "AnimCurve::", "" { + Default: 1.19209289550781e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.192093e-007,5.215406e-008,0,-7.450581e-009,0,0,0,0,0,-7.450581e-009,0,6.705523e-008,1.192093e-007,6.705523e-008,0,-7.450581e-009,0,0,0,7.450581e-009,0,-6.705523e-008,-1.192093e-007,-5.960464e-008,0,-5.215406e-008,-1.192093e-007,-1.41561e-007,-1.192093e-007,-1.490116e-008,1.192093e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550398576, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,3.72529e-009,0,-3.72529e-008,-5.960464e-008,9.313217e-010,5.960464e-008,2.8871e-008,-1.490116e-008,-1.210719e-008,0,9.313226e-010,0,-3.72529e-009,0,3.352761e-008,5.960464e-008,3.381865e-008,0,-6.344635e-009,-4.656613e-009,-2.619345e-009,0,2.910383e-010,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550603344, "AnimCurve::", "" { + Default: -8.24620628356934 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -8.246206,-7.765623,-7.050751,-5.70366,-3.980987,-1.977249,0.2191215,2.517666,4.829937,7.06737,9.139865,10.95913,12.43118,13.44448,13.96345,13.87657,13.30007,12.28706,10.91534,9.257745,7.382241,5.358538,3.25427,1.13757,-0.923348,-2.860819,-4.605064,-6.08799,-7.236869,-7.842942,-8.246206 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550601584, "AnimCurve::", "" { + Default: -9.84654426574707 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -9.846544,-9.544538,-9.095122,-8.248121,-7.164418,-5.90307,-4.519387,-3.069755,-1.609995,-0.1955415,1.116067,2.268953,3.202704,3.845948,4.17569,4.120391,3.75432,3.111243,2.241136,1.190791,0.003529036,-1.275932,-2.604983,-3.940315,-5.239304,-6.459394,-7.557075,-8.489807,-9.212121,-9.593122,-9.846544 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550608000, "AnimCurve::", "" { + Default: -10.1968107223511 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -10.19681,-10.19107,-10.18384,-10.17153,-10.15895,-10.14938,-10.14389,-10.145,-10.15171,-10.16474,-10.18143,-10.20047,-10.21848,-10.23214,-10.23996,-10.23839,-10.23033,-10.21658,-10.19988,-10.18268,-10.16673,-10.15443,-10.14622,-10.14369,-10.14586,-10.15301,-10.16305,-10.17477,-10.18574,-10.192,-10.19681 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550606240, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550612656, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550610896, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550617008, "AnimCurve::", "" { + Default: 6.00742816925049 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 6.007428,6.007429,6.007429,6.007429,6.007429,6.007429,6.007428,6.007429,6.007429,6.007429,6.007429,6.007429,6.007428,6.007429,6.007429,6.007429,6.007429,6.007429,6.007429,6.007429,6.007428,6.007429,6.007429,6.007429,6.007429,6.007429,6.007428,6.007429,6.007429,6.007429,6.007428 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550628464, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,-3.72529e-009,0,2.980232e-008,5.960464e-008,6.332994e-008,5.960464e-008,5.960464e-008,5.960464e-008,6.332994e-008,5.960464e-008,2.980232e-008,0,-3.72529e-009,0,0,0,0,0,0,0,0,0,-3.72529e-009,0,3.352761e-008,5.960464e-008,3.352761e-008,0,-3.72529e-009,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550626176, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550632592, "AnimCurve::", "" { + Default: -4.71826799250452e-018 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018,-4.718268e-018 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550630832, "AnimCurve::", "" { + Default: 3.88251308421571e-019 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019,3.882513e-019 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550258736, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550636112, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550634352, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550640768, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550650448, "AnimCurve::", "" { + Default: 0.000155448913574219 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.0001554489,0.000156045,0.0001564026,0.0001558661,0.0001554489,0.000156343,0.0001573563,0.0001575947,0.0001573563,0.000156343,0.0001554489,0.0001558661,0.0001564026,0.0001559258,0.0001554489,0.0001558661,0.0001564026,0.0001564622,0.0001564026,0.000156343,0.0001564026,0.0001569986,0.0001573563,0.000156343,0.0001554489,0.0001562238,0.0001573563,0.0001581311,0.0001583099,0.0001571178,0.0001554489 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550637856, "AnimCurve::", "" { + Default: 0.196512758731842 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.1965128,0.1965127,0.1965126,0.1965127,0.1965127,0.1965126,0.1965125,0.1965126,0.1965126,0.1965126,0.1965125,0.1965126,0.1965128,0.1965127,0.1965126,0.1965127,0.1965127,0.1965126,0.1965126,0.1965126,0.1965126,0.1965125,0.1965124,0.1965126,0.1965127,0.1965126,0.1965125,0.1965125,0.1965125,0.1965126,0.1965128 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550656560, "AnimCurve::", "" { + Default: 0.491858839988709 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.4918588,0.4918589,0.491859,0.4918589,0.4918588,0.4918589,0.4918589,0.4918589,0.4918588,0.4918588,0.4918589,0.4918588,0.4918588,0.4918588,0.4918588,0.4918589,0.4918589,0.4918589,0.4918589,0.4918589,0.4918588,0.4918589,0.4918589,0.491859,0.491859,0.4918589,0.4918588,0.491859,0.4918591,0.491859,0.4918588 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550654800, "AnimCurve::", "" { + Default: -0.000802550581283867 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.0008025506,-0.0008004691,-0.0007993276,-0.0008013084,-0.0008036249,-0.0008038012,-0.0008030878,-0.0008011279,-0.0008002676,-0.0008047456,-0.0008085269,-0.0008042924,-0.0008001334,-0.0008045105,-0.0008089967,-0.0008052616,-0.0008014762,-0.0008055427,-0.0008099369,-0.0008081716,-0.0008050377,-0.0008035216,-0.0008025506,-0.0008020594,-0.0008020134,-0.0008026514,-0.000803088,-0.0008019799,-0.000800939,-0.0008015098,-0.0008025506 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550661200, "AnimCurve::", "" { + Default: -78.5408401489258 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -78.54084,-78.54084,-78.54084,-78.54085,-78.54085,-78.54085,-78.54084,-78.54085,-78.54085,-78.54085,-78.54084,-78.54084,-78.54084,-78.54084,-78.54084,-78.54085,-78.54085,-78.54085,-78.54084,-78.54084,-78.54084,-78.54084,-78.54084,-78.54084,-78.54084,-78.54084,-78.54084,-78.54084,-78.54084,-78.54084,-78.54084 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550659440, "AnimCurve::", "" { + Default: 179.955169677734 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552,179.9552 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550665856, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550664096, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 550662336, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733841712, "AnimCurve::", "" { + Default: 1.95057189464569 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.950572,1.950572,1.950572,1.950571,1.950571,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733853152, "AnimCurve::", "" { + Default: 1.19209289550781e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.192093e-007,8.195639e-008,5.960464e-008,1.005828e-007,1.192093e-007,-7.450579e-009,-1.192093e-007,-4.097819e-008,5.960464e-008,4.470348e-008,0,-1.117587e-008,-5.960464e-008,-2.607703e-007,-4.172325e-007,-3.017485e-007,-1.192093e-007,-1.117587e-008,5.960464e-008,8.195639e-008,5.960464e-008,-5.215406e-008,-1.192093e-007,5.960464e-008,2.384186e-007,1.825392e-007,5.960464e-008,-5.587935e-008,-1.192093e-007,-2.607703e-008,1.192093e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733859568, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,0,0,0,0,-5.960464e-008,0,5.364418e-007,9.536743e-007,5.364418e-007,0,-1.192093e-007,0,5.364418e-007,9.536743e-007,5.364418e-007,0,-1.192093e-007,0,5.364418e-007,9.536743e-007,5.364418e-007,0,-5.960464e-008,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733857808, "AnimCurve::", "" { + Default: 41.6915054321289 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 41.69151,40.70738,37.64831,28.75721,17.00547,2.740095,-9.922936,-15.47773,-17.74703,-18.50532,-18.39145,-18.83541,-19.23834,-19.66817,-19.55452,-18.45522,-16.0537,-11.71822,-5.952108,1.278598,8.993845,16.50152,22.97176,26.80692,29.61819,32.54892,35.405,38.77649,41.45428,41.93614,41.69149 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733856048, "AnimCurve::", "" { + Default: 38.5954933166504 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 38.59549,42.17749,46.0723,51.79499,56.05161,55.00615,51.7998,48.05125,44.49207,42.85376,41.75526,40.19032,38.76603,37.61639,37.15454,37.99194,39.66769,42.15556,44.76305,46.78328,48.23311,48.69117,48.76521,48.96558,49.16302,49.80098,49.6716,47.16639,43.9307,41.23774,38.59549 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733862448, "AnimCurve::", "" { + Default: 46.8499603271484 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 46.84996,44.58276,39.89893,28.25334,13.6149,-3.064937,-17.27894,-22.63123,-23.83631,-23.06987,-21.55256,-21.65599,-22.10299,-22.58131,-22.56778,-21.45082,-19.18346,-15.36179,-10.44502,-4.443209,1.700202,7.275397,11.57145,12.5902,13.48349,16.95673,22.35106,31.09451,39.63179,43.86979,46.84996 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733860688, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733867088, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733865328, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733883904, "AnimCurve::", "" { + Default: 2.09111094474792 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 2.091111,2.091112,2.091112,2.091112,2.091112,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091112,2.091111,2.091111,2.091111,2.091111,2.091111,2.091112,2.091112,2.091112,2.091112,2.091112,2.091112,2.091112,2.091111,2.091111,2.091111,2.091112,2.091112,2.091111 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733882144, "AnimCurve::", "" { + Default: -4.76837158203125e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -4.768372e-007,-2.235174e-007,0,1.583248e-007,2.384186e-007,1.844019e-007,8.940697e-008,2.04891e-008,0,1.359731e-007,2.384186e-007,5.215406e-008,-1.192093e-007,5.215406e-008,2.384186e-007,1.378357e-007,0,1.117587e-008,5.960464e-008,1.15484e-007,1.192093e-007,-4.097819e-008,-2.384186e-007,-3.799796e-007,-4.768372e-007,-5.51343e-007,-4.768372e-007,2.980232e-008,4.768372e-007,3.278255e-007,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733880384, "AnimCurve::", "" { + Default: -9.5367431640625e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -9.536743e-007,-4.172325e-007,0,8.940697e-008,0,-2.384186e-007,-4.768372e-007,-5.662441e-007,-4.768372e-007,2.980232e-008,4.768372e-007,2.384186e-007,0,5.364418e-007,9.536743e-007,2.682209e-007,-4.768372e-007,-3.278255e-007,0,2.980232e-008,0,5.960464e-008,0,-5.066395e-007,-9.536743e-007,-8.046627e-007,-4.768372e-007,-2.086163e-007,0,2.980232e-008,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733886800, "AnimCurve::", "" { + Default: -9.3381493115885e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -9.338149e-007,-1.048874e-006,-8.537735e-007,7.520547e-007,1.707548e-006,-9.071343e-007,-3.415095e-006,-1.814269e-006,0,-1.707547e-006,-3.415095e-006,-1.920991e-006,0,2.134434e-007,0,1.067217e-007,0,-8.537737e-007,-1.707547e-006,-2.241156e-006,-1.707547e-006,1.867629e-006,5.122641e-006,4.42895e-006,2.561321e-006,1.147258e-006,0,-3.860324e-007,-4.268867e-007,-3.660221e-007,-2.267836e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733885040, "AnimCurve::", "" { + Default: 1.70754731243505e-006 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.707547e-006,-1.494104e-006,-3.415095e-006,-1.334022e-006,1.707547e-006,3.681899e-006,4.268868e-006,1.227299e-006,-1.707547e-006,-4.535673e-007,1.707547e-006,2.894826e-006,2.988208e-006,-9.338152e-008,-2.347878e-006,1.400722e-006,5.549529e-006,4.815817e-006,3.415094e-006,4.935878e-006,5.976414e-006,3.14829e-006,0,-2.668042e-007,0,-1.067217e-006,-1.707548e-006,-1.067218e-007,1.707547e-006,1.920991e-006,1.707547e-006 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733891456, "AnimCurve::", "" { + Default: -51.7817878723145 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -51.78179,-52.46676,-53.46348,-55.31581,-57.63918,-60.27874,-63.08922,-65.93547,-68.63228,-70.94186,-72.88681,-74.38542,-75.51285,-76.33141,-76.79799,-76.89168,-76.60822,-75.91586,-74.87621,-73.52925,-71.90804,-70.04823,-67.9819,-65.74891,-63.36155,-60.7724,-58.2005,-55.75771,-53.71802,-52.59076,-51.78178 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733889696, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733896112, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733894352, "AnimCurve::", "" { + Default: 0.99999988079071 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733905872, "AnimCurve::", "" { + Default: 1.75816583633423 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.758166,1.758165,1.758165,1.758165,1.758166,1.758165,1.758165,1.758165,1.758166,1.758166,1.758166,1.758165,1.758165,1.758165,1.758166,1.758165,1.758165,1.758165,1.758165,1.758165,1.758166,1.758166,1.758166,1.758166,1.758166,1.758166,1.758166,1.758166,1.758167,1.758166,1.758166 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733912256, "AnimCurve::", "" { + Default: -1.19209289550781e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -1.192093e-007,-1.266599e-007,-1.192093e-007,-5.960464e-008,0,3.72529e-008,0,-2.682209e-007,-4.768372e-007,-2.384186e-007,0,-2.384186e-007,-4.768372e-007,-2.682209e-007,0,5.960464e-008,0,-2.384186e-007,-4.768372e-007,-5.066395e-007,-4.768372e-007,-5.066395e-007,-4.768372e-007,-2.160669e-007,0,-1.788139e-007,-3.576279e-007,-1.341105e-007,1.192093e-007,9.685754e-008,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733910528, "AnimCurve::", "" { + Default: -9.5367431640625e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -9.536743e-007,-4.172325e-007,0,2.980232e-008,0,2.384186e-007,4.768372e-007,5.662441e-007,4.768372e-007,-2.980232e-008,-4.768372e-007,-2.682209e-007,0,-2.384186e-007,-4.768372e-007,-2.682209e-007,0,2.980232e-008,0,0,0,-2.980232e-008,0,2.682209e-007,4.768372e-007,2.980232e-007,0,-2.980232e-007,-4.768372e-007,-2.980232e-007,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733916944, "AnimCurve::", "" { + Default: -89.9543762207031 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -89.95438,-89.27477,-88.31839,-86.57622,-84.46831,-82.18378,-79.90641,-77.90189,-76.11356,-74.60631,-73.28122,-72.01613,-70.94572,-70.13896,-69.67081,-69.66499,-70.04416,-70.80263,-71.84913,-73.11224,-74.5267,-76.02577,-77.54243,-78.91427,-80.36068,-82.09019,-83.97298,-86.09985,-88.01733,-89.11756,-89.95438 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733915184, "AnimCurve::", "" { + Default: -0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0.2796629,0.6753728,1.398626,2.279122,3.241389,4.212438,5.080695,5.886438,6.625309,7.31964,8.020929,8.637315,9.10891,9.391286,9.401659,9.195205,8.782179,8.214552,7.534699,6.781656,5.995164,5.215481,4.523071,3.837047,3.092257,2.321959,1.482227,0.7394499,0.3170323,-3.415095e-006 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733913424, "AnimCurve::", "" { + Default: 5.33608535135954e-008 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 5.336085e-008,-0.4040924,-0.9716871,-2.004459,-3.251393,-4.598885,-5.936381,-7.106985,-8.136122,-8.97434,-9.689374,-10.35326,-10.90364,-11.31485,-11.54881,-11.54733,-11.34509,-10.94156,-10.38419,-9.709246,-8.949715,-8.139411,-7.312152,-6.557839,-5.742033,-4.731445,-3.612519,-2.334486,-1.175683,-0.5090193,2.668043e-008 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733919824, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733918064, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733924480, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733934176, "AnimCurve::", "" { + Default: 0.000155448913574219 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.0001554489,0.000156045,0.0001564026,0.0001559258,0.0001554489,0.0001558065,0.0001564026,0.0001570582,0.0001573563,0.0001564026,0.0001554489,0.0001558065,0.0001564026,0.0001564622,0.0001564026,0.0001564026,0.0001564026,0.0001564622,0.0001564026,0.0001558065,0.0001554489,0.0001564622,0.0001573563,0.0001564622,0.0001554489,0.0001557469,0.0001564026,0.0001570582,0.0001573563,0.0001565814,0.0001554489 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733921600, "AnimCurve::", "" { + Default: 0.196515619754791 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.1965156,0.1965156,0.1965156,0.1965154,0.1965153,0.1965153,0.1965154,0.1965154,0.1965154,0.1965155,0.1965155,0.1965155,0.1965154,0.1965154,0.1965154,0.1965155,0.1965155,0.1965154,0.1965154,0.1965154,0.1965154,0.1965153,0.1965152,0.1965152,0.1965153,0.1965153,0.1965153,0.1965153,0.1965154,0.1965155,0.1965156 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733899376, "AnimCurve::", "" { + Default: -0.491858005523682 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.491858,-0.4918578,-0.4918577,-0.4918577,-0.4918578,-0.4918578,-0.4918578,-0.4918578,-0.4918578,-0.4918578,-0.4918577,-0.4918578,-0.4918578,-0.4918577,-0.4918576,-0.4918577,-0.4918578,-0.4918578,-0.4918578,-0.4918578,-0.4918577,-0.4918578,-0.4918578,-0.4918577,-0.4918576,-0.4918578,-0.4918579,-0.4918578,-0.4918578,-0.4918579,-0.491858 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733940304, "AnimCurve::", "" { + Default: -0.000798253226093948 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.0007982532,-0.0007961716,-0.00079503,-0.000797078,-0.0007993274,-0.0007988994,-0.000797716,-0.0007964947,-0.0007959701,-0.0007983665,-0.0007999319,-0.0007951603,-0.0007915384,-0.0007983329,-0.0008046994,-0.0007990841,-0.0007928812,-0.0007966791,-0.0008013419,-0.0007993751,-0.0007964427,-0.0007964709,-0.0007971787,-0.0007974262,-0.000797716,-0.000798421,-0.0007987902,-0.0007976823,-0.0007966416,-0.0007972124,-0.0007982532 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733938544, "AnimCurve::", "" { + Default: 78.5408401489258 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084,78.54084 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733944960, "AnimCurve::", "" { + Default: 179.953582763672 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536,179.9536 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733943200, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733949616, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733947856, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733953968, "AnimCurve::", "" { + Default: 1.95057201385498 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950571,1.950571,1.950571,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572,1.950572 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733965424, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,1.639128e-007,2.384186e-007,-7.450581e-009,-2.384186e-007,-8.568168e-008,1.192093e-007,1.080334e-007,5.960464e-008,7.450581e-008,1.192093e-007,2.30968e-007,2.980232e-007,1.601875e-007,0,-2.980232e-008,0,8.940697e-008,1.788139e-007,2.086163e-007,1.788139e-007,2.980232e-008,-1.192093e-007,-1.378357e-007,-1.192093e-007,-1.41561e-007,-1.192093e-007,7.450581e-008,2.384186e-007,1.564622e-007,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733963664, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,-5.960464e-007,-9.536743e-007,-4.768372e-007,0,-4.172325e-007,-9.536743e-007,-1.013279e-006,-9.536743e-007,-1.013279e-006,-9.536743e-007,-4.768372e-007,0,0,0,5.364418e-007,9.536743e-007,5.960464e-007,0,-6.556511e-007,-9.536743e-007,0,9.536743e-007,5.960464e-007,0,-5.960464e-008,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733970064, "AnimCurve::", "" { + Default: -8.40561676025391 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -8.405617,-9.291891,-10.55827,-12.91215,-15.75172,-18.78326,-21.78989,-24.46393,-26.78409,-28.59663,-29.99122,-30.9796,-31.64175,-32.05672,-32.23893,-32.23797,-32.02744,-31.61599,-30.94808,-29.98183,-28.68492,-26.99563,-24.96031,-22.5516,-19.92884,-17.16764,-14.4919,-12.08689,-10.14417,-9.111817,-8.405617 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733968304, "AnimCurve::", "" { + Default: -47.0340156555176 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -47.03402,-46.99319,-46.84718,-46.47701,-45.81875,-44.74477,-43.32727,-41.53983,-39.55082,-37.46433,-35.44693,-33.6553,-32.22323,-31.33993,-30.99584,-31.30001,-32.08579,-33.25011,-34.7113,-36.38706,-38.17609,-39.98042,-41.70774,-43.24608,-44.5565,-45.54762,-46.26472,-46.69272,-46.92128,-47.01164,-47.03402 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733966544, "AnimCurve::", "" { + Default: 21.2129096984863 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 21.21291,22.06607,23.26735,25.48374,28.10677,30.82308,33.41428,35.55547,37.25279,38.35599,39.00931,39.25872,39.24882,39.11649,38.93096,38.83242,38.74485,38.68053,38.51479,38.15162,37.51723,36.49834,35.11749,33.30865,31.22433,28.91944,26.62069,24.50868,22.77665,21.85226,21.21291 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733973072, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,0.9999999,0.9999999,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733971312, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733977728, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733987408, "AnimCurve::", "" { + Default: 2.0911111831665 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 2.091111,2.091111,2.091112,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091112,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091111,2.091112,2.091112,2.091111 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733974816, "AnimCurve::", "" { + Default: 2.38418579101563e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 2.384186e-007,-7.450581e-008,-2.384186e-007,1.043081e-007,4.768372e-007,3.874302e-007,2.384186e-007,3.72529e-007,4.768372e-007,2.235174e-007,0,2.086163e-007,4.768372e-007,5.066395e-007,4.768372e-007,5.066395e-007,4.768372e-007,2.384186e-007,0,0,0,-2.831221e-007,-4.768372e-007,-1.341105e-007,2.384186e-007,1.490116e-007,0,1.192093e-007,2.384186e-007,1.490116e-007,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733993520, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,2.980232e-007,4.768372e-007,2.384186e-007,0,2.682209e-007,4.768372e-007,0,-4.768372e-007,-2.980232e-007,0,5.960464e-008,0,-2.682209e-007,-4.768372e-007,-2.682209e-007,0,0,0,2.682209e-007,4.768372e-007,2.682209e-007,0,-2.980232e-008,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733991760, "AnimCurve::", "" { + Default: 1.70754731243505e-006 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.707547e-006,-1.067215e-007,-1.707547e-006,-2.934847e-006,-3.415095e-006,-2.241156e-006,-8.537738e-007,-7.737324e-007,-8.537735e-007,-5.669591e-008,4.268868e-007,-6.369951e-007,-2.081073e-006,-3.391749e-006,-3.841981e-006,-1.837614e-006,5.336084e-007,1.607496e-006,1.707547e-006,-3.335066e-008,-1.707547e-006,-9.071344e-007,0,-1.120578e-006,-2.561321e-006,-3.14829e-006,-3.415094e-006,-3.681899e-006,-3.415094e-006,-1.920991e-006,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733998160, "AnimCurve::", "" { + Default: -8.53773542530689e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -8.537735e-007,-3.041569e-006,-4.268868e-006,-2.241156e-006,-0,-6.93691e-007,-1.707547e-006,-1.28066e-006,-0,3.415094e-006,5.122642e-006,-2.134429e-007,-6.830189e-006,-1.067217e-005,-1.195283e-005,-8.324292e-006,-3.415094e-006,-5.336083e-007,1.707547e-006,3.841982e-006,5.122643e-006,4.589034e-006,3.415095e-006,2.668043e-006,1.707547e-006,1.421085e-013,-1.707547e-006,-2.988207e-006,-3.415094e-006,-2.027712e-006,-0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733996400, "AnimCurve::", "" { + Default: -75.6999130249023 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -75.69991,-75.06635,-74.12614,-72.35693,-70.09937,-67.48065,-64.61897,-61.63553,-58.64857,-55.77637,-53.14006,-50.85782,-49.05673,-47.8997,-47.39746,-47.67224,-48.55257,-49.93476,-51.73778,-53.87334,-56.25949,-58.81194,-61.44944,-64.09001,-66.65168,-69.05322,-71.21036,-73.04118,-74.45747,-75.20399,-75.69991 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734002816, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734001056, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 733999296, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734005552, "AnimCurve::", "" { + Default: 1.75816512107849 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.758165,1.758165,1.758166,1.758165,1.758165,1.758165,1.758166,1.758166,1.758166,1.758165,1.758165,1.758165,1.758165,1.758166,1.758166,1.758166,1.758166,1.758166,1.758166,1.758166,1.758166,1.758166,1.758165,1.758165,1.758166,1.758165,1.758165,1.758165,1.758165,1.758165,1.758165 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734016992, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,-2.831221e-007,-4.768372e-007,-4.172325e-007,-2.384186e-007,2.235174e-008,2.384186e-007,2.235174e-007,1.192093e-007,-7.450579e-009,-1.192093e-007,-1.41561e-007,-1.192093e-007,-4.470348e-008,0,-1.303852e-007,-2.384186e-007,-1.229346e-007,5.960464e-008,2.495944e-007,3.576279e-007,2.123415e-007,0,-1.564622e-007,-2.384186e-007,-1.043081e-007,0,-2.533197e-007,-4.768372e-007,-2.980232e-007,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734023408, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,-2.980232e-008,0,2.682209e-007,4.768372e-007,2.384186e-007,0,2.384186e-007,4.768372e-007,2.682209e-007,0,-2.980232e-008,0,2.980232e-008,0,-2.682209e-007,-4.768372e-007,-2.682209e-007,0,2.980232e-008,0,0,0,2.980232e-008,0,-2.682209e-007,-4.768372e-007,-2.682209e-007,0,2.980232e-008,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734021648, "AnimCurve::", "" { + Default: 89.9543762207031 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438,89.95438 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734019888, "AnimCurve::", "" { + Default: -8.53773656217527e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -8.537737e-007,-9.071344e-007,-8.537735e-007,-3.20165e-007,-0,-9.071346e-007,-1.707547e-006,-1.173939e-006,-0,1.920991e-006,3.415095e-006,2.881486e-006,1.707547e-006,6.403303e-007,0,7.470521e-007,1.707548e-006,1.814269e-006,1.707547e-006,1.814269e-006,1.707547e-006,7.47052e-007,0,9.604953e-007,1.707547e-006,1.067217e-007,-1.707547e-006,-2.027713e-006,-1.707547e-006,-9.604954e-007,-0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734026288, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,2.241156e-006,3.415094e-006,9.604948e-007,-1.707548e-006,-1.120578e-006,0,-3.735259e-007,-8.537737e-007,-4.835828e-007,0,8.337634e-008,5.336085e-008,3.668559e-008,0,-3.66856e-008,-1.067217e-007,-2.467939e-007,-4.268868e-007,-6.069797e-007,-8.537737e-007,-1.200619e-006,-1.707547e-006,-2.934847e-006,-3.415095e-006,-8.537736e-007,1.707547e-006,1.173939e-006,0,-1.067217e-007,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734024528, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734030928, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734029168, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734047744, "AnimCurve::", "" { + Default: -0.843206405639648 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.8432064,-0.8721069,-0.9117246,-0.9827665,-1.065979,-1.151932,-1.231865,-1.295109,-1.337962,-1.350929,-1.340729,-1.30981,-1.261489,-1.198823,-1.125041,-1.043153,-0.9568744,-0.8696947,-0.7852945,-0.70734,-0.6393638,-0.5849375,-0.5476098,-0.5312131,-0.5384674,-0.5780595,-0.6359215,-0.706129,-0.7729383,-0.8122441,-0.8432064 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734045984, "AnimCurve::", "" { + Default: 0.317917436361313 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.3179174,0.3010863,0.2758918,0.2280234,0.1669587,0.09620345,0.01936352,-0.05950342,-0.1382467,-0.2141752,-0.284853,-0.3481691,-0.4004578,-0.4380282,-0.4588434,-0.4584109,-0.4404059,-0.4059623,-0.3582121,-0.2997097,-0.2333225,-0.1620128,-0.08805102,-0.01405807,0.0580548,0.1264288,0.1882857,0.2411812,0.2822555,0.3037307,0.3179174 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734044224, "AnimCurve::", "" { + Default: 1.79013109207153 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.790131,1.792808,1.794677,1.795538,1.792758,1.78261,1.76817,1.749929,1.731923,1.718619,1.709217,1.704557,1.704195,1.708192,1.715865,1.727321,1.740251,1.752677,1.763712,1.771559,1.77698,1.77962,1.781048,1.782563,1.78462,1.788999,1.793025,1.794152,1.793774,1.792227,1.790131 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734050640, "AnimCurve::", "" { + Default: -175.022842407227 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 4.977158,4.560419,4.0289,3.196136,2.162399,0.9358244,-0.393631,-1.690233,-3.083176,-4.686419,-6.409927,-8.322016,-10.0616,-11.40649,-12.00832,-11.07033,-9.715485,-8.800538,-8.327408,-9.04284,-9.569107,-8.306282,-6.667709,-5.763259,-4.903427,-3.786388,-2.358978,-0.2693786,1.888275,3.505115,4.977158 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734048880, "AnimCurve::", "" { + Default: 9.02715682983398 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 170.9728,171.3133,171.8539,172.9856,174.3359,175.8908,176.9647,176.6215,175.5984,174.2295,172.7883,171.6995,170.8438,170.3633,169.8975,168.8074,168.0699,168.3498,169.9449,174.2799,178.6388,180.4503,180.7053,179.181,176.9473,175.041,173.3386,172.0651,171.2127,170.9749,170.9728 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734055296, "AnimCurve::", "" { + Default: 128.475860595703 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -51.52414,-50.99696,-49.72394,-47.40733,-41.95706,-30.58434,-15.08755,6.683973,25.67188,30.65184,30.27238,29.59104,28.15649,26.76366,26.73132,31.20592,35.49942,37.52088,32.62543,12.20295,-13.94177,-40.52601,-62.59377,-71.08535,-73.02912,-72.41485,-69.29862,-64.78746,-59.71834,-55.53461,-51.52414 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734053536, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734059952, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,0.9999999,0.9999998,0.9999999,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734058192, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734069984, "AnimCurve::", "" { + Default: 2.44020819664001 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 2.440208,2.440208,2.440207,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440207,2.440207,2.440207,2.440207,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440207,2.440208,2.440208 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734076400, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,1.639128e-007,2.384186e-007,0,-2.384186e-007,-1.490116e-007,0,1.490116e-008,0,0,0,0,0,0,0,0,0,7.450581e-009,0,-6.705523e-008,-1.192093e-007,-6.705523e-008,0,7.450581e-009,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734074640, "AnimCurve::", "" { + Default: 1.19209289550781e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.192093e-007,-1.490116e-008,-1.192093e-007,-1.490116e-007,-1.192093e-007,0,1.192093e-007,1.41561e-007,1.192093e-007,5.960464e-008,0,-1.490116e-008,0,7.450581e-008,1.192093e-007,0,-1.192093e-007,-6.705523e-008,0,-5.960464e-008,-1.192093e-007,-6.705523e-008,0,7.450581e-009,0,-7.450581e-009,0,5.960464e-008,1.192093e-007,1.266599e-007,1.192093e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734072880, "AnimCurve::", "" { + Default: 1.06721714132618e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.067217e-007,2.668043e-008,-5.336085e-008,-1.434073e-007,-2.134434e-007,-2.334537e-007,-2.134434e-007,-1.334021e-007,-5.336085e-008,-2.668042e-008,-5.336085e-008,-2.067733e-007,-3.201651e-007,-1.767578e-007,0,2.001032e-008,0,-1.334021e-008,0,1.467423e-007,2.134434e-007,-9.338145e-008,-4.268868e-007,-4.669074e-007,-4.268867e-007,-4.585698e-007,-4.268868e-007,-1.750903e-007,8.004127e-008,1.23397e-007,1.067217e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734079296, "AnimCurve::", "" { + Default: 1.06721685710909e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.067217e-007,4.669074e-008,0,-4.669074e-008,0,3.601858e-007,6.403303e-007,3.468456e-007,0,7.337115e-008,2.134434e-007,1.842617e-007,1.067217e-007,5.836354e-009,-6.670106e-008,-8.337615e-010,5.336085e-008,-6.982769e-008,-2.134434e-007,-2.144857e-007,-2.567991e-007,-5.846765e-007,-8.537736e-007,-7.176617e-007,-4.268868e-007,-9.338148e-008,2.134434e-007,3.801961e-007,4.268868e-007,3.001548e-007,1.067217e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734077536, "AnimCurve::", "" { + Default: -31.2054233551025 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -31.20542,-47.05935,-62.71805,-80.91916,-92.66891,-89.00777,-72.57062,-35.71552,-0.3134116,10.79729,8.160958,-8.025,-29.5581,-48.57059,-63.86084,-69.49179,-71.8019,-74.60923,-79.53793,-91.15654,-104.4499,-116.5523,-125.5836,-128.0257,-125.9264,-121.1997,-110.7299,-89.0993,-65.12798,-47.43674,-31.20542 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734083952, "AnimCurve::", "" { + Default: 1.00000023841858 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,0.9999999,0.9999998,0.9999999,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734082192, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734088608, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734098000, "AnimCurve::", "" { + Default: 1.64455533027649 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.644555,1.644555,1.644556,1.644556,1.644556,1.644556,1.644556,1.644555,1.644555,1.644555,1.644555,1.644555,1.644556,1.644556,1.644556,1.644555,1.644555,1.644555,1.644556,1.644556,1.644556,1.644555,1.644555,1.644556,1.644556,1.644556,1.644556,1.644555,1.644555,1.644555,1.644555 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734085696, "AnimCurve::", "" { + Default: -2.38418579101563e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -2.384186e-007,-1.117587e-007,0,8.195639e-008,1.192093e-007,6.705523e-008,0,-7.450581e-009,0,0,0,-2.980232e-008,0,2.682209e-007,4.768372e-007,2.682209e-007,0,-2.980232e-008,0,0,0,0,0,-1.490116e-008,0,1.192093e-007,2.384186e-007,2.831221e-007,2.384186e-007,2.980233e-008,-2.384186e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734063264, "AnimCurve::", "" { + Default: 1.19209289550781e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.192093e-007,-2.235175e-008,-1.192093e-007,-7.450581e-008,0,1.490116e-008,0,-6.705523e-008,-1.192093e-007,-6.705523e-008,0,7.450581e-009,0,-2.235174e-008,0,2.011657e-007,3.576279e-007,2.011657e-007,0,-2.235174e-008,0,7.450581e-009,0,-5.215406e-008,-1.192093e-007,-1.862645e-007,-2.384186e-007,-2.682209e-007,-2.384186e-007,-8.195639e-008,1.192093e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734104144, "AnimCurve::", "" { + Default: -16.8175983428955 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -16.8176,-17.39377,-18.0701,-19.19139,-20.12387,-20.11598,-19.86583,-19.88276,-19.98156,-20.24474,-20.37848,-20.11873,-19.45863,-18.49427,-16.65282,-13.07581,-8.716178,-3.993326,0.3505605,3.519596,5.255486,5.099603,2.857068,-2.686841,-8.931221,-13.60383,-16.9334,-18.02799,-17.97735,-17.53521,-16.8176 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734102384, "AnimCurve::", "" { + Default: 11.4069490432739 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 11.40695,9.802973,7.998012,5.283942,2.981194,2.668344,2.862817,2.619653,1.904585,0.1817818,-1.98903,-4.234581,-6.531329,-8.687938,-10.83453,-13.08738,-15.29668,-17.43963,-19.25155,-20.49776,-21.06545,-21.52201,-19.5922,-11.67492,-2.315096,5.179222,10.69855,12.29853,12.17571,11.9317,11.40695 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734108800, "AnimCurve::", "" { + Default: 7.79217195510864 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 7.792172,18.80814,29.82578,41.80986,51.87286,58.58644,58.53785,43.766,26.48754,16.27754,13.09973,23.32702,37.30697,48.00862,53.94038,49.60531,39.98851,28.8826,14.36808,-6.458259,-26.85269,-43.85304,-49.01783,-27.18961,4.445824,37.35408,60.73837,54.78122,38.01023,23.36932,7.792172 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734107040, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734113456, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999998,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734111696, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734117808, "AnimCurve::", "" { + Default: 1.54465210437775 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544651,1.544652,1.544653,1.544652,1.544652,1.544652,1.544652,1.544652,1.544653,1.544652,1.544652,1.544652,1.544652 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734129264, "AnimCurve::", "" { + Default: 1.9879002571106 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734127504, "AnimCurve::", "" { + Default: 5.96046447753906e-008 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 5.960464e-008,-7.078052e-008,-1.788139e-007,-2.384186e-007,-2.384186e-007,-1.229346e-007,0,2.980232e-008,0,-1.192093e-007,-2.384186e-007,-2.831221e-007,-2.384186e-007,2.980232e-008,2.384186e-007,1.490116e-008,-2.384186e-007,-1.490116e-007,0,1.490116e-008,0,7.450581e-009,0,-6.705523e-008,-1.192093e-007,-7.450581e-008,0,7.078052e-008,1.192093e-007,1.005828e-007,5.960464e-008 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734133904, "AnimCurve::", "" { + Default: 7.32502985556494e-006 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 7.32503e-006,1.942941,3.864994,5.744211,7.562939,9.300635,10.94402,12.52686,13.88742,14.71611,15.49025,16.78864,17.99723,18.63635,18.88172,18.66453,18.23864,17.89287,17.45346,16.81296,16.06133,15.18848,14.38715,13.92679,13.56708,13.45,12.69817,10.11982,6.800071,3.456412,7.32503e-006 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734132144, "AnimCurve::", "" { + Default: -19.9999942779541 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -19.99999,-19.86317,-19.63801,-19.18892,-18.56935,-17.78387,-16.8436,-15.69016,-14.53655,-13.77492,-12.80946,-10.86733,-8.871817,-7.446627,-6.717706,-7.301091,-8.350216,-9.10338,-9.922019,-10.97566,-12.07833,-13.14557,-14.04237,-14.5149,-14.83513,-15.05303,-15.58087,-17.19194,-18.85315,-19.55941,-19.99999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734130384, "AnimCurve::", "" { + Default: 90.0000076293945 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 90.00001,84.31059,78.63371,72.98303,67.36764,61.79969,56.28354,50.58825,45.4319,42.19643,38.65939,32.01111,25.39521,21.00313,18.88173,20.61643,23.783,26.10481,28.7246,32.21363,36.00969,39.95839,43.40745,45.30684,46.69543,47.32298,50.00684,58.81714,69.74535,79.84042,90.00001 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734136912, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734135152, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999998,0.9999999,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734141568, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734151248, "AnimCurve::", "" { + Default: 0.116105079650879 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.1161051,0.1161051,0.1161051,0.1161047,0.1161044,0.1161044,0.1161046,0.1161046,0.1161046,0.1161046,0.1161046,0.1161046,0.1161046,0.1161046,0.1161046,0.1161045,0.1161044,0.1161046,0.1161048,0.1161048,0.1161047,0.1161046,0.1161046,0.1161047,0.1161048,0.1161046,0.1161044,0.1161042,0.1161041,0.1161045,0.1161051 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734138656, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,3.72529e-008,5.960464e-008,3.352761e-008,0,-3.72529e-009,0,-4.656613e-010,0,1.164153e-008,7.450581e-009,-7.031485e-008,-1.192093e-007,-4.656595e-010,1.192093e-007,8.940697e-008,0,-1.41561e-007,-2.384186e-007,-1.341105e-007,0,1.490116e-008,0,0,0,-7.450581e-009,0,6.705523e-008,1.192093e-007,7.450581e-008,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734157360, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,1.490116e-008,0,-1.490116e-007,-2.384186e-007,1.490116e-008,2.384186e-007,7.450581e-009,-2.384186e-007,-7.450581e-008,1.192093e-007,1.490116e-008,-1.192093e-007,-8.940697e-008,0,1.452863e-007,2.384186e-007,1.005828e-007,-5.960464e-008,-3.352761e-008,0,-1.15484e-007,-2.384186e-007,-2.682209e-007,-2.384186e-007,-1.341105e-007,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734155600, "AnimCurve::", "" { + Default: -8.53773656217527e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -8.537737e-007,-3.751935e-007,-0,7.003612e-008,2.668042e-008,2.084386e-010,-2.668043e-008,-3.189145e-008,-3.335053e-009,1.098483e-007,2.134434e-007,2.103168e-007,1.600826e-007,7.670623e-008,0,9.671655e-008,0,-8.537737e-007,-1.707547e-006,-1.920991e-006,-1.707547e-006,-8.587763e-007,-0,1.517449e-007,8.004128e-008,4.502322e-008,0,4.835827e-008,0,-3.735259e-007,-8.537737e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734162000, "AnimCurve::", "" { + Default: 4.26886856530473e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 4.268869e-007,2.201135e-007,5.336085e-008,3.335048e-009,0,-3.335053e-009,0,0,0,0,0,-5.336085e-008,0,5.336085e-007,8.537737e-007,-1.067216e-007,-8.537735e-007,3.601858e-007,1.707547e-006,1.560805e-006,1.067217e-006,9.738355e-007,8.537737e-007,4.135466e-007,0,-5.336085e-008,0,-2.668043e-008,0,1.86763e-007,4.268869e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734160240, "AnimCurve::", "" { + Default: -180 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734166656, "AnimCurve::", "" { + Default: -0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.9999999,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9999999,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734164896, "AnimCurve::", "" { + Default: -1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9999999,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734163136, "AnimCurve::", "" { + Default: -1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-0.9999999,-1,-1,-1,-1,-1,-1,-1,-1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734179520, "AnimCurve::", "" { + Default: -0.843708992004395 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.843709,-0.8148096,-0.7751908,-0.7041427,-0.6209173,-0.5349433,-0.4549799,-0.3916948,-0.3487916,-0.335768,-0.3459096,-0.3767712,-0.4250422,-0.4876724,-0.5614347,-0.6433251,-0.7296243,-0.8168401,-0.9012871,-0.9792944,-1.047326,-1.101804,-1.13918,-1.155617,-1.148396,-1.108827,-1.050981,-0.9807811,-0.9139752,-0.8746709,-0.843709 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734168128, "AnimCurve::", "" { + Default: -0.313369303941727 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -0.3133693,-0.2964281,-0.2710687,-0.2228878,-0.1614225,-0.0901989,-0.0128471,0.06655216,0.1458248,0.2222546,0.2933877,0.3570913,0.4096865,0.4474634,0.4683816,0.4679328,0.4498114,0.4151613,0.3671258,0.308269,0.2414726,0.1697099,0.09526953,0.02078792,-0.05180463,-0.1206308,-0.1828951,-0.236135,-0.2774753,-0.2990901,-0.3133693 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734185920, "AnimCurve::", "" { + Default: -1.79013109207153 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -1.790131,-1.793681,-1.79684,-1.800122,-1.800413,-1.7938,-1.783197,-1.768919,-1.754858,-1.74532,-1.739373,-1.737713,-1.739759,-1.745406,-1.753918,-1.765235,-1.777229,-1.788007,-1.796797,-1.801909,-1.804211,-1.803448,-1.801302,-1.799179,-1.797658,-1.798635,-1.799571,-1.798047,-1.795601,-1.79296,-1.790131 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734184160, "AnimCurve::", "" { + Default: -169.407501220703 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 10.5925,10.20607,9.524521,8.189868,6.095581,2.862411,-1.049469,-5.611253,-9.908081,-13.01972,-14.93349,-14.9225,-14.20914,-13.95691,-13.61546,-12.94903,-12.17737,-11.4756,-10.74184,-10.10072,-9.047852,-7.084666,-4.318344,-0.1975508,3.800735,6.044531,7.550186,8.839734,9.764145,10.26492,10.5925 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734190560, "AnimCurve::", "" { + Default: -0.749073326587677 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -179.2509,-180.0496,-181.1273,-183.083,-185.2355,-187.3537,-188.6864,-188.4238,-186.5096,-181.7867,-176.7473,-173.7988,-172.0384,-171.6243,-171.7801,-171.5489,-171.6306,-172.4248,-173.8758,-176.2184,-178.9809,-182.1708,-184.5854,-184.5575,-183.4881,-182.1372,-180.7602,-179.949,-179.4534,-179.2831,-179.2509 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734188800, "AnimCurve::", "" { + Default: -148.357833862305 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 31.64217,32.15463,31.75264,29.53694,24.54745,14.94429,2.467621,-11.49296,-27.72556,-49.8178,-67.98148,-70.79517,-66.74619,-59.12432,-52.10085,-52.86186,-55.65269,-57.38472,-57.24592,-53.30597,-45.83113,-34.45973,-19.14531,3.52659,23.81364,30.24221,31.4207,32.42139,32.37909,32.11658,31.64217 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734195216, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999998,0.9999999,0.9999999,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734193456, "AnimCurve::", "" { + Default: 1.00000023841858 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734191696, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734211072, "AnimCurve::", "" { + Default: 2.44020795822144 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 2.440208,2.440208,2.440207,2.440207,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440208,2.440207,2.440207,2.440207,2.440207,2.440208,2.440208 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734209312, "AnimCurve::", "" { + Default: 2.38418579101563e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 2.384186e-007,-4.470349e-008,-2.384186e-007,-1.499429e-007,0,3.818423e-008,1.490116e-008,-1.555309e-007,-2.384186e-007,1.331791e-007,4.768372e-007,2.831221e-007,0,-2.980232e-008,0,0,0,0,0,0,0,1.490116e-008,0,-1.192093e-007,-2.384186e-007,-2.682209e-007,-2.384186e-007,-1.341105e-007,0,1.192093e-007,2.384186e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734215728, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,-1.490116e-008,0,1.341105e-007,2.384186e-007,1.192093e-007,0,1.043081e-007,2.384186e-007,2.682209e-007,2.384186e-007,1.043081e-007,0,1.341105e-007,2.384186e-007,1.490116e-008,-2.384186e-007,-2.831221e-007,-2.384186e-007,-1.192093e-007,0,1.490116e-008,0,0,0,0,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734213968, "AnimCurve::", "" { + Default: -4.26886828108763e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -4.268868e-007,8.804541e-007,1.707547e-006,9.871759e-007,0,-1.600825e-007,0,5.336084e-007,8.537735e-007,4.335573e-008,-8.537734e-007,-9.638302e-007,-6.93691e-007,1.667529e-008,6.403303e-007,4.702425e-007,1.067217e-007,-5.336086e-008,-1.067217e-007,8.004128e-008,2.134434e-007,-1.26732e-007,-4.268868e-007,-1.200619e-007,2.134434e-007,-2.668044e-008,-2.134434e-007,3.73526e-007,8.537737e-007,3.601858e-007,-4.268868e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734212208, "AnimCurve::", "" { + Default: 4.26886771265345e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 4.268868e-007,-3.168303e-008,-3.068249e-007,4.085442e-008,4.268869e-007,2.726406e-007,0,-1.467424e-007,-2.134434e-007,9.33815e-008,-0,-1.907651e-006,-3.415095e-006,-1.920991e-006,-0,2.134434e-007,0,5.336085e-008,0,-5.069281e-007,-8.537735e-007,-1.867629e-007,4.268869e-007,-1.067217e-007,-8.537737e-007,-1.2273e-006,-1.280661e-006,-6.93691e-007,-0,2.668042e-007,4.268868e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734218624, "AnimCurve::", "" { + Default: -45.9739418029785 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -45.97394,-51.24889,-57.48975,-66.79851,-76.73285,-85.248,-93.25323,-101.4347,-108.4169,-115.5555,-115.3428,-96.7243,-71.69623,-45.91551,-27.34506,-29.83648,-41.38073,-55.75994,-69.45234,-76.59402,-77.99344,-73.33234,-60.12692,-29.48984,-0.3134151,8.446586,5.867804,-7.88519,-25.02896,-36.12344,-45.97394 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734216864, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734223264, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734221504, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734233824, "AnimCurve::", "" { + Default: 1.64455533027649 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.644555,1.644555,1.644555,1.644555,1.644555,1.644555,1.644556,1.644555,1.644555,1.644555,1.644556,1.644556,1.644556,1.644555,1.644555,1.644555,1.644555,1.644555,1.644555,1.644555,1.644555,1.644556,1.644556,1.644555,1.644555,1.644555,1.644555,1.644555,1.644555,1.644555,1.644555 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734240240, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,3.129244e-007,4.768372e-007,1.192093e-007,-2.384186e-007,-4.470349e-008,2.384186e-007,2.831221e-007,2.384186e-007,1.043081e-007,0,1.341105e-007,2.384186e-007,0,-2.384186e-007,-1.41561e-007,0,-4.842877e-008,-1.192093e-007,-1.005828e-007,-5.960464e-008,-3.352761e-008,0,7.078052e-008,1.192093e-007,6.705523e-008,0,-7.450581e-009,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734238480, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,-1.490116e-007,-2.384186e-007,-1.192093e-007,0,-1.341105e-007,-2.384186e-007,1.490116e-008,2.384186e-007,1.490116e-008,-2.384186e-007,-1.341105e-007,0,-1.192093e-007,-2.384186e-007,-1.341105e-007,0,1.490116e-008,0,1.490116e-008,0,-1.490116e-007,-2.384186e-007,2.980232e-008,2.384186e-007,-1.192093e-007,-4.768372e-007,-2.831221e-007,0,2.980232e-008,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734236720, "AnimCurve::", "" { + Default: 12.1283140182495 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 12.12831,5.123523,-1.721505,-9.169843,-14.29321,-13.4452,-9.543264,-4.19642,2.316466,9.972465,16.39475,18.45963,18.38475,17.02023,15.34504,14.91968,14.84969,14.73398,14.65301,14.52369,14.43559,14.48724,14.56863,14.64936,14.58919,14.15385,13.59506,13.08068,12.62809,12.349,12.12831 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734243136, "AnimCurve::", "" { + Default: 10.990837097168 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 10.99084,11.88494,12.45852,11.77829,11.36195,12.8559,14.94081,17.63671,18.57201,13.95516,8.0661,4.365737,1.519614,-0.8710979,-2.152376,-1.445112,0.176611,2.066543,3.820286,4.647056,5.059751,5.34715,5.39082,4.920362,4.680458,5.551628,6.855948,8.283081,9.610783,10.38673,10.99084 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734241376, "AnimCurve::", "" { + Default: 52.825023651123 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 52.82502,35.56851,17.99338,-3.854731,-19.38713,-15.90454,-3.693034,11.50533,28.75777,48.7646,60.88455,49.52185,30.24033,12.62188,-0.9834082,-3.123002,0.4776804,6.891168,15.17614,23.7829,31.60913,37.96,40.06342,32.26763,22.51686,16.44915,15.33132,24.94334,37.38372,45.51755,52.82499 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734247792, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734246032, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734252448, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734261840, "AnimCurve::", "" { + Default: 1.54465210437775 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.544652,1.544653,1.544653,1.544653,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652,1.544652 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734249536, "AnimCurve::", "" { + Default: 1.98789978027344 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.987901,1.987901,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879,1.9879 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734226592, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,0,0,0,0,1.490116e-008,0,-1.266599e-007,-2.384186e-007,-2.011657e-007,-1.192093e-007,-1.776357e-015,0,-4.544854e-007,-8.34465e-007,-5.215406e-007,-1.192093e-007,-1.639128e-007,-2.384186e-007,2.235174e-008,2.384186e-007,1.490116e-008,-2.384186e-007,-1.639128e-007,0,1.341105e-007,2.384186e-007,2.980232e-007,2.384186e-007,-7.450581e-008,-4.768372e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734267984, "AnimCurve::", "" { + Default: 7.81727521825815e-006 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 7.817275e-006,7.055459e-006,6.706873e-006,7.817276e-006,8.902319e-006,8.428837e-006,7.589039e-006,7.068544e-006,6.85396e-006,7.408154e-006,7.987967e-006,7.802368e-006,7.457836e-006,7.331726e-006,7.320394e-006,7.503944e-006,7.708481e-006,7.746643e-006,7.738934e-006,7.751461e-006,7.760065e-006,7.760853e-006,7.759126e-006,7.76422e-006,7.76013e-006,7.705235e-006,7.685713e-006,7.826509e-006,7.969698e-006,7.963269e-006,7.914433e-006 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734266224, "AnimCurve::", "" { + Default: 15.0000247955322 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 15.00002,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003,15.00003 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734272640, "AnimCurve::", "" { + Default: 90.0000152587891 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002,90.00002 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734270880, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734277296, "AnimCurve::", "" { + Default: 0.99999988079071 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,0.9999999,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,0.9999999,0.9999999,0.9999999,1,1,1,1,0.9999999,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734275536, "AnimCurve::", "" { + Default: 0.999999940395355 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,0.9999999,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734281648, "AnimCurve::", "" { + Default: 0.11610472202301 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0.1161047,0.1161046,0.1161046,0.1161047,0.1161047,0.1161046,0.1161045,0.1161045,0.1161046,0.1161046,0.1161046,0.1161049,0.1161051,0.1161046,0.1161041,0.1161046,0.1161051,0.1161049,0.1161046,0.1161046,0.1161046,0.1161045,0.1161045,0.1161045,0.1161046,0.1161046,0.1161046,0.1161046,0.1161046,0.1161046,0.1161045 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734293104, "AnimCurve::", "" { + Default: 2.98023223876953e-008 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 2.980232e-008,1.303852e-008,0,-1.862645e-009,0,0,0,2.980232e-008,0,-2.533197e-007,-4.768372e-007,-4.172325e-007,-2.384186e-007,2.980232e-008,2.384186e-007,1.47149e-007,0,1.862646e-009,2.980232e-008,1.699664e-008,0,-3.958121e-009,-3.72529e-009,-3.958121e-009,0,1.699664e-008,2.980232e-008,1.862645e-008,0,-1.490116e-008,-2.980232e-008 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734291344, "AnimCurve::", "" { + Default: 2.38418579101563e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 2.384186e-007,1.192093e-007,0,-1.490116e-007,-2.384186e-007,-1.341105e-007,0,0,0,1.341105e-007,2.384186e-007,1.192093e-007,0,1.341105e-007,2.384186e-007,0,-2.384186e-007,-1.490116e-007,0,1.490116e-008,0,1.490116e-008,0,-1.341105e-007,-2.384186e-007,-1.341105e-007,0,1.490116e-008,0,0,0 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734297744, "AnimCurve::", "" { + Default: 0 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 0,2.934847e-007,4.268869e-007,-3.335051e-008,-4.268868e-007,8.671139e-008,5.336086e-007,-1.667526e-007,-8.537735e-007,-3.935363e-007,2.134434e-007,1.467423e-007,0,2.267836e-007,4.268868e-007,2.401238e-007,0,-2.668042e-008,0,0,0,0,0,0,0,0,0,2.668042e-008,0,-1.86763e-007,-4.268868e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734295984, "AnimCurve::", "" { + Default: 2.13443414054382e-007 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 2.134434e-007,5.736292e-007,8.537737e-007,9.471552e-007,8.537737e-007,4.268868e-007,0,-5.336085e-008,0,0,0,1.334021e-008,0,-1.26732e-007,-2.134434e-007,-5.982251e-008,1.067217e-007,7.149519e-008,-3.335053e-009,-8.598183e-009,-0,6.774327e-010,8.337633e-010,3.804046e-009,0,-3.67377e-008,-5.336086e-008,4.335569e-008,1.067217e-007,-2.334536e-008,-2.134434e-007 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734294224, "AnimCurve::", "" { + Default: 1.70754731243505e-006 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1.707547e-006,-3.201651e-007,-1.707547e-006,-1.067217e-006,0,1.065814e-014,0,9.604953e-007,1.707547e-006,1.067217e-006,0,-1.067217e-006,-1.707547e-006,-9.604954e-007,0,1.200619e-007,0,-1.200619e-007,-2.134434e-007,-1.133918e-007,0,-4.669075e-008,-1.067217e-007,-6.003096e-008,0,6.670106e-009,0,-1.067217e-007,0,7.470518e-007,1.707547e-006 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734300752, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,0.9999999,0.9999999,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734298992, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734305408, "AnimCurve::", "" { + Default: 1 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,0.9999999,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.9999999 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734334640, "AnimCurve::", "" { + Default: -3.1601185798645 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -3.160119,-3.200712,-3.258719,-3.365952,-3.49663,-3.63864,-3.782803,-3.917221,-4.03794,-4.136546,-4.214513,-4.26927,-4.304531,-4.322139,-4.325131,-4.317286,-4.298228,-4.269926,-4.229113,-4.173222,-4.102114,-4.013625,-3.911265,-3.795601,-3.673296,-3.548434,-3.429312,-3.322863,-3.237268,-3.191513,-3.160119 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734332880, "AnimCurve::", "" { + Default: -2.77757406234741 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -2.777574,-2.689978,-2.555479,-2.296908,-1.958151,-1.549952,-1.094557,-0.6091973,-0.1196594,0.3494775,0.7773573,1.139846,1.422199,1.601256,1.678134,1.638789,1.505541,1.292618,1.010242,0.6683437,0.2820204,-0.1361592,-0.5686786,-0.9989479,-1.411619,-1.789282,-2.121531,-2.394683,-2.60115,-2.708312,-2.777574 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734331120, "AnimCurve::", "" { + Default: 5.6705904006958 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 5.67059,5.5215,5.403862,5.348461,5.388771,5.598187,5.887728,6.223363,6.513641,6.631337,6.649752,6.58778,6.481414,6.376473,6.262372,6.145427,6.020747,5.871614,5.739826,5.649813,5.636949,5.773744,5.973218,6.189962,6.371777,6.438239,6.428606,6.361294,6.218402,5.965596,5.67059 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734337520, "AnimCurve::", "" { + Default: -58.1595878601074 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -58.15959,-57.27667,-55.66372,-52.3741,-47.32769,-39.95026,-30.77747,-19.55812,-8.078407,2.034214,10.55466,16.50609,20.51634,22.82924,23.61996,23.16189,21.4042,18.48504,14.11085,7.950266,0.2548125,-9.237942,-19.31745,-29.05553,-37.86749,-44.7203,-50.03085,-53.77722,-56.24277,-57.46963,-58.15959 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734335760, "AnimCurve::", "" { + Default: -46.406322479248 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: -46.40632,-47.44071,-48.87041,-51.50907,-54.49701,-57.41618,-59.75536,-60.81426,-60.74203,-59.21526,-56.95124,-54.40087,-52.03992,-50.48705,-49.76448,-50.23083,-51.4957,-53.40269,-55.60831,-57.84546,-59.72845,-60.80267,-61.00788,-59.99417,-58.17602,-55.713,-53.01987,-50.48257,-48.34718,-47.20601,-46.40632 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734342176, "AnimCurve::", "" { + Default: 72.1477966308594 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 72.1478,70.7923,68.50298,63.9702,57.38748,48.31158,37.3431,24.32466,11.08703,-0.6846699,-10.71081,-17.96619,-23.00244,-25.97444,-27.0472,-26.4196,-24.14487,-20.42545,-15.01262,-7.629297,1.437049,12.40621,24.03352,35.35826,45.74841,54.13655,60.86818,65.86849,69.33094,71.09224,72.1478 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734340416, "AnimCurve::", "" { + Default: 1.00000023841858 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734346816, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + AnimationCurve: 734345056, "AnimCurve::", "" { + Default: 1.00000011920929 + KeyVer: 4007 + KeyTime: *31 { +a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000 +} + KeyValueFloat: *31 { +a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 +} + KeyAttrFlags: *1 { +a: 8456 +} + KeyAttrDataFloat: *4 { +a: 0,0,4.099946e-031,0 +} + KeyAttrRefCount: *1 { +a: 31 +} + Post-Extrapolation: { + Type: C + Repetition: 1 + } + } + CollectionExclusive: 550268864, "DisplayLayer::Hepers", "DisplayLayer" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.898039215686275,0.650980392156863,0.843137254901961 + P: "Show", "bool", "", "",1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + } + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + C: "OO",551080896,0 + C: "OO",551003008,550998480 + C: "OO",733819952,551003008 + C: "OO",733824096,551003008 + C: "OO",733829344,551003008 + C: "OO",550282128,551003008 + C: "OO",550287360,551003008 + C: "OO",550292576,551003008 + C: "OO",550317888,551003008 + C: "OO",550317120,551003008 + C: "OO",550314240,551003008 + C: "OO",614274704,551003008 + C: "OO",550372736,551003008 + C: "OO",550378000,551003008 + C: "OO",550401328,551003008 + C: "OO",550402208,551003008 + C: "OO",550401696,551003008 + C: "OO",550432592,551003008 + C: "OO",550431504,551003008 + C: "OO",550435920,551003008 + C: "OO",550618592,551003008 + C: "OO",550619744,551003008 + C: "OO",550623344,551003008 + C: "OO",550648464,551003008 + C: "OO",550648672,551003008 + C: "OO",550653216,551003008 + C: "OO",733845712,551003008 + C: "OO",733843504,551003008 + C: "OO",733848032,551003008 + C: "OO",614317968,551003008 + C: "OO",733873536,551003008 + C: "OO",733878800,551003008 + C: "OO",733904400,551003008 + C: "OO",733900880,551003008 + C: "OO",381089232,551003008 + C: "OO",733926448,551003008 + C: "OO",733931664,551003008 + C: "OO",733936928,551003008 + C: "OO",733957968,551003008 + C: "OO",733955024,551003008 + C: "OO",733960304,551003008 + C: "OO",733979680,551003008 + C: "OO",733984880,551003008 + C: "OO",733990176,551003008 + C: "OO",734009552,551003008 + C: "OO",734007344,551003008 + C: "OO",734011872,551003008 + C: "OO",614594048,551003008 + C: "OO",734037376,551003008 + C: "OO",734042640,551003008 + C: "OO",734065968,551003008 + C: "OO",734066848,551003008 + C: "OO",734066208,551003008 + C: "OO",734090608,551003008 + C: "OO",734095776,551003008 + C: "OO",734101024,551003008 + C: "OO",734119392,551003008 + C: "OO",734120544,551003008 + C: "OO",734124144,551003008 + C: "OO",734149264,551003008 + C: "OO",734149472,551003008 + C: "OO",734154016,551003008 + C: "OO",734173392,551003008 + C: "OO",734171184,551003008 + C: "OO",734175712,551003008 + C: "OO",614573040,551003008 + C: "OO",734201216,551003008 + C: "OO",734205952,551003008 + C: "OO",734224400,551003008 + C: "OO",734229616,551003008 + C: "OO",381068592,551003008 + C: "OO",734254448,551003008 + C: "OO",734259616,551003008 + C: "OO",734264864,551003008 + C: "OO",734283232,551003008 + C: "OO",734284384,551003008 + C: "OO",734287984,551003008 + C: "OO",734307360,551003008 + C: "OO",734312560,551003008 + C: "OO",734317856,551003008 + C: "OO",734347312,551003008 + C: "OO",734353840,551003008 + C: "OO",734357536,551003008 + C: "OO",551087008,551080896 + C: "OO",380933440,551080896 + C: "OO",380954672,551080896 + C: "OO",380956176,551080896 + C: "OP",733819952,551080896, "Lcl Translation" + C: "OP",733824096,551080896, "Lcl Rotation" + C: "OP",733829344,551080896, "Lcl Scaling" + C: "OO",551069616,551087008 + C: "OO",813348048,551087008 + C: "OP",550282128,551087008, "Lcl Translation" + C: "OP",550287360,551087008, "Lcl Rotation" + C: "OP",550292576,551087008, "Lcl Scaling" + C: "OO",551066880,551069616 + C: "OO",812867600,551069616 + C: "OP",550317888,551069616, "Lcl Translation" + C: "OP",550317120,551069616, "Lcl Rotation" + C: "OP",550314240,551069616, "Lcl Scaling" + C: "OO",551064544,551066880 + C: "OO",733525744,551066880 + C: "OO",733520224,551066880 + C: "OO",812906064,551066880 + C: "OP",614274704,551066880, "Lcl Translation" + C: "OP",550372736,551066880, "Lcl Rotation" + C: "OP",550378000,551066880, "Lcl Scaling" + C: "OO",551062000,551064544 + C: "OO",812904336,551064544 + C: "OP",550401328,551064544, "Lcl Translation" + C: "OP",550402208,551064544, "Lcl Rotation" + C: "OP",550401696,551064544, "Lcl Scaling" + C: "OO",551060016,551062000 + C: "OO",733772192,551062000 + C: "OO",733505600,551062000 + C: "OO",812890048,551062000 + C: "OP",550432592,551062000, "Lcl Translation" + C: "OP",550431504,551062000, "Lcl Rotation" + C: "OP",550435920,551062000, "Lcl Scaling" + C: "OO",733770144,551060016 + C: "OO",812895648,551060016 + C: "OP",550618592,551060016, "Lcl Translation" + C: "OP",550619744,551060016, "Lcl Rotation" + C: "OP",550623344,551060016, "Lcl Scaling" + C: "OO",812889664,733770144 + C: "OP",550648464,733770144, "Lcl Translation" + C: "OP",550648672,733770144, "Lcl Rotation" + C: "OP",550653216,733770144, "Lcl Scaling" + C: "OO",733494528,733772192 + C: "OO",812896960,733772192 + C: "OP",733845712,733772192, "Lcl Translation" + C: "OP",733843504,733772192, "Lcl Rotation" + C: "OP",733848032,733772192, "Lcl Scaling" + C: "OO",733492816,733494528 + C: "OO",812903296,733494528 + C: "OP",614317968,733494528, "Lcl Translation" + C: "OP",733873536,733494528, "Lcl Rotation" + C: "OP",733878800,733494528, "Lcl Scaling" + C: "OO",733479616,733492816 + C: "OO",812607712,733492816 + C: "OP",733904400,733492816, "Lcl Translation" + C: "OP",733900880,733492816, "Lcl Rotation" + C: "OP",381089232,733492816, "Lcl Scaling" + C: "OO",812916784,733479616 + C: "OP",733926448,733479616, "Lcl Translation" + C: "OP",733931664,733479616, "Lcl Rotation" + C: "OP",733936928,733479616, "Lcl Scaling" + C: "OO",733486336,733505600 + C: "OO",812930432,733505600 + C: "OP",733957968,733505600, "Lcl Translation" + C: "OP",733955024,733505600, "Lcl Rotation" + C: "OP",733960304,733505600, "Lcl Scaling" + C: "OO",733483888,733486336 + C: "OO",812927280,733486336 + C: "OP",733979680,733486336, "Lcl Translation" + C: "OP",733984880,733486336, "Lcl Rotation" + C: "OP",733990176,733486336, "Lcl Scaling" + C: "OO",733527296,733483888 + C: "OO",812929424,733483888 + C: "OP",734009552,733483888, "Lcl Translation" + C: "OP",734007344,733483888, "Lcl Rotation" + C: "OP",734011872,733483888, "Lcl Scaling" + C: "OO",813307504,733527296 + C: "OP",614594048,733527296, "Lcl Translation" + C: "OP",734037376,733527296, "Lcl Rotation" + C: "OP",734042640,733527296, "Lcl Scaling" + C: "OO",733541040,733525744 + C: "OO",877488656,733525744 + C: "OP",734065968,733525744, "Lcl Translation" + C: "OP",734066848,733525744, "Lcl Rotation" + C: "OP",734066208,733525744, "Lcl Scaling" + C: "OO",733543680,733541040 + C: "OO",877481600,733541040 + C: "OP",734090608,733541040, "Lcl Translation" + C: "OP",734095776,733541040, "Lcl Rotation" + C: "OP",734101024,733541040, "Lcl Scaling" + C: "OO",733539088,733543680 + C: "OO",877484160,733543680 + C: "OP",734119392,733543680, "Lcl Translation" + C: "OP",734120544,733543680, "Lcl Rotation" + C: "OP",734124144,733543680, "Lcl Scaling" + C: "OO",733536912,733539088 + C: "OO",551071520,733539088 + C: "OP",734149264,733539088, "Lcl Translation" + C: "OP",734149472,733539088, "Lcl Rotation" + C: "OP",734154016,733539088, "Lcl Scaling" + C: "OO",550893552,733536912 + C: "OP",734173392,733536912, "Lcl Translation" + C: "OP",734171184,733536912, "Lcl Rotation" + C: "OP",734175712,733536912, "Lcl Scaling" + C: "OO",733523200,733520224 + C: "OO",733506560,733520224 + C: "OP",614573040,733520224, "Lcl Translation" + C: "OP",734201216,733520224, "Lcl Rotation" + C: "OP",734205952,733520224, "Lcl Scaling" + C: "OO",733519104,733523200 + C: "OO",550242256,733523200 + C: "OP",734224400,733523200, "Lcl Translation" + C: "OP",734229616,733523200, "Lcl Rotation" + C: "OP",381068592,733523200, "Lcl Scaling" + C: "OO",733482240,733519104 + C: "OO",550247952,733519104 + C: "OP",734254448,733519104, "Lcl Translation" + C: "OP",734259616,733519104, "Lcl Rotation" + C: "OP",734264864,733519104, "Lcl Scaling" + C: "OO",733517280,733482240 + C: "OO",550245552,733482240 + C: "OP",734283232,733482240, "Lcl Translation" + C: "OP",734284384,733482240, "Lcl Rotation" + C: "OP",734287984,733482240, "Lcl Scaling" + C: "OO",550251328,733517280 + C: "OP",734307360,733517280, "Lcl Translation" + C: "OP",734312560,733517280, "Lcl Rotation" + C: "OP",734317856,733517280, "Lcl Scaling" + C: "OO",733679392,380933440 + C: "OO",733702848,380933440 + C: "OO",550248656,380954672 + C: "OO",550255040,380954672 + C: "OP",734347312,380954672, "Lcl Translation" + C: "OP",734353840,380954672, "Lcl Rotation" + C: "OP",734357536,380954672, "Lcl Scaling" + C: "OO",550334800,733679392 + C: "OP",733687568,733702848, "DiffuseColor" + C: "OP",733687568,733702848, "TransparentColor" + C: "OO",734364032,733687568 + C: "OP",550260496,550255040, "DiffuseColor" + C: "OO",734374128,550260496 + C: "OP",550261664,733819952, "d|X" + C: "OP",550270784,733819952, "d|Y" + C: "OP",550269024,733819952, "d|Z" + C: "OP",733688384,733824096, "d|X" + C: "OP",733809232,733824096, "d|Y" + C: "OP",733807424,733824096, "d|Z" + C: "OP",733813840,733829344, "d|X" + C: "OP",733812080,733829344, "d|Y" + C: "OP",733818496,733829344, "d|Z" + C: "OP",733816400,550282128, "d|X" + C: "OP",733834288,550282128, "d|Y" + C: "OP",733832528,550282128, "d|Z" + C: "OP",733838944,550287360, "d|X" + C: "OP",733837184,550287360, "d|Y" + C: "OP",733835424,550287360, "d|Z" + C: "OP",550275664,550292576, "d|X" + C: "OP",550273904,550292576, "d|Y" + C: "OP",550280160,550292576, "d|Z" + C: "OP",550289616,550317888, "d|X" + C: "OP",550277328,550317888, "d|Y" + C: "OP",550296032,550317888, "d|Z" + C: "OP",550294272,550317120, "d|X" + C: "OP",550300672,550317120, "d|Y" + C: "OP",550298912,550317120, "d|Z" + C: "OP",550305328,550314240, "d|X" + C: "OP",550303568,550314240, "d|Y" + C: "OP",550301808,550314240, "d|Z" + C: "OP",550308144,614274704, "d|X" + C: "OP",550319280,614274704, "d|Y" + C: "OP",550325680,614274704, "d|Z" + C: "OP",550323920,550372736, "d|X" + C: "OP",550330320,550372736, "d|Y" + C: "OP",550328560,550372736, "d|Z" + C: "OP",550326528,550378000, "d|X" + C: "OP",550332944,550378000, "d|Y" + C: "OP",550331184,550378000, "d|Z" + C: "OP",550383104,550401328, "d|X" + C: "OP",550381344,550401328, "d|Y" + C: "OP",550379584,550401328, "d|Z" + C: "OP",550386000,550402208, "d|X" + C: "OP",550384240,550402208, "d|Y" + C: "OP",550390656,550402208, "d|Z" + C: "OP",550388896,550401696, "d|X" + C: "OP",550395312,550401696, "d|Y" + C: "OP",550393552,550401696, "d|Z" + C: "OP",550404992,550432592, "d|X" + C: "OP",550411408,550432592, "d|Y" + C: "OP",550409648,550432592, "d|Z" + C: "OP",550416048,550431504, "d|X" + C: "OP",550414288,550431504, "d|Y" + C: "OP",550412528,550431504, "d|Z" + C: "OP",550418928,550435920, "d|X" + C: "OP",550417168,550435920, "d|Y" + C: "OP",550423584,550435920, "d|Z" + C: "OP",550428336,550618592, "d|X" + C: "OP",550420592,550618592, "d|Y" + C: "OP",550398576,550618592, "d|Z" + C: "OP",550603344,550619744, "d|X" + C: "OP",550601584,550619744, "d|Y" + C: "OP",550608000,550619744, "d|Z" + C: "OP",550606240,550623344, "d|X" + C: "OP",550612656,550623344, "d|Y" + C: "OP",550610896,550623344, "d|Z" + C: "OP",550617008,550648464, "d|X" + C: "OP",550628464,550648464, "d|Y" + C: "OP",550626176,550648464, "d|Z" + C: "OP",550632592,550648672, "d|X" + C: "OP",550630832,550648672, "d|Y" + C: "OP",550258736,550648672, "d|Z" + C: "OP",550636112,550653216, "d|X" + C: "OP",550634352,550653216, "d|Y" + C: "OP",550640768,550653216, "d|Z" + C: "OP",550650448,733845712, "d|X" + C: "OP",550637856,733845712, "d|Y" + C: "OP",550656560,733845712, "d|Z" + C: "OP",550654800,733843504, "d|X" + C: "OP",550661200,733843504, "d|Y" + C: "OP",550659440,733843504, "d|Z" + C: "OP",550665856,733848032, "d|X" + C: "OP",550664096,733848032, "d|Y" + C: "OP",550662336,733848032, "d|Z" + C: "OP",733841712,614317968, "d|X" + C: "OP",733853152,614317968, "d|Y" + C: "OP",733859568,614317968, "d|Z" + C: "OP",733857808,733873536, "d|X" + C: "OP",733856048,733873536, "d|Y" + C: "OP",733862448,733873536, "d|Z" + C: "OP",733860688,733878800, "d|X" + C: "OP",733867088,733878800, "d|Y" + C: "OP",733865328,733878800, "d|Z" + C: "OP",733883904,733904400, "d|X" + C: "OP",733882144,733904400, "d|Y" + C: "OP",733880384,733904400, "d|Z" + C: "OP",733886800,733900880, "d|X" + C: "OP",733885040,733900880, "d|Y" + C: "OP",733891456,733900880, "d|Z" + C: "OP",733889696,381089232, "d|X" + C: "OP",733896112,381089232, "d|Y" + C: "OP",733894352,381089232, "d|Z" + C: "OP",733905872,733926448, "d|X" + C: "OP",733912256,733926448, "d|Y" + C: "OP",733910528,733926448, "d|Z" + C: "OP",733916944,733931664, "d|X" + C: "OP",733915184,733931664, "d|Y" + C: "OP",733913424,733931664, "d|Z" + C: "OP",733919824,733936928, "d|X" + C: "OP",733918064,733936928, "d|Y" + C: "OP",733924480,733936928, "d|Z" + C: "OP",733934176,733957968, "d|X" + C: "OP",733921600,733957968, "d|Y" + C: "OP",733899376,733957968, "d|Z" + C: "OP",733940304,733955024, "d|X" + C: "OP",733938544,733955024, "d|Y" + C: "OP",733944960,733955024, "d|Z" + C: "OP",733943200,733960304, "d|X" + C: "OP",733949616,733960304, "d|Y" + C: "OP",733947856,733960304, "d|Z" + C: "OP",733953968,733979680, "d|X" + C: "OP",733965424,733979680, "d|Y" + C: "OP",733963664,733979680, "d|Z" + C: "OP",733970064,733984880, "d|X" + C: "OP",733968304,733984880, "d|Y" + C: "OP",733966544,733984880, "d|Z" + C: "OP",733973072,733990176, "d|X" + C: "OP",733971312,733990176, "d|Y" + C: "OP",733977728,733990176, "d|Z" + C: "OP",733987408,734009552, "d|X" + C: "OP",733974816,734009552, "d|Y" + C: "OP",733993520,734009552, "d|Z" + C: "OP",733991760,734007344, "d|X" + C: "OP",733998160,734007344, "d|Y" + C: "OP",733996400,734007344, "d|Z" + C: "OP",734002816,734011872, "d|X" + C: "OP",734001056,734011872, "d|Y" + C: "OP",733999296,734011872, "d|Z" + C: "OP",734005552,614594048, "d|X" + C: "OP",734016992,614594048, "d|Y" + C: "OP",734023408,614594048, "d|Z" + C: "OP",734021648,734037376, "d|X" + C: "OP",734019888,734037376, "d|Y" + C: "OP",734026288,734037376, "d|Z" + C: "OP",734024528,734042640, "d|X" + C: "OP",734030928,734042640, "d|Y" + C: "OP",734029168,734042640, "d|Z" + C: "OP",734047744,734065968, "d|X" + C: "OP",734045984,734065968, "d|Y" + C: "OP",734044224,734065968, "d|Z" + C: "OP",734050640,734066848, "d|X" + C: "OP",734048880,734066848, "d|Y" + C: "OP",734055296,734066848, "d|Z" + C: "OP",734053536,734066208, "d|X" + C: "OP",734059952,734066208, "d|Y" + C: "OP",734058192,734066208, "d|Z" + C: "OP",734069984,734090608, "d|X" + C: "OP",734076400,734090608, "d|Y" + C: "OP",734074640,734090608, "d|Z" + C: "OP",734072880,734095776, "d|X" + C: "OP",734079296,734095776, "d|Y" + C: "OP",734077536,734095776, "d|Z" + C: "OP",734083952,734101024, "d|X" + C: "OP",734082192,734101024, "d|Y" + C: "OP",734088608,734101024, "d|Z" + C: "OP",734098000,734119392, "d|X" + C: "OP",734085696,734119392, "d|Y" + C: "OP",734063264,734119392, "d|Z" + C: "OP",734104144,734120544, "d|X" + C: "OP",734102384,734120544, "d|Y" + C: "OP",734108800,734120544, "d|Z" + C: "OP",734107040,734124144, "d|X" + C: "OP",734113456,734124144, "d|Y" + C: "OP",734111696,734124144, "d|Z" + C: "OP",734117808,734149264, "d|X" + C: "OP",734129264,734149264, "d|Y" + C: "OP",734127504,734149264, "d|Z" + C: "OP",734133904,734149472, "d|X" + C: "OP",734132144,734149472, "d|Y" + C: "OP",734130384,734149472, "d|Z" + C: "OP",734136912,734154016, "d|X" + C: "OP",734135152,734154016, "d|Y" + C: "OP",734141568,734154016, "d|Z" + C: "OP",734151248,734173392, "d|X" + C: "OP",734138656,734173392, "d|Y" + C: "OP",734157360,734173392, "d|Z" + C: "OP",734155600,734171184, "d|X" + C: "OP",734162000,734171184, "d|Y" + C: "OP",734160240,734171184, "d|Z" + C: "OP",734166656,734175712, "d|X" + C: "OP",734164896,734175712, "d|Y" + C: "OP",734163136,734175712, "d|Z" + C: "OP",734179520,614573040, "d|X" + C: "OP",734168128,614573040, "d|Y" + C: "OP",734185920,614573040, "d|Z" + C: "OP",734184160,734201216, "d|X" + C: "OP",734190560,734201216, "d|Y" + C: "OP",734188800,734201216, "d|Z" + C: "OP",734195216,734205952, "d|X" + C: "OP",734193456,734205952, "d|Y" + C: "OP",734191696,734205952, "d|Z" + C: "OP",734211072,734224400, "d|X" + C: "OP",734209312,734224400, "d|Y" + C: "OP",734215728,734224400, "d|Z" + C: "OP",734213968,734229616, "d|X" + C: "OP",734212208,734229616, "d|Y" + C: "OP",734218624,734229616, "d|Z" + C: "OP",734216864,381068592, "d|X" + C: "OP",734223264,381068592, "d|Y" + C: "OP",734221504,381068592, "d|Z" + C: "OP",734233824,734254448, "d|X" + C: "OP",734240240,734254448, "d|Y" + C: "OP",734238480,734254448, "d|Z" + C: "OP",734236720,734259616, "d|X" + C: "OP",734243136,734259616, "d|Y" + C: "OP",734241376,734259616, "d|Z" + C: "OP",734247792,734264864, "d|X" + C: "OP",734246032,734264864, "d|Y" + C: "OP",734252448,734264864, "d|Z" + C: "OP",734261840,734283232, "d|X" + C: "OP",734249536,734283232, "d|Y" + C: "OP",734226592,734283232, "d|Z" + C: "OP",734267984,734284384, "d|X" + C: "OP",734266224,734284384, "d|Y" + C: "OP",734272640,734284384, "d|Z" + C: "OP",734270880,734287984, "d|X" + C: "OP",734277296,734287984, "d|Y" + C: "OP",734275536,734287984, "d|Z" + C: "OP",734281648,734307360, "d|X" + C: "OP",734293104,734307360, "d|Y" + C: "OP",734291344,734307360, "d|Z" + C: "OP",734297744,734312560, "d|X" + C: "OP",734295984,734312560, "d|Y" + C: "OP",734294224,734312560, "d|Z" + C: "OP",734300752,734317856, "d|X" + C: "OP",734298992,734317856, "d|Y" + C: "OP",734305408,734317856, "d|Z" + C: "OP",734334640,734347312, "d|X" + C: "OP",734332880,734347312, "d|Y" + C: "OP",734331120,734347312, "d|Z" + C: "OP",734337520,734353840, "d|X" + C: "OP",734335760,734353840, "d|Y" + C: "OP",734342176,734353840, "d|Z" + C: "OP",734340416,734357536, "d|X" + C: "OP",734346816,734357536, "d|Y" + C: "OP",734345056,734357536, "d|Z" + C: "OO",877427664,550334800 + C: "OO",550261728,550334800 + C: "OO",550396576,550334800 + C: "OO",550426544,550334800 + C: "OO",550614032,550334800 + C: "OO",550643232,550334800 + C: "OO",734308656,550334800 + C: "OO",733846928,550334800 + C: "OO",733898416,550334800 + C: "OO",733928560,550334800 + C: "OO",733951920,550334800 + C: "OO",733981808,550334800 + C: "OO",734003504,550334800 + C: "OO",734009984,550334800 + C: "OO",734061216,550334800 + C: "OO",734090864,550334800 + C: "OO",734114288,550334800 + C: "OO",734143872,550334800 + C: "OO",551069616,877427664 + C: "OO",551066880,550261728 + C: "OO",551064544,550396576 + C: "OO",551060016,550426544 + C: "OO",733483888,550614032 + C: "OO",733527296,550643232 + C: "OO",733505600,734308656 + C: "OO",733486336,733846928 + C: "OO",733520224,733898416 + C: "OO",733523200,733928560 + C: "OO",733519104,733951920 + C: "OO",733543680,733981808 + C: "OO",733492816,734003504 + C: "OO",733479616,734009984 + C: "OO",733772192,734061216 + C: "OO",733494528,734090864 + C: "OO",733525744,734114288 + C: "OO",733541040,734143872 +} +;Takes section +;---------------------------------------------------- + +Takes: { + Current: "" + Take: "Skeleton01_anim_walk" { + FileName: "Skeleton01_anim_walk.tak" + LocalTime: 0,46186158000 + ReferenceTime: 0,46186158000 + } +} diff --git a/samples/3d_camera_modes_res/Skeleton01.png b/samples/3d_camera_modes_res/Skeleton01.png new file mode 100644 index 0000000000000000000000000000000000000000..93715c499b540670702d80358957ef3937e209fa GIT binary patch literal 31635 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 Glm7>#K6pw1 literal 0 HcmV?d00001