diff --git a/samples/3DCameraModes.hx b/samples/3DCameraModes.hx new file mode 100644 index 0000000000..f3890d5646 --- /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 0000000000..96bd9a0597 --- /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 0000000000..93715c499b Binary files /dev/null and b/samples/3d_camera_modes_res/Skeleton01.png differ diff --git a/samples/3d_camera_modes_res/Sword01.png b/samples/3d_camera_modes_res/Sword01.png new file mode 100644 index 0000000000..b24ae8972a Binary files /dev/null and b/samples/3d_camera_modes_res/Sword01.png differ diff --git a/samples/3d_camera_modes_res/hxlogo.png b/samples/3d_camera_modes_res/hxlogo.png new file mode 100644 index 0000000000..78479258de Binary files /dev/null and b/samples/3d_camera_modes_res/hxlogo.png differ