From 51a45080879849ab45d2750149185fbf42f104d7 Mon Sep 17 00:00:00 2001 From: Kyle Larson Date: Thu, 8 Dec 2016 11:37:42 -0500 Subject: [PATCH] Multi-Animation now works for FBX's exported from Maya. --- examples/js/loaders/FBXLoader.js | 103 +- examples/models/fbx/MyMultiTest.fbx | 13412 ++++++++++++++++++++++++++ examples/webgl_loader_fbx.html | 10 +- 3 files changed, 13500 insertions(+), 25 deletions(-) create mode 100644 examples/models/fbx/MyMultiTest.fbx diff --git a/examples/js/loaders/FBXLoader.js b/examples/js/loaders/FBXLoader.js index 1b2a4f2556..c996382568 100644 --- a/examples/js/loaders/FBXLoader.js +++ b/examples/js/loaders/FBXLoader.js @@ -272,7 +272,7 @@ geometry.skinWeights = this.weights.skinWeights; var mesh = null; - if ( geo.bones === undefined || geo.skins === undefined || this.animations === undefined || this.animations.length === 0 ) { + if ( geo.bones === undefined || geo.skins === undefined || this.animations === undefined ) { mesh = new THREE.Mesh( geometry, material ); @@ -295,7 +295,7 @@ var animationData = { name: animations.stacks[ key ].name, fps: 30, - length: animations.length, + length: animations.stacks[ key ].length, hierarchy: [] }; @@ -447,7 +447,7 @@ } var bones = mesh.geometry.bones; - for ( var frame = 0; frame < animations.frames; frame ++ ) { + for ( var frame = 0; frame < animations.stacks[ key ].frames; frame ++ ) { for ( i = 0; i < bones.length; i ++ ) { @@ -2322,14 +2322,12 @@ // third: insert curves into the dict var ac = []; - var max = 0.0; for ( key in rawCurves ) { if ( key.match( /\d+/ ) ) { var c = ( new AnimationCurve() ).fromNode( rawCurves[ key ] ); ac.push( c ); - max = c.getLength() ? c.getLength() : max; var parentId = node.searchConnectionParent( c.id )[ 0 ]; var axis = node.searchConnectionType( c.id, parentId ); @@ -2338,16 +2336,18 @@ axis = 'x'; - } - if ( axis.match( /Y/ ) ) { + } else if ( axis.match( /Y/ ) ) { axis = 'y'; - } - if ( axis.match( /Z/ ) ) { + } else if ( axis.match( /Z/ ) ) { axis = 'z'; + } else { + + continue; + } tmp[ parentId ].curves[ axis ] = c; @@ -2382,17 +2382,22 @@ var children = node.searchConnectionChildren( key ); for ( var i = 0; i < children.length; ++ i ) { - if ( layer[ tmp[ children[ i ] ].containerBoneId ] === undefined ) { + //Skip lockInfluenceWeights + if ( tmp[ children[ i ] ] ) { - layer[ tmp[ children[ i ] ].containerBoneId ] = { - T: null, - R: null, - S: null - }; + if ( layer[ tmp[ children[ i ] ].containerBoneId ] === undefined ) { - } + layer[ tmp[ children[ i ] ].containerBoneId ] = { + T: null, + R: null, + S: null + }; + + } - layer[ tmp[ children[ i ] ].containerBoneId ][ tmp[ children[ i ] ].attr ] = tmp[ children[ i ] ]; + layer[ tmp[ children[ i ] ].containerBoneId ][ tmp[ children[ i ] ].attr ] = tmp[ children[ i ] ]; + + } } @@ -2406,12 +2411,68 @@ var layers = []; var children = node.searchConnectionChildren( key ); + var max = 0.0; + var min = Number.MAX_VALUE; for ( var i = 0; i < children.length; ++ i ) { if ( children[ i ] in this.layers ) { layers.push( this.layers[ children[ i ] ] ); + for ( var j = 0; j < this.layers[ children[ i ] ].length; ++ j ) { + + function getMaxMin( layer ) { + + function _getMaxMin( curves ) { + + if ( curves.x ) { + + max = curves.x.getLength() > max ? curves.x.getLength() : max; + min = curves.x.times[ 0 ] < min ? curves.x.times[ 0 ] : min; + + } + if ( curves.y ) { + + max = curves.y.getLength() > max ? curves.y.getLength() : max; + min = curves.y.times[ 0 ] < min ? curves.y.times[ 0 ] : min; + + } + if ( curves.z ) { + + max = curves.z.getLength() > max ? curves.z.getLength() : max; + min = curves.z.times[ 0 ] < min ? curves.z.times[ 0 ] : min; + + } + + } + + if ( layer.R ) { + + _getMaxMin( layer.R.curves ); + + } + if ( layer.S ) { + + _getMaxMin( layer.S.curves ); + + } + if ( layer.T ) { + + _getMaxMin( layer.T.curves ); + + } + + } + + var layer = this.layers[ children[ i ] ][ j ]; + if ( layer ) { + + getMaxMin( layer ); + + } + + } + } } @@ -2419,16 +2480,14 @@ this.stacks[ key ] = { name: rawStacks[ key ].attrName, - layers: layers + layers: layers, + length: max - min, + frames: ( max - min ) * 30, }; } - - this.length = max; - this.frames = this.length * this.fps; - return this; }; diff --git a/examples/models/fbx/MyMultiTest.fbx b/examples/models/fbx/MyMultiTest.fbx new file mode 100644 index 0000000000..cb5dd53d44 --- /dev/null +++ b/examples/models/fbx/MyMultiTest.fbx @@ -0,0 +1,13412 @@ +; FBX 7.5.0 project file +; Copyright (C) 1997-2015 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7500 + CreationTimeStamp: { + Version: 1000 + Year: 2016 + Month: 12 + Day: 8 + Hour: 10 + Minute: 52 + Second: 48 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins version 2017.0.1" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "/Users/klars1/Projects/three.js/examples/models/fbx/MyMultiTest.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "/Users/klars1/Projects/three.js/examples/models/fbx/MyMultiTest.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "Autodesk" + P: "Original|ApplicationName", "KString", "", "", "Maya" + P: "Original|ApplicationVersion", "KString", "", "", "2017" + P: "Original|DateTime_GMT", "DateTime", "", "", "08/12/2016 10:52:48.000" + P: "Original|FileName", "KString", "", "", "/Users/klars1/Projects/three.js/examples/models/fbx/MyMultiTest.fbx" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk" + P: "LastSaved|ApplicationName", "KString", "", "", "Maya" + P: "LastSaved|ApplicationVersion", "KString", "", "", "2017" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "08/12/2016 10:52:48.000" + P: "Original|ApplicationActiveProject", "KString", "", "", "/Users/klars1/Projects/three.js/examples/models/fbx" + P: "Original|ApplicationNativeFile", "KString", "", "", "/Users/klars1/test_dummy_003_allActions_30fps.mb" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",1 + P: "OriginalUnitScaleFactor", "double", "Number", "",1 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",6 + P: "TimeProtocol", "enum", "", "",2 + P: "SnapOnFrameMode", "enum", "", "",0 + P: "TimeSpanStart", "KTime", "Time", "",1539538600 + P: "TimeSpanStop", "KTime", "Time", "",115465395000 + P: "CustomFrameRate", "double", "Number", "",-1 + P: "TimeMarker", "Compound", "", "" + P: "CurrentTimeMarker", "int", "Integer", "",-1 + } +} + +; Documents Description +;------------------------------------------------------------------ + +Documents: { + Count: 1 + Document: 140263224851456, "", "Scene" { + Properties70: { + P: "SourceObject", "object", "", "" + P: "ActiveAnimStackName", "KString", "", "", "Take 001" + } + RootNode: 0 + } +} + +; Document References +;------------------------------------------------------------------ + +References: { +} + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 716 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "AnimationLayer" { + Count: 3 + PropertyTemplate: "FbxAnimLayer" { + Properties70: { + 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: "NodeAttribute" { + Count: 23 + PropertyTemplate: "FbxCamera" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "Position", "Vector", "", "A",0,0,0 + P: "UpVector", "Vector", "", "A",0,1,0 + P: "InterestPosition", "Vector", "", "A",0,0,0 + P: "Roll", "Roll", "", "A",0 + P: "OpticalCenterX", "OpticalCenterX", "", "A",0 + P: "OpticalCenterY", "OpticalCenterY", "", "A",0 + P: "BackgroundColor", "Color", "", "A",0.63,0.63,0.63 + P: "TurnTable", "Number", "", "A",0 + P: "DisplayTurnTableIcon", "bool", "", "",0 + P: "UseMotionBlur", "bool", "", "",0 + P: "UseRealTimeMotionBlur", "bool", "", "",1 + P: "Motion Blur Intensity", "Number", "", "A",1 + P: "AspectRatioMode", "enum", "", "",0 + P: "AspectWidth", "double", "Number", "",320 + P: "AspectHeight", "double", "Number", "",200 + P: "PixelAspectRatio", "double", "Number", "",1 + P: "FilmOffsetX", "Number", "", "A",0 + P: "FilmOffsetY", "Number", "", "A",0 + P: "FilmWidth", "double", "Number", "",0.816 + P: "FilmHeight", "double", "Number", "",0.612 + P: "FilmAspectRatio", "double", "Number", "",1.33333333333333 + P: "FilmSqueezeRatio", "double", "Number", "",1 + P: "FilmFormatIndex", "enum", "", "",0 + P: "PreScale", "Number", "", "A",1 + P: "FilmTranslateX", "Number", "", "A",0 + P: "FilmTranslateY", "Number", "", "A",0 + P: "FilmRollPivotX", "Number", "", "A",0 + P: "FilmRollPivotY", "Number", "", "A",0 + P: "FilmRollValue", "Number", "", "A",0 + P: "FilmRollOrder", "enum", "", "",0 + P: "ApertureMode", "enum", "", "",2 + P: "GateFit", "enum", "", "",0 + P: "FieldOfView", "FieldOfView", "", "A",25.1149997711182 + P: "FieldOfViewX", "FieldOfViewX", "", "A",40 + P: "FieldOfViewY", "FieldOfViewY", "", "A",40 + P: "FocalLength", "Number", "", "A",34.8932762167263 + P: "CameraFormat", "enum", "", "",0 + P: "UseFrameColor", "bool", "", "",0 + P: "FrameColor", "ColorRGB", "Color", "",0.3,0.3,0.3 + P: "ShowName", "bool", "", "",1 + P: "ShowInfoOnMoving", "bool", "", "",1 + P: "ShowGrid", "bool", "", "",1 + P: "ShowOpticalCenter", "bool", "", "",0 + P: "ShowAzimut", "bool", "", "",1 + P: "ShowTimeCode", "bool", "", "",0 + P: "ShowAudio", "bool", "", "",0 + P: "AudioColor", "Vector3D", "Vector", "",0,1,0 + P: "NearPlane", "double", "Number", "",10 + P: "FarPlane", "double", "Number", "",4000 + P: "AutoComputeClipPanes", "bool", "", "",0 + P: "ViewCameraToLookAt", "bool", "", "",1 + P: "ViewFrustumNearFarPlane", "bool", "", "",0 + P: "ViewFrustumBackPlaneMode", "enum", "", "",2 + P: "BackPlaneDistance", "Number", "", "A",4000 + P: "BackPlaneDistanceMode", "enum", "", "",1 + P: "ViewFrustumFrontPlaneMode", "enum", "", "",2 + P: "FrontPlaneDistance", "Number", "", "A",10 + P: "FrontPlaneDistanceMode", "enum", "", "",1 + P: "LockMode", "bool", "", "",0 + P: "LockInterestNavigation", "bool", "", "",0 + P: "BackPlateFitImage", "bool", "", "",0 + P: "BackPlateCrop", "bool", "", "",0 + P: "BackPlateCenter", "bool", "", "",1 + P: "BackPlateKeepRatio", "bool", "", "",1 + P: "BackgroundAlphaTreshold", "double", "Number", "",0.5 + P: "ShowBackplate", "bool", "", "",1 + P: "BackPlaneOffsetX", "Number", "", "A",0 + P: "BackPlaneOffsetY", "Number", "", "A",0 + P: "BackPlaneRotation", "Number", "", "A",0 + P: "BackPlaneScaleX", "Number", "", "A",1 + P: "BackPlaneScaleY", "Number", "", "A",1 + P: "Background Texture", "object", "", "" + P: "FrontPlateFitImage", "bool", "", "",1 + P: "FrontPlateCrop", "bool", "", "",0 + P: "FrontPlateCenter", "bool", "", "",1 + P: "FrontPlateKeepRatio", "bool", "", "",1 + P: "Foreground Opacity", "double", "Number", "",1 + P: "ShowFrontplate", "bool", "", "",1 + P: "FrontPlaneOffsetX", "Number", "", "A",0 + P: "FrontPlaneOffsetY", "Number", "", "A",0 + P: "FrontPlaneRotation", "Number", "", "A",0 + P: "FrontPlaneScaleX", "Number", "", "A",1 + P: "FrontPlaneScaleY", "Number", "", "A",1 + P: "Foreground Texture", "object", "", "" + P: "DisplaySafeArea", "bool", "", "",0 + P: "DisplaySafeAreaOnRender", "bool", "", "",0 + P: "SafeAreaDisplayStyle", "enum", "", "",1 + P: "SafeAreaAspectRatio", "double", "Number", "",1.33333333333333 + P: "Use2DMagnifierZoom", "bool", "", "",0 + P: "2D Magnifier Zoom", "Number", "", "A",100 + P: "2D Magnifier X", "Number", "", "A",50 + P: "2D Magnifier Y", "Number", "", "A",50 + P: "CameraProjectionType", "enum", "", "",0 + P: "OrthoZoom", "double", "Number", "",1 + P: "UseRealTimeDOFAndAA", "bool", "", "",0 + P: "UseDepthOfField", "bool", "", "",0 + P: "FocusSource", "enum", "", "",0 + P: "FocusAngle", "double", "Number", "",3.5 + P: "FocusDistance", "double", "Number", "",200 + P: "UseAntialiasing", "bool", "", "",0 + P: "AntialiasingIntensity", "double", "Number", "",0.77777 + P: "AntialiasingMethod", "enum", "", "",0 + P: "UseAccumulationBuffer", "bool", "", "",0 + P: "FrameSamplingCount", "int", "Integer", "",7 + P: "FrameSamplingType", "enum", "", "",1 + } + } + } + ObjectType: "Model" { + Count: 38 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",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 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 15 + PropertyTemplate: "FbxMesh" { + 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 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 2 + PropertyTemplate: "FbxSurfaceLambert" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Lambert" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + } + } + } + ObjectType: "AnimationCurveNode" { + Count: 327 + PropertyTemplate: "FbxAnimCurveNode" { + Properties70: { + P: "d", "Compound", "", "" + } + } + } + ObjectType: "AnimationCurve" { + Count: 282 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "Deformer" { + Count: 22 + } + ObjectType: "AnimationStack" { + Count: 2 + PropertyTemplate: "FbxAnimStack" { + Properties70: { + P: "Description", "KString", "", "", "" + P: "LocalStart", "KTime", "Time", "",0 + P: "LocalStop", "KTime", "Time", "",0 + P: "ReferenceStart", "KTime", "Time", "",0 + P: "ReferenceStop", "KTime", "Time", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + NodeAttribute: 140263460609536, "NodeAttribute::left", "Camera" { + Properties70: { + P: "Position", "Vector", "", "A",-100.1,28.9816517603175,1.18633139355766 + P: "InterestPosition", "Vector", "", "A",2.8421709430404e-14,28.9816517603175,1.18633139355764 + P: "BackgroundColor", "Color", "", "A",0,0,0 + P: "AspectWidth", "double", "Number", "",960 + P: "AspectHeight", "double", "Number", "",540 + P: "FilmWidth", "double", "Number", "",1.41732 + P: "FilmHeight", "double", "Number", "",0.94488 + P: "FilmAspectRatio", "double", "Number", "",1.5 + P: "ApertureMode", "enum", "", "",3 + P: "GateFit", "enum", "", "",2 + P: "FocalLength", "Number", "", "A",35 + P: "NearPlane", "double", "Number", "",0.1 + P: "FarPlane", "double", "Number", "",10000 + P: "AutoComputeClipPanes", "bool", "", "",1 + P: "CameraProjectionType", "enum", "", "",1 + P: "OrthoZoom", "double", "Number", "",3.31254845588701 + P: "FocusDistance", "double", "Number", "",5 + } + TypeFlags: "Camera" + GeometryVersion: 124 + Position: -100.1,28.9816517603175,1.18633139355766 + Up: 0,1,0 + LookAt: 2.8421709430404e-14,28.9816517603175,1.18633139355764 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 3.31254845588701 + } + Geometry: 140263214861184, "Geometry::", "Mesh" { + Vertices: *2262 { + a: -11.0782060623169,0,5.82765340805054,-2.84062075614929,0,5.82765340805054,-11.0782060623169,6.13437175750732,5.82765340805054,-2.66886019706726,6.13437175750732,5.82765340805054,-11.0782060623169,6.13437175750732,-1.53359317779541,-2.66886019706726,6.13437175750732,-1.53359317779541,-11.0782060623169,0,-1.53359317779541,-2.84062075614929,0,-1.53359317779541,-11.0782060623169,12.817834854126,5.82765340805054,-1.75280439853668,12.817834854126,5.82765340805054,-1.75280439853668,12.817834854126,-4.52037048339844,-11.0782060623169,12.817834854126,-1.53359317779541,-11.0782060623169,19.1682624816895,5.82765340805054,-0.0730282366275787,16.5449962615967,8.81011962890625,-0.0730282366275787,16.5449962615967,-4.52037048339844,-11.0782060623169,19.1682624816895,-1.53359317779541,-11.9486665725708,25.510814666748,6.94039583206177,-0.0730282366275787,24.7128925323486,11.6904926300049,-0.0730282366275787,24.7128925323486,-6.23228216171265,-11.9486665725708,25.510814666748,-2.64633560180664,-11.4025745391846,35.4012794494629,5.82765340805054,-0.0730282366275787,34.0731811523438,11.1212005615234,-0.0730282366275787,34.0731811523438,-5.29072952270508,-11.0782060623169,36.045467376709,-1.53359317779541,-10.1914701461792,43.6635322570801,5.82765340805054,-0.0730282366275787,44.7451019287109,8.81011962890625,-0.0730282366275787,44.7451019287109,-6.23228120803833,-11.0782060623169,42.4134712219238,-1.53359317779541,-16.8116893768311,32.7043609619141,4.83253192901611,-16.9875583648682,31.6348037719727,-0.538471460342407,-19.13987159729,36.4703102111816,4.83253192901611,-19.4516220092773,35.7305107116699,-0.538471460342407,-23.8101234436035,29.0714664459229,3.61355495452881,-24.3314800262451,28.1950874328613,0.680505514144897,-24.8784503936768,30.7261009216309,3.61355495452881,-25.4667148590088,30.1211910247803,0.680505514144897,-27.2289199829102,24.2072734832764,4.64481925964355,-27.3472080230713,24.0394306182861,-0.402107715606689,-29.9533843994141,28.3544006347656,4.64481925964355,-30.5773963928223,28.4308662414551,-0.332994699478149, +-31.1835346221924,22.7997989654541,3.62283229827881,-31.9108581542969,22.3147449493408,0.675304889678955,-32.3810882568359,24.6730556488037,3.69543361663818,-33.0911636352539,24.1578273773193,0.74790620803833,-6.81631898880005,49.3469200134277,5.82765340805054,-0.0730282366275787,49.3469200134277,8.81011962890625,-0.0730282366275787,49.3469200134277,-4.52037048339844,-6.81631898880005,49.3469200134277,-1.53359317779541,-6.81631898880005,61.582103729248,5.82765340805054,-0.0730282366275787,62.5183029174805,8.81011962890625,-0.0730282366275787,62.5183029174805,-4.52037048339844,-6.81631898880005,61.582103729248,-2.02275061607361,-11.0782060623169,-4.19790315628052,-1.53359317779541,-2.84062075614929,-4.19790315628052,-1.53359317779541,-2.84062075614929,-4.19790315628052,5.82765340805054,-11.0782060623169,-4.19790315628052,5.82765340805054,-11.0782060623169,-1.43181419372559,15.4006376266479,-2.84062075614929,-1.43181419372559,15.4006376266479,-11.0782060623169,-4.19790315628052,15.4006376266479,-2.84062075614929,-4.19790315628052,15.4006376266479,-3.68094062805176,49.3469200134277,8.81011962890625,-3.68094062805176,62.1971130371094,8.81011962890625,-3.68094062805176,62.1971130371094,-4.52037048339844,-3.68094062805176,49.3469200134277,-4.52037048339844,-4.79457759857178,44.7451019287109,-6.23228216171265,-4.79457759857178,34.0731811523438,-5.29073047637939,-5.17302274703979,25.0598011016846,-6.23228216171265,-4.79457759857178,17.6854972839355,-4.52037048339844,-5.80715322494507,12.817834854126,-4.52037048339844,-6.32494068145752,6.13437175750732,-3.7277352809906,-6.42202615737915,0,-3.7277352809906,-6.42202615737915,-4.19790315628052,-3.7277352809906,-6.42202615737915,-4.19790315628052,5.82765340805054,-6.42202615737915,-4.19790315628052,15.4006376266479,-6.42202615737915,0,15.4006376266479,-6.42202615737915,0,7.56978988647461,-6.32494068145752,6.13437175750732,7.56978988647461,-5.80715322494507,12.817834854126,7.56978988647461,-4.79457759857178,17.6854972839355,8.81011962890625,-5.17302274703979,25.0598011016846,11.1212005615234, +-4.79457759857178,34.0731811523438,11.1212005615234,-4.79457759857178,44.7451019287109,8.81011962890625,-8.51673030853271,49.3469200134277,1.58695828914642,-11.0782060623169,44.7451019287109,1.58695828914642,-20.0266075134277,37.5518798828125,1.73838365077972,-25.4667148590088,31.3908252716064,1.923872590065,-30.5773963928223,29.7005004882812,1.76965057849884,-33.4396858215332,24.7674922943115,1.93412888050079,-31.5623359680176,21.7050800323486,1.86152744293213,-26.4945068359375,23.2226238250732,2.52368950843811,-23.3563938140869,27.6992816925049,1.923872590065,-16.1621799468994,30.7919235229492,1.73838365077972,-12.5863037109375,34.0731811523438,1.58695828914642,-13.4567642211914,25.510814666748,1.58695828914642,-12.5863037109375,19.1682624816895,1.58695828914642,-12.5863037109375,12.817834854126,1.58695828914642,-12.5863037109375,6.13437175750732,1.58695828914642,-12.5863037109375,0,1.58695828914642,-11.0782060623169,-4.19790315628052,1.58695828914642,-6.42202615737915,-4.19790315628052,0.322948336601257,-2.84062075614929,-4.19790315628052,1.58695828914642,-2.84062075614929,0,1.58695828914642,-2.66886019706726,6.13437175750732,1.58695828914642,-1.75280439853668,12.817834854126,-0.133675813674927,-0.0730282366275787,16.5449962615967,1.13063979148865,-0.0730282366275787,64.8475875854492,1.13063979148865,-3.68094062805176,64.1737747192383,1.13063979148865,-8.51673030853271,61.582103729248,1.58695828914642,-4.79457759857178,38.8668975830078,9.2854700088501,-10.8585586547852,39.1125984191895,6.30300426483154,-17.8574848175049,34.3959846496582,5.74920749664307,-24.2900047302246,29.8147106170654,4.53023052215576,-28.4527206420898,26.0701198577881,5.24627590179443,-31.7214622497559,23.6412448883057,3.65544390678406,-32.4056243896484,23.0806846618652,1.89413928985596,-32.4410400390625,23.1426372528076,0.707916736602783,-28.7981758117676,26.0120182037354,-0.371062755584717,-24.8414154052734,29.0602741241455,0.680505514144897,-18.0943908691406,33.9992866516113,-1.71854138374329,-11.0782051086426,39.4306449890137,-2.71366286277771, +-4.79457759857178,38.8668975830078,-5.97549533843994,-0.0730282366275787,38.8668975830078,-5.97549438476562,-0.0730282366275787,38.8668975830078,9.2854700088501,-2.4843590259552,48.7318458557129,8.81011962890625,-5.43661451339722,48.7261848449707,5.8276538848877,-5.64833116531372,48.7318458557129,1.58695816993713,-5.64833116531372,48.7196426391602,-1.53359293937683,-2.4843590259552,48.7318458557129,-4.52037048339844,-0.0730282366275787,48.7318458557129,-4.52037048339844,-0.0730282366275787,48.7318458557129,8.81011962890625,-11.0782060623169,-0.643198490142822,10.1280241012573,-6.42202615737915,0,11.0875587463379,-2.84062075614929,-0.643198490142822,10.1280241012573,-2.84062075614929,-4.19790315628052,10.1280241012573,-6.42202615737915,-4.19790315628052,10.1280241012573,-11.0782060623169,-4.19790315628052,10.1280241012573,-11.7138748168945,29.7632007598877,7.62516117095947,-13.0825119018555,29.1921863555908,1.58695828914642,-11.5744132995605,30.040168762207,-2.64633560180664,-5.01031064987183,28.9350872039795,-5.97549533843994,-0.0730282366275787,28.7373294830322,-5.97549533843994,-0.0730282366275787,28.7373294830322,12.0627517700195,-5.01031064987183,28.9350872039795,12.0627517700195,-4.94483423233032,20.6133632659912,8.81011867523193,-11.4238109588623,21.6864852905273,5.82765340805054,-12.9319076538086,21.6864852905273,1.58695828914642,-11.4238109588623,21.6864852905273,-1.53359317779541,-4.94483423233032,20.6133632659912,-4.52037048339844,-0.0730282366275787,19.7879467010498,-4.52037048339844,-0.0730282366275787,19.7879467010498,8.81011867523193,-6.09040689468384,9.16166687011719,7.56978988647461,-11.0782060623169,9.16166687011719,5.82765293121338,-12.5863037109375,9.16166687011719,1.58695828914642,-11.0782060623169,9.16166687011719,-1.53359293937683,-6.09040689468384,9.16166687011719,-4.08676147460938,-2.25392985343933,9.16166687011719,-2.88646292686462,-2.25392985343933,9.16166687011719,0.807591676712036,-2.25392985343933,9.16166687011719,5.82765293121338,-6.37312841415405,3.08960676193237,7.56978988647461,-11.0782060623169,3.08960676193237,5.82765340805054, +-12.5863037109375,3.08960676193237,1.58695828914642,-11.0782060623169,3.08960676193237,-1.53359317779541,-6.37312841415405,3.08960676193237,-3.7277352809906,-2.7541127204895,3.08960676193237,-1.53359317779541,-2.7541127204895,3.08960676193237,1.58695828914642,-2.7541127204895,3.08960676193237,5.82765340805054,-14.8677673339844,39.9044647216797,5.30761814117432,-14.5160894393921,36.6477661132812,6.01359844207764,-14.2292947769165,33.9919128417969,5.30761814117432,-14.4550018310547,32.3584442138672,1.66609084606171,-14.1663427352905,33.7405242919922,-1.01355791091919,-14.7447547912598,36.5923004150391,-2.19362807273865,-15.4540243148804,38.9210586547852,-1.01355791091919,-15.7545022964478,40.9860382080078,1.66609084606171,-22.0338859558105,33.5734558105469,4.21779155731201,-21.1014595031738,32.0856056213379,5.13446712493896,-20.3410606384277,30.8722610473633,4.21779155731201,-19.790283203125,29.2322788238525,1.83192729949951,-20.691162109375,29.90012550354,0.0762693881988525,-21.4969749450684,31.5085010528564,-0.508681058883667,-22.48508644104,32.901683807373,0.0762693881988525,-22.7701015472412,34.4448051452637,1.83192729949951,-6.81631898880005,55.3546447753906,7.40570306777954,-8.51673030853271,55.3546447753906,1.58695828914642,-6.81631898880005,55.3546447753906,-3.16617631912231,-3.68094062805176,55.6566276550293,-5.91276741027832,-0.0730282366275787,55.814338684082,-5.91276741027832,-0.0730282366275787,55.814338684082,10.3881692886353,-3.68094062805176,55.6566276550293,10.3881692886353,10.9321489334106,0,5.82765340805054,2.6945641040802,0,5.82765340805054,10.9321489334106,6.13437175750732,5.82765340805054,2.52280354499817,6.13437175750732,5.82765340805054,10.9321489334106,6.13437175750732,-1.53359317779541,2.52280354499817,6.13437175750732,-1.53359317779541,10.9321489334106,0,-1.53359317779541,2.6945641040802,0,-1.53359317779541,10.9321489334106,12.817834854126,5.82765340805054,1.60674798488617,12.817834854126,5.82765340805054,1.60674798488617,12.817834854126,-4.52037048339844,10.9321489334106,12.817834854126,-1.53359317779541, +10.9321489334106,19.1682624816895,5.82765340805054,10.9321489334106,19.1682624816895,-1.53359317779541,11.8026094436646,25.510814666748,6.94039583206177,11.8026094436646,25.510814666748,-2.64633560180664,11.2565174102783,35.4012794494629,5.82765340805054,10.9321489334106,36.045467376709,-1.53359317779541,10.0454130172729,43.6635322570801,5.82765340805054,10.9321489334106,42.4134712219238,-1.53359317779541,16.6656322479248,32.7043609619141,4.83253192901611,16.8415012359619,31.6348037719727,-0.538471460342407,18.9938144683838,36.4703102111816,4.83253192901611,19.3055648803711,35.7305107116699,-0.538471460342407,23.6640663146973,29.0714664459229,3.61355495452881,24.1854228973389,28.1950874328613,0.680505514144897,24.7323932647705,30.7261009216309,3.61355495452881,25.3206577301025,30.1211910247803,0.680505514144897,27.0828628540039,24.2072734832764,4.64481925964355,27.201150894165,24.0394306182861,-0.402107715606689,29.8073272705078,28.3544006347656,4.64481925964355,30.431339263916,28.4308662414551,-0.332994699478149,31.0374774932861,22.7997989654541,3.62283229827881,31.7648010253906,22.3147449493408,0.675304889678955,32.2350311279297,24.6730556488037,3.69543361663818,32.9451065063477,24.1578273773193,0.74790620803833,6.67026281356812,49.3469200134277,5.82765340805054,6.67026281356812,49.3469200134277,-1.53359317779541,6.67026281356812,61.582103729248,5.82765340805054,6.67026281356812,61.582103729248,-2.02275061607361,10.9321489334106,-4.19790315628052,-1.53359317779541,2.6945641040802,-4.19790315628052,-1.53359317779541,2.6945641040802,-4.19790315628052,5.82765340805054,10.9321489334106,-4.19790315628052,5.82765340805054,10.9321489334106,-1.43181419372559,15.4006376266479,2.6945641040802,-1.43181419372559,15.4006376266479,10.9321489334106,-4.19790315628052,15.4006376266479,2.6945641040802,-4.19790315628052,15.4006376266479,3.53488397598267,49.3469200134277,8.81011962890625,3.53488397598267,62.1971130371094,8.81011962890625,3.53488397598267,62.1971130371094,-4.52037048339844,3.53488397598267,49.3469200134277,-4.52037048339844, +4.64852142333984,44.7451019287109,-6.23228216171265,4.64852142333984,34.0731811523438,-5.29073047637939,5.02696657180786,25.0598011016846,-6.23228216171265,4.64852142333984,17.6854972839355,-4.52037048339844,5.66109704971313,12.817834854126,-4.52037048339844,6.17888450622559,6.13437175750732,-3.7277352809906,6.27596998214722,0,-3.7277352809906,6.27596998214722,-4.19790315628052,-3.7277352809906,6.27596998214722,-4.19790315628052,5.82765340805054,6.27596998214722,-4.19790315628052,15.4006376266479,6.27596998214722,0,15.4006376266479,6.27596998214722,0,7.56978988647461,6.17888450622559,6.13437175750732,7.56978988647461,5.66109704971313,12.817834854126,7.56978988647461,4.64852142333984,17.6854972839355,8.81011962890625,5.02696657180786,25.0598011016846,11.1212005615234,4.64852142333984,34.0731811523438,11.1212005615234,4.64852142333984,44.7451019287109,8.81011962890625,8.37067317962646,49.3469200134277,1.58695828914642,10.9321489334106,44.7451019287109,1.58695828914642,19.8805503845215,37.5518798828125,1.73838365077972,25.3206577301025,31.3908252716064,1.923872590065,30.431339263916,29.7005004882812,1.76965057849884,33.293628692627,24.7674922943115,1.93412888050079,31.4162788391113,21.7050800323486,1.86152744293213,26.3484497070312,23.2226238250732,2.52368950843811,23.2103366851807,27.6992816925049,1.923872590065,16.0161228179932,30.7919235229492,1.73838365077972,12.4402465820312,34.0731811523438,1.58695828914642,13.3107070922852,25.510814666748,1.58695828914642,12.4402465820312,19.1682624816895,1.58695828914642,12.4402465820312,12.817834854126,1.58695828914642,12.4402465820312,6.13437175750732,1.58695828914642,12.4402465820312,0,1.58695828914642,10.9321489334106,-4.19790315628052,1.58695828914642,6.27596998214722,-4.19790315628052,0.322948336601257,2.6945641040802,-4.19790315628052,1.58695828914642,2.6945641040802,0,1.58695828914642,2.52280354499817,6.13437175750732,1.58695828914642,1.60674798488617,12.817834854126,-0.133675813674927,3.53488397598267,64.1737747192383,1.13063979148865,8.37067317962646,61.582103729248,1.58695828914642, +4.64852142333984,38.8668975830078,9.2854700088501,10.7125015258789,39.1125984191895,6.30300426483154,17.7114276885986,34.3959846496582,5.74920749664307,24.1439476013184,29.8147106170654,4.53023052215576,28.3066635131836,26.0701198577881,5.24627590179443,31.5754051208496,23.6412448883057,3.65544390678406,32.2595672607422,23.0806846618652,1.89413928985596,32.2949829101562,23.1426372528076,0.707916736602783,28.6521186828613,26.0120182037354,-0.371062755584717,24.6953582763672,29.0602741241455,0.680505514144897,17.9483337402344,33.9992866516113,-1.71854138374329,10.9321479797363,39.4306449890137,-2.71366286277771,4.64852142333984,38.8668975830078,-5.97549533843994,2.33830237388611,48.7318458557129,8.81011962890625,5.29055833816528,48.7261848449707,5.8276538848877,5.50227499008179,48.7318458557129,1.58695816993713,5.50227499008179,48.7196426391602,-1.53359293937683,2.33830237388611,48.7318458557129,-4.52037048339844,10.9321489334106,-0.643198490142822,10.1280241012573,6.27596998214722,0,11.0875587463379,2.6945641040802,-0.643198490142822,10.1280241012573,2.6945641040802,-4.19790315628052,10.1280241012573,6.27596998214722,-4.19790315628052,10.1280241012573,10.9321489334106,-4.19790315628052,10.1280241012573,11.5678176879883,29.7632007598877,7.62516117095947,12.9364547729492,29.1921863555908,1.58695828914642,11.4283561706543,30.040168762207,-2.64633560180664,4.86425447463989,28.9350872039795,-5.97549533843994,4.86425447463989,28.9350872039795,12.0627517700195,4.79877805709839,20.6133632659912,8.81011867523193,11.2777538299561,21.6864852905273,5.82765340805054,12.7858505249023,21.6864852905273,1.58695828914642,11.2777538299561,21.6864852905273,-1.53359317779541,4.79877805709839,20.6133632659912,-4.52037048339844,5.9443507194519,9.16166687011719,7.56978988647461,10.9321489334106,9.16166687011719,5.82765293121338,12.4402465820312,9.16166687011719,1.58695828914642,10.9321489334106,9.16166687011719,-1.53359293937683,5.9443507194519,9.16166687011719,-4.08676147460938,2.10787320137024,9.16166687011719,-2.88646292686462,2.10787320137024,9.16166687011719,0.807591676712036, +2.10787320137024,9.16166687011719,5.82765293121338,6.22707223892212,3.08960676193237,7.56978988647461,10.9321489334106,3.08960676193237,5.82765340805054,12.4402465820312,3.08960676193237,1.58695828914642,10.9321489334106,3.08960676193237,-1.53359317779541,6.22707223892212,3.08960676193237,-3.7277352809906,2.60805606842041,3.08960676193237,-1.53359317779541,2.60805606842041,3.08960676193237,1.58695828914642,2.60805606842041,3.08960676193237,5.82765340805054,14.7217102050781,39.9044647216797,5.30761814117432,14.3700323104858,36.6477661132812,6.01359844207764,14.0832376480103,33.9919128417969,5.30761814117432,14.3089447021484,32.3584442138672,1.66609084606171,14.0202856063843,33.7405242919922,-1.01355791091919,14.5986976623535,36.5923004150391,-2.19362807273865,15.3079671859741,38.9210586547852,-1.01355791091919,15.6084451675415,40.9860382080078,1.66609084606171,21.8878288269043,33.5734558105469,4.21779155731201,20.9554023742676,32.0856056213379,5.13446712493896,20.1950035095215,30.8722610473633,4.21779155731201,19.6442260742188,29.2322788238525,1.83192729949951,20.5451049804688,29.90012550354,0.0762693881988525,21.3509178161621,31.5085010528564,-0.508681058883667,22.3390293121338,32.901683807373,0.0762693881988525,22.624044418335,34.4448051452637,1.83192729949951,6.67026281356812,55.3546447753906,7.40570306777954,8.37067317962646,55.3546447753906,1.58695828914642,6.67026281356812,55.3546447753906,-3.16617631912231,3.53488397598267,55.6566276550293,-5.91276741027832,3.53488397598267,55.6566276550293,10.3881692886353,-7.65505599975586,46.3641357421875,5.8276538848877,-8.18171215057373,46.8717803955078,1.58695816993713,-8.18171215057373,45.7774124145508,-1.53359305858612,-3.56222248077393,46.8717803955078,-5.3190860748291,-0.0730282366275787,46.8717803955078,-5.31908512115479,3.41616582870483,46.8717803955078,-5.3190860748291,8.03565502166748,45.7774124145508,-1.53359305858612,8.03565502166748,46.8717803955078,1.58695816993713,7.50899887084961,46.3641357421875,5.8276538848877,3.41616582870483,46.8717803955078,8.81011962890625, +-0.0730282366275787,46.8717803955078,8.81011962890625,-3.56222248077393,46.8717803955078,8.81011962890625,11.8821954727173,58.4552688598633,-2.40556836128235,10.1075992584229,57.7401237487793,-5.81419849395752,7.34359931945801,57.1725845336914,-8.51930141448975,3.86075782775879,56.8082008361816,-10.2560844421387,0,56.6826438903809,-10.8545379638672,-3.86075782775879,56.8082008361816,-10.2560844421387,-7.34359931945801,57.1725845336914,-8.51929950714111,-10.1075954437256,57.7401275634766,-5.81419610977173,-11.8821887969971,58.4552688598633,-2.40556740760803,-12.493673324585,59.2480087280273,1.3729259967804,-11.8821887969971,60.0407485961914,5.1514196395874,-10.1075954437256,60.7558898925781,8.5600471496582,-7.34359931945801,61.3234329223633,11.2651481628418,-3.86075782775879,61.6878128051758,13.0019330978394,0,61.8133735656738,13.6003856658936,3.86075592041016,61.6878128051758,13.0019311904907,7.34359550476074,61.3234329223633,11.2651481628418,10.1075916290283,60.7558898925781,8.5600471496582,11.8821878433228,60.0407485961914,5.15141773223877,12.4936714172363,59.2480087280273,1.3729259967804,11.8821954727173,60.3224868774414,-2.79731726646423,10.1075992584229,59.6073417663574,-6.20594692230225,7.34359931945801,59.0398025512695,-8.91104984283447,3.86075782775879,58.6754188537598,-10.6478328704834,0,58.549861907959,-11.2462863922119,-3.86075782775879,58.6754188537598,-10.6478328704834,-7.34359931945801,59.0398025512695,-8.91104793548584,-10.1075954437256,59.6073455810547,-6.20594453811646,-11.8821887969971,60.3224868774414,-2.79731631278992,-12.493673324585,61.1152267456055,0.981177091598511,-11.8821887969971,61.9079666137695,4.75967025756836,-10.1075954437256,62.6231079101562,8.16829872131348,-7.34359931945801,63.1906509399414,10.8733997344971,-3.86075782775879,63.5550308227539,12.6101846694946,0,63.680591583252,13.2086372375488,3.86075592041016,63.5550308227539,12.610182762146,7.34359550476074,63.1906509399414,10.8733997344971,10.1075916290283,62.6231079101562,8.16829872131348,11.8821878433228,61.9079666137695,4.75966835021973, +12.4936714172363,61.1152267456055,0.981177091598511,0,59.2480087280273,1.3729259967804,8.55920219421387,60.5441856384277,-1.74062013626099,7.28089332580566,60.0290412902832,-4.1959867477417,5.28987693786621,59.6202201843262,-6.14457607269287,2.78105354309082,59.3577423095703,-7.39564609527588,0,59.2672958374023,-7.82674026489258,-2.78105354309082,59.3577423095703,-7.39564609527588,-5.28988075256348,59.6202201843262,-6.14457416534424,-7.2808895111084,60.0290412902832,-4.19598388671875,-8.5591983795166,60.5441856384277,-1.74061822891235,-8.99967765808105,61.1152267456055,0.981176137924194,-8.5591983795166,61.6862678527832,3.70297145843506,-7.2808895111084,62.2014122009277,6.15833854675293,-5.28988075256348,62.6102333068848,8.10692501068115,-2.78105354309082,62.8727111816406,9.35799789428711,0,62.9631576538086,9.78909111022949,2.78105163574219,62.8727111816406,9.35799598693848,5.28987503051758,62.6102333068848,8.10692501068115,7.28088760375977,62.2014122009277,6.15833854675293,8.5591983795166,61.6862678527832,3.70297050476074,8.99967575073242,61.1152267456055,0.981176137924194,8.55920219421387,71.6037902832031,-4.06096458435059,7.28089332580566,71.0886535644531,-6.5163311958313,0,72.1748352050781,-1.33916807174683,5.28987693786621,70.6798248291016,-8.46492004394531,2.78105354309082,70.417350769043,-9.71599006652832,0,70.326904296875,-10.1470851898193,-2.78105354309082,70.417350769043,-9.71599006652832,-5.28988075256348,70.6798248291016,-8.46491813659668,-7.2808895111084,71.0886535644531,-6.51632833480835,-8.5591983795166,71.6037902832031,-4.06096267700195,-8.99967765808105,72.1748352050781,-1.33916807174683,-8.5591983795166,72.7458801269531,1.38262724876404,-7.2808895111084,73.2610244750977,3.83799409866333,-5.28988075256348,73.6698455810547,5.78658056259155,-2.78105354309082,73.9323196411133,7.03765344619751,0,74.0227661132812,7.46874666213989,2.78105163574219,73.9323196411133,7.03765153884888,5.28987503051758,73.6698455810547,5.78658056259155,7.28088760375977,73.2610244750977,3.83799409866333,8.5591983795166,72.7458801269531,1.38262629508972, +8.99967575073242,72.1748352050781,-1.33916807174683,-1.672208070755,41.6230087280273,8.6923656463623,0,41.0506134033203,8.79297637939453,1.67220830917358,41.6230087280273,8.6923656463623,-2.41660118103027,44.5524826049805,8.17744922637939,0,44.450382232666,8.19539546966553,2.41660118103027,44.5524826049805,8.17744922637939,-1.88207244873047,46.9379615783691,7.75815057754517,0,46.9629135131836,7.75376510620117,1.88207244873047,46.9379615783691,7.75815057754517,-2.43671298027039,34.111083984375,10.0127458572388,0,33.0692558288574,10.1958694458008,2.43671298027039,34.111083984375,10.0127458572388,-2.66843605041504,22.0959491729736,12.124659538269,0,19.0916118621826,12.652735710144,2.66843605041504,22.0959491729736,12.124659538269,1.81756794452667,45.110279083252,8.07940483093262,-0.529007494449615,46.3400382995605,7.86324787139893,-1.58702218532562,46.329833984375,7.86504220962524,0.529007375240326,46.3400382995605,7.86324787139893,1.58702218532562,46.329833984375,7.86504220962524,-1.65374219417572,36.1961364746094,9.64625358581543,-0.551247417926788,35.7468109130859,9.72523212432861,0.551247477531433,35.7468109130859,9.72523212432861,-1.93181002140045,30.8852462768555,10.5797548294067,-0.643936634063721,30.1187438964844,10.7144832611084,0.643936693668365,30.1187438964844,10.7144842147827,1.6537424325943,36.1961364746094,9.64625358581543,1.93181014060974,30.8852462768555,10.5797548294067,-2.00132703781128,24.4250869750977,11.7152643203735,-0.667109072208405,23.1035289764404,11.9475555419922,0.66710901260376,23.1035289764404,11.9475555419922,2.00132703781128,24.425085067749,11.7152652740479,-1.2541561126709,41.4148635864258,8.7289514541626,-1.78825128078461,42.6415634155273,8.51333332061768,-0.894125699996948,42.3235626220703,8.56922912597656,-1.50765347480774,43.2831230163574,8.4005651473999,-0.418052017688751,41.1026458740234,8.7838306427002,-1.00510227680206,43.1753234863281,8.41951370239258,1.00510227680206,43.1753234863281,8.41951370239258,-1.15492844581604,45.7170639038086,7.97274923324585,1.15492832660675,45.7170639038086,7.97274923324585, +-0.976215004920959,38.0654640197754,9.3176794052124,0.97621488571167,38.0654602050781,9.31768035888672,-1.32263207435608,27.1534843444824,11.2356910705566,1.32263195514679,27.1534843444824,11.2356910705566,0.894125699996948,42.3235626220703,8.56922912597656,0.502551138401031,43.0983200073242,8.43304920196533,1.2541561126709,41.4148635864258,8.7289514541626,1.7882513999939,42.6415634155273,8.51333332061768,1.50765347480774,43.2831230163574,8.4005651473999,1.12462890148163,43.8683204650879,8.29770469665527,2.24925804138184,44.0118026733398,8.27248477935791,1.81245076656342,44.5153541564941,8.18397521972656,0.604150235652924,44.459659576416,8.19376468658447,-2.42342376708984,45.1228637695312,8.07719230651855,-1.21171188354492,45.0992698669434,8.08133983612061,-1.73239243030548,45.7163429260254,7.97287607192993,0,45.0882568359375,8.08327484130859,-0.57746410369873,45.7175788879395,7.97265863418579,-1.05801486968994,46.3357849121094,7.86399555206299,0,46.341739654541,7.86294889450073,-0.470518171787262,46.9606437683105,7.75416374206543,-2.1160295009613,46.3230285644531,7.86623811721802,-1.41155433654785,46.9470367431641,7.75655555725098,1.21171188354492,45.0992698669434,8.08133983612061,0.577464163303375,45.7175788879395,7.97265863418579,2.42342376708984,45.1228637695312,8.07719230651855,1.73239254951477,45.7163429260254,7.97287607192993,1.05801475048065,46.3357849121094,7.86399555206299,2.1160295009613,46.3230285644531,7.86623811721802,1.41155433654785,46.9470367431641,7.75655555725098,0.470518112182617,46.9606437683105,7.75416374206543,0,39.6201705932617,9.04440689086914,-0.875442564487457,39.8225326538086,9.00883769989014,-0.488107532262802,37.9054298400879,9.34580898284912,-1.75088500976562,40.2561683654785,8.9326171875,-1.4643223285675,38.2895050048828,9.27829933166504,-1.10249495506287,35.9340286254883,9.6923246383667,-2.20498991012573,36.4956893920898,9.59360027313232,-1.82753479480743,33.7322387695312,10.0793361663818,0,35.6719207763672,9.73839569091797,-0.609178245067596,33.1639709472656,10.1792211532593,1.75088512897491,40.2561683654785,8.9326171875, +0.875442564487457,39.8225364685059,9.00883769989014,1.4643223285675,38.2895050048828,9.27829933166504,0.488107442855835,37.9054298400879,9.34580898284912,1.10249495506287,35.9340286254883,9.6923246383667,0.609178245067596,33.1639709472656,10.1792211532593,2.20498991012573,36.4956893920898,9.59360027313232,1.82753479480743,33.7322387695312,10.0793361663818,0,29.9909934997559,10.7369384765625,-1.28787338733673,30.438117980957,10.6583471298218,-0.661315977573395,26.7267322540283,11.3107013702393,-2.57574677467346,31.3962478637695,10.489935874939,-1.98394775390625,27.7509384155273,11.1306762695312,-1.33421802520752,23.6541767120361,11.8507680892944,-2.66843605041504,25.3061237335205,11.5604038238525,-2.00132703781128,21.0034618377686,12.3166875839233,0,22.8832683563232,11.9862718582153,-0.667109072208405,19.3647327423096,12.6047286987305,2.57574677467346,31.3962478637695,10.489935874939,1.28787338733673,30.438117980957,10.6583471298218,1.98394799232483,27.7509384155273,11.1306762695312,0.66131591796875,26.7267322540283,11.3107013702393,1.33421802520752,23.6541767120361,11.8507680892944,0.66710901260376,19.3647327423096,12.6047286987305,2.66843605041504,25.3061237335205,11.5604038238525,2.00132703781128,21.0034618377686,12.3166875839233,0,43.0675201416016,8.43846225738525,-0.836104094982147,41.232738494873,8.76096439361572,-1.34118843078613,42.4719657897949,8.54314422607422,-1.31316387653351,40.0248985290527,8.97326755523682,-0.437721252441406,39.6779861450195,9.03424453735352,-0.447062820196152,42.2175636291504,8.58786010742188,-1.20830059051514,44.4828643798828,8.1896858215332,1.20830047130585,44.4828643798828,8.1896858215332,0.836104154586792,41.232738494873,8.76096439361572,-0.562314510345459,43.8204917907715,8.30611133575439,-1.68694341182709,43.9352798461914,8.2859354019165,0,45.7177848815918,7.97262287139893,0.437721282243729,39.6779861450195,9.03424453735352,0,37.8414192199707,9.35706043243408,-1.2183563709259,33.4007453918457,10.1376028060913,0.447062849998474,42.2175636291504,8.58786010742188,0.562314450740814,43.8204917907715,8.30611133575439, +1.21835649013519,33.400749206543,10.137601852417,0.605855941772461,45.0914039611816,8.08272171020508,0,26.5560302734375,11.340705871582,-0.605856001377106,45.0914039611816,8.08272171020508,-1.81756782531738,45.110279083252,8.07940483093262,1.31316387653351,40.0248985290527,8.97326755523682,1.34118854999542,42.4719657897949,8.54314422607422,1.68694341182709,43.9352798461914,8.2859354019165,0,42.175163269043,8.59531307220459,-0.502551138401031,43.0983200073242,8.43304920196533,-1.95242977142334,38.5455589294434,9.23329257965088,-1.12462890148163,43.8683204650879,8.29770469665527,0,43.8013610839844,8.30947399139404,2.01020479202271,43.4063301086426,8.37891006469727,-0.604150235652924,44.459659576416,8.19376468658447,1.95242977142334,38.5455589294434,9.23329257965088,-2.3098566532135,45.715518951416,7.97302055358887,-2.24925780296326,44.0118026733398,8.27248477935791,-0.941036283969879,46.9549751281738,7.75516033172607,2.3098566532135,45.715518951416,7.97302055358887,-2.645263671875,28.4337425231934,11.0106582641602,-2.01020455360413,43.4063301086426,8.37891006469727,-1.81245076656342,44.5153541564941,8.18397521972656,0.418052077293396,41.1026458740234,8.7838306427002,0.941036224365234,46.9549751281738,7.75516033172607,2.645263671875,28.4337425231934,11.0106582641602,1.33421802520752,20.0475368499756,12.4847116470337,-1.33421802520752,20.0475368499756,12.4847116470337,-1.67220664024353,41.8510856628418,9.98993492126465,-1.25415527820587,41.6429405212402,10.0265207290649,-1.34118843078613,42.7000389099121,9.84071350097656,-1.78825128078461,42.8696365356445,9.81090259552002,-0.836103558540344,41.4608116149902,10.0585336685181,-0.894125282764435,42.5516395568848,9.86679744720459,-1.00510203838348,43.4033966064453,9.71708297729492,-1.50765430927277,43.5111999511719,9.69813442230225,-2.01020455360413,43.6344032287598,9.67647933959961,-0.418051034212112,41.3307228088379,10.0813999176025,-0.447062253952026,42.4456405639648,9.88542938232422,0,41.2786865234375,10.0905456542969,0,42.4032402038574,9.89288234710693,0,43.2955932617188,9.7360315322876, +-0.502550542354584,43.3263969421387,9.73061752319336,-0.562313795089722,44.0485687255859,9.60368061065674,-1.1246292591095,44.0963935852051,9.59527397155762,0,44.0294380187988,9.60704326629639,0,44.6784553527832,9.49296474456787,-0.604150772094727,44.6877365112305,9.4913330078125,-1.20830118656158,44.7109413146973,9.48725509643555,-1.68694400787354,44.1633529663086,9.58350467681885,-2.24925780296326,44.2398796081543,9.57005405426025,-1.81245100498199,44.7434272766113,9.48154449462891,-2.41660165786743,44.7805557250977,9.47501850128174,0.41805225610733,41.3307228088379,10.0813999176025,0.447062849998474,42.4456405639648,9.88542938232422,0.836105108261108,41.4608116149902,10.0585336685181,0.894126296043396,42.5516395568848,9.86679744720459,1.00510215759277,43.4033966064453,9.71708297729492,0.502550661563873,43.3263969421387,9.73061752319336,1.2541561126709,41.6429405212402,10.0265207290649,1.3411899805069,42.7000389099121,9.84071350097656,1.67220795154572,41.8510856628418,9.98993492126465,1.7882536649704,42.8696365356445,9.81090259552002,2.0102059841156,43.6344032287598,9.67647933959961,1.50765514373779,43.5111999511719,9.69813442230225,1.68694400787354,44.1633529663086,9.58350467681885,1.12462913990021,44.0963935852051,9.59527397155762,2.24925804138184,44.2398796081543,9.57005405426025,2.41660118103027,44.7805557250977,9.47501850128174,1.81245076656342,44.7434272766113,9.48154449462891,1.20830094814301,44.7109413146973,9.48725509643555,0.562313795089722,44.0485687255859,9.60368061065674,0.604150772094727,44.6877365112305,9.4913330078125,-1.81756806373596,45.3383560180664,9.37697315216064,-2.4234254360199,45.3509368896484,9.3747615814209,-1.21171188354492,45.3273429870605,9.37890911102295,-1.15492737293243,45.945140838623,9.27031803131104,-1.73239243030548,45.9444160461426,9.27044486999512,-2.3098578453064,45.9435958862305,9.27058982849121,-0.605857133865356,45.3194808959961,9.38029098510742,0,45.316333770752,9.38084411621094,0,45.945858001709,9.27019119262695,-0.57746410369873,45.9456558227539,9.27022743225098,-0.529007494449615,46.568115234375,9.16081714630127, +-1.05801498889923,46.5638618469238,9.16156482696533,0,46.5698165893555,9.16051769256592,0,47.1909866333008,9.05133438110352,-0.470519572496414,47.188720703125,9.05173301696777,-0.941037654876709,47.183048248291,9.05272960662842,-1.58702278137207,46.5579071044922,9.16261100769043,-2.1160295009613,46.5511016845703,9.1638069152832,-1.41155564785004,47.1751098632812,9.05412483215332,-1.88207244873047,47.1660385131836,9.05571937561035,0.605857074260712,45.3194808959961,9.38029098510742,1.21171188354492,45.3273429870605,9.37890911102295,1.15492725372314,45.945140838623,9.27031803131104,0.57746410369873,45.9456558227539,9.27022743225098,1.81756806373596,45.3383560180664,9.37697315216064,2.42342495918274,45.3509368896484,9.3747615814209,2.3098578453064,45.9435958862305,9.27058982849121,1.73239243030548,45.9444160461426,9.27044486999512,1.58702278137207,46.5579071044922,9.16261100769043,1.05801486968994,46.5638618469238,9.16156482696533,2.1160295009613,46.5511016845703,9.1638069152832,1.88207244873047,47.1660385131836,9.05571937561035,1.41155564785004,47.1751098632812,9.05412483215332,0.941037595272064,47.183048248291,9.05272960662842,0.529007494449615,46.568115234375,9.16081714630127,0.470519512891769,47.188720703125,9.05173301696777,-0.437720537185669,39.906063079834,10.3318138122559,0,39.8482437133789,10.3419761657715,-0.875442564487457,40.050609588623,10.3064069747925,-0.976215243339539,38.2935371398926,10.6152486801147,-0.488107949495316,38.1335067749023,10.6433782577515,0,38.0694923400879,10.6546297073364,-1.31316411495209,40.2529716491699,10.2708368301392,-1.75088477134705,40.484245300293,10.2301864624023,-1.95243012905121,38.7736320495605,10.5308618545532,-1.4643223285675,38.5175819396973,10.5758686065674,-1.65374219417572,36.4242134094238,10.9438219070435,-1.10249519348145,36.1621055603027,10.9898929595947,-2.20499014854431,36.7237663269043,10.8911695480347,-2.43671417236328,34.3391571044922,11.3103151321411,-1.82753455638885,33.9603118896484,11.3769054412842,-1.21835660934448,33.6288223266602,11.4351711273193,-0.551247835159302,35.9748840332031,11.022801399231, +0,35.8999977111816,11.035964012146,-0.60917854309082,33.3920440673828,11.4767904281616,0,33.2973327636719,11.4934377670288,1.31316351890564,40.2529716491699,10.2708368301392,1.75088477134705,40.484245300293,10.2301864624023,0.875442802906036,40.050609588623,10.3064060211182,0.976214468479156,38.2935371398926,10.6152496337891,1.46432161331177,38.5175819396973,10.5758686065674,1.95243012905121,38.7736320495605,10.5308618545532,0.437721103429794,39.906063079834,10.3318138122559,0.488107442855835,38.1335067749023,10.6433782577515,0.551247596740723,35.9748840332031,11.022801399231,1.102494597435,36.1621055603027,10.9898929595947,0.609178483486176,33.3920440673828,11.4767904281616,1.21835672855377,33.6288223266602,11.4351711273193,1.6537424325943,36.4242134094238,10.9438219070435,2.20499014854431,36.7237663269043,10.8911695480347,1.82753455638885,33.9603118896484,11.3769054412842,2.43671417236328,34.3391571044922,11.3103151321411,-0.643937230110168,30.3468189239502,12.0120525360107,0,30.219066619873,12.0345077514648,-1.28787338733673,30.6661949157715,11.9559154510498,-1.32263207435608,27.3815593719482,12.533260345459,-0.661315977573395,26.9548072814941,12.6082706451416,0,26.7841053009033,12.6382751464844,-1.93181002140045,31.1133213043213,11.8773241043091,-2.57574677467346,31.6243228912354,11.787504196167,-2.64526462554932,28.6618175506592,12.3082275390625,-1.9839483499527,27.9790134429932,12.4282445907593,-2.00132656097412,24.6531620025635,13.0128335952759,-1.33421754837036,23.882251739502,13.1483373641968,-2.66843605041504,25.5341987609863,12.8579730987549,-2.66843438148499,22.3240242004395,13.4222288131714,-2.00132536888123,21.2315368652344,13.6142568588257,-1.33421754837036,20.2756118774414,13.782280921936,-0.667109072208405,23.3316040039062,13.2451248168945,4.22855009674095e-07,23.1113433837891,13.2838401794434,-0.667109072208405,19.5928077697754,13.9022979736328,7.04758349456824e-07,19.3196868896484,13.9503049850464,1.93181014060974,31.1133213043213,11.8773241043091,2.57574677467346,31.6243228912354,11.787504196167, +1.28787338733673,30.6661949157715,11.9559154510498,1.32263195514679,27.3815593719482,12.533260345459,1.98394858837128,27.9790134429932,12.4282445907593,2.64526462554932,28.6618175506592,12.3082275390625,0.643937230110168,30.3468170166016,12.0120525360107,0.66131591796875,26.9548072814941,12.6082706451416,0.667109310626984,23.3316040039062,13.2451248168945,1.33421754837036,23.882251739502,13.1483373641968,0.667109727859497,19.5928077697754,13.9022979736328,1.33421730995178,20.2756118774414,13.782280921936,2.00132656097412,24.6531600952148,13.0128335952759,2.66843605041504,25.5341987609863,12.8579730987549,2.00132536888123,21.2315368652344,13.6142568588257,2.66843438148499,22.3240242004395,13.4222288131714 + } + PolygonVertexIndex: *4488 { + a: 0,75,-160,159,75,-159,61,106,-49,48,106,-108,162,70,-162,161,70,-7,99,72,-99,98,72,-56,1,101,-166,165,101,-165,97,0,-161,160,0,-160,2,76,-152,151,76,-151,3,102,-158,157,102,-157,4,153,-70,69,153,-155,96,2,-153,152,2,-152,8,77,-13,12,77,-79,103,104,-10,9,104,-14,68,11,-68,67,11,-16,95,8,-95,94,8,-13,78,143,-13,12,143,-145,67,15,-148,147,15,-147,12,144,-95,94,144,-146,16,79,-137,136,79,-143,66,19,-140,139,19,-139,93,16,-138,137,16,-137,80,108,-21,20,108,-110,65,23,-121,120,23,-120,88,40,-115,114,40,-114,20,168,-93,92,168,-170,109,167,-21,20,167,-169,24,83,-167,166,83,-174,119,23,-172,171,23,-171,28,176,-92,91,176,-178,110,175,-29,28,175,-177,30,84,-175,174,84,-182,118,29,-180,179,29,-179,32,36,-91,90,36,-90,111,112,-33,32,112,-37,34,85,-39,38,85,-87,117,33,-117,116,33,-38,36,40,-90,89,40,-89,36,112,-41,40,112,-114,38,86,-43,42,86,-88,37,41,-117,116,41,-116,24,81,-355,354,81,-366,27,356,-65,64,356,-358,83,24,-356,355,24,-355,44,60,-183,182,60,-189,47,184,-64,63,184,-186,82,44,-184,183,44,-183,6,70,-53,52,70,-72,101,1,-101,100,1,-55,74,56,-74,73,56,-59,97,98,-1,0,98,-56,0,130,-76,75,130,-132,0,55,-131,130,55,-136,55,72,-136,135,72,-135,1,132,-55,54,132,-134,60,45,-189,188,45,-188,61,49,-107,106,49,-106,63,185,-47,46,185,-187,64,357,-27,26,357,-359,22,65,-122,121,65,-121,18,66,-141,140,66,-140,14,67,-149,148,67,-148,68,67,-11,10,67,-15,5,69,-156,155,69,-155,70,162,-8,7,162,-164,71,70,-54,53,70,-8,99,100,-73,72,100,-55,134,72,-134,133,72,-55,74,73,-58,57,73,-60,1,75,-133,132,75,-132,165,158,-2,1,158,-76,157,150,-4,3,150,-77,77,9,-79,78,9,-14,143,78,-150,149,78,-14,142,79,-142,141,79,-18,122,108,-22,21,108,-81,364,365,-26,25,365,-82,27,83,-357,356,83,-356,83,27,-174,173,27,-173,84,31,-182,181,31,-181,85,35,-87,86,35,-40,86,39,-88,87,39,-44,88,114,-42,41,114,-116,89,88,-38,37,88,-42,90,89,-34,33,89,-38,91,177,-30,29,177,-179,23,92,-171,170,92,-170,93,137,-20,19,137,-139,15,94,-147,146,94,-146,11,95,-16,15,95,-95,4,96,-154,153,96,-153,6,97,-162,161,97,-161,97,6,-99,98,6,-53,71,99,-53,52,99,-99,100,99,-54, +53,99,-72,7,101,-54,53,101,-101,164,101,-164,163,101,-8,102,5,-157,156,5,-156,104,103,-15,14,103,-11,62,106,-51,50,106,-106,107,106,-52,51,106,-63,82,183,-48,47,183,-185,109,108,-25,24,108,-82,167,109,-167,166,109,-25,175,110,-175,174,110,-31,112,111,-39,38,111,-35,113,112,-43,42,112,-39,113,42,-115,114,42,-88,115,114,-44,43,114,-88,39,116,-44,43,116,-116,117,116,-36,35,116,-40,118,179,-32,31,179,-181,27,119,-173,172,119,-172,119,27,-121,120,27,-65,121,120,-27,26,120,-65,81,108,-26,25,108,-123,123,60,-125,124,60,-45,124,44,-126,125,44,-83,126,125,-48,47,125,-83,127,126,-64,63,126,-48,128,127,-47,46,127,-64,60,123,-46,45,123,-130,130,56,-132,131,56,-75,132,131,-58,57,131,-75,132,57,-134,133,57,-60,73,134,-60,59,134,-134,135,134,-59,58,134,-74,130,135,-57,56,135,-59,137,136,-93,92,136,-21,137,92,-139,138,92,-24,139,138,-66,65,138,-24,140,139,-23,22,139,-66,80,142,-22,21,142,-142,142,80,-137,136,80,-21,144,143,-17,16,143,-80,145,144,-94,93,144,-17,145,93,-147,146,93,-20,147,146,-67,66,146,-20,148,147,-19,18,147,-67,79,143,-18,17,143,-150,151,150,-9,8,150,-78,152,151,-96,95,151,-9,153,152,-12,11,152,-96,153,11,-155,154,11,-69,154,68,-156,155,68,-11,156,155,-104,103,155,-11,157,156,-10,9,156,-104,150,157,-78,77,157,-10,159,158,-3,2,158,-77,160,159,-97,96,159,-3,161,160,-5,4,160,-97,69,162,-5,4,162,-162,162,69,-164,163,69,-6,102,164,-6,5,164,-164,165,164,-4,3,164,-103,158,165,-77,76,165,-4,110,167,-31,30,167,-167,167,110,-169,168,110,-29,168,28,-170,169,28,-92,170,169,-30,29,169,-92,171,170,-119,118,170,-30,172,171,-32,31,171,-119,173,172,-85,84,172,-32,166,173,-31,30,173,-85,111,175,-35,34,175,-175,175,111,-177,176,111,-33,176,32,-178,177,32,-91,177,90,-179,178,90,-34,179,178,-118,117,178,-34,180,179,-36,35,179,-118,181,180,-86,85,180,-36,174,181,-35,34,181,-86,107,183,-49,48,183,-183,184,183,-52,51,183,-108,185,184,-63,62,184,-52,185,62,-187,186,62,-51,188,187,-62,61,187,-50,188,61,-183,182,61,-49,189,326,-253,252,326,-326,282,281,-228,227,281,-239,195,247,-329,328,247,-330,232,249,-276,275,249,-277,190,332,-279,278,332, +-332,274,327,-190,189,327,-327,191,318,-254,253,318,-318,192,324,-280,279,324,-324,321,320,-247,246,320,-194,273,319,-192,191,319,-319,197,201,-255,254,201,-256,13,104,-199,198,104,-281,245,244,-201,200,244,-203,272,271,-198,197,271,-202,313,312,-202,201,312,-256,244,316,-203,202,316,-316,314,313,-272,271,313,-202,203,307,-257,256,307,-312,243,310,-205,204,310,-310,270,308,-204,203,308,-308,284,283,-206,205,283,-258,242,295,-207,206,295,-295,265,289,-222,221,289,-289,336,335,-270,269,335,-206,335,334,-206,205,334,-285,207,333,-261,260,333,-341,294,338,-207,206,338,-338,344,343,-269,268,343,-210,343,342,-210,209,342,-286,211,341,-262,261,341,-349,293,346,-211,210,346,-346,266,217,-268,267,217,-214,217,287,-214,213,287,-287,215,219,-263,262,219,-264,292,291,-215,214,291,-219,265,221,-267,266,221,-218,217,221,-288,287,221,-289,219,223,-264,263,223,-265,290,222,-292,291,222,-219,207,362,-259,258,362,-364,359,360,-242,241,360,-209,260,361,-208,207,361,-363,225,349,-238,237,349,-354,352,351,-241,240,351,-227,349,225,-351,350,225,-260,195,229,-248,247,229,-249,278,277,-191,190,277,-232,251,250,-234,233,250,-236,232,275,-190,189,275,-275,302,301,-253,252,301,-190,189,301,-233,232,301,-307,232,306,-250,249,306,-306,304,303,-232,231,303,-191,237,353,-46,45,353,-188,105,49,-282,281,49,-239,186,352,-47,46,352,-241,358,359,-27,26,359,-242,22,121,-243,242,121,-296,18,140,-244,243,140,-311,14,148,-245,244,148,-317,14,244,-200,199,244,-246,194,322,-247,246,322,-322,247,196,-330,329,196,-331,248,230,-248,247,230,-197,231,277,-250,249,277,-277,305,304,-250,249,304,-232,236,250,-235,234,250,-252,190,303,-253,252,303,-303,332,190,-326,325,190,-253,324,192,-318,317,192,-254,13,198,-256,255,198,-255,13,255,-150,149,255,-313,311,141,-257,256,141,-18,122,21,-284,283,21,-258,364,25,-364,363,25,-259,208,360,-261,260,360,-362,339,208,-341,340,208,-261,347,212,-349,348,212,-262,220,216,-264,263,216,-263,224,220,-265,264,220,-264,290,289,-223,222,289,-266,222,265,-219,218,265,-267,218,266,-215,214,266,-268,345,344,-211,210,344,-269,206,337,-270, +269,337,-337,309,308,-205,204,308,-271,202,315,-272,271,315,-315,200,202,-273,272,202,-272,193,320,-274,273,320,-320,195,328,-275,274,328,-328,229,195,-276,275,195,-275,275,276,-230,229,276,-249,277,230,-277,276,230,-249,196,230,-279,278,230,-278,331,330,-279,278,330,-197,322,194,-324,323,194,-280,104,14,-281,280,14,-200,239,50,-282,281,50,-106,282,228,-282,281,228,-240,351,350,-227,226,350,-260,284,207,-284,283,207,-259,334,333,-285,284,333,-208,342,341,-286,285,341,-212,287,219,-287,286,219,-216,288,223,-288,287,223,-220,264,223,-290,289,223,-289,290,224,-290,289,224,-265,220,224,-292,291,224,-291,220,291,-217,216,291,-293,347,346,-213,212,346,-294,208,339,-295,294,339,-339,241,208,-296,295,208,-295,121,26,-296,295,26,-242,258,25,-284,283,25,-123,225,237,-298,297,237,-297,259,225,-299,298,225,-298,299,226,-299,298,226,-260,300,240,-300,299,240,-227,128,46,-301,300,46,-241,237,45,-297,296,45,-130,251,233,-303,302,233,-302,303,234,-303,302,234,-252,236,234,-305,304,234,-304,250,236,-306,305,236,-305,306,235,-306,305,235,-251,301,233,-307,306,233,-236,308,269,-308,307,269,-206,206,269,-310,309,269,-309,310,242,-310,309,242,-207,140,22,-311,310,22,-243,257,21,-312,311,21,-142,205,257,-308,307,257,-312,313,203,-313,312,203,-257,314,270,-314,313,270,-204,204,270,-316,315,270,-315,316,243,-316,315,243,-205,148,18,-317,316,18,-244,256,17,-313,312,17,-150,318,197,-318,317,197,-255,319,272,-319,318,272,-198,320,200,-320,319,200,-273,245,200,-322,321,200,-321,199,245,-323,322,245,-322,199,322,-281,280,322,-324,324,198,-324,323,198,-281,198,324,-255,254,324,-318,326,191,-326,325,191,-254,327,273,-327,326,273,-192,328,193,-328,327,193,-274,328,329,-194,193,329,-247,194,246,-331,330,246,-330,279,194,-332,331,194,-331,332,192,-332,331,192,-280,192,332,-254,253,332,-326,285,211,-335,334,211,-334,209,285,-336,335,285,-335,268,209,-337,336,209,-336,337,210,-337,336,210,-269,338,293,-338,337,293,-211,339,212,-339,338,212,-294,212,339,-262,261,339,-341,333,211,-341,340,211,-262,286,215,-343,342,215,-342,213,286,-344,343,286,-343,267, +213,-345,344,213,-344,214,267,-346,345,267,-345,346,292,-346,345,292,-215,347,216,-347,346,216,-293,216,347,-263,262,347,-349,341,215,-349,348,215,-263,282,227,-351,350,227,-350,351,228,-351,350,228,-283,352,239,-352,351,239,-229,50,239,-187,186,239,-353,353,238,-188,187,238,-50,227,238,-350,349,238,-354,355,354,-126,125,354,-125,356,355,-127,126,355,-126,356,126,-358,357,126,-128,357,127,-359,358,127,-129,359,358,-301,300,358,-129,360,359,-300,299,359,-301,360,299,-362,361,299,-299,361,298,-363,362,298,-298,362,297,-364,363,297,-297,129,364,-297,296,364,-364,129,123,-365,364,123,-366,354,365,-125,124,365,-124,366,367,-387,386,367,-388,367,368,-388,387,368,-389,368,369,-389,388,369,-390,369,370,-390,389,370,-391,370,371,-391,390,371,-392,371,372,-392,391,372,-393,372,373,-393,392,373,-394,373,374,-394,393,374,-395,374,375,-395,394,375,-396,375,376,-396,395,376,-397,376,377,-397,396,377,-398,377,378,-398,397,378,-399,378,379,-399,398,379,-400,379,380,-400,399,380,-401,380,381,-401,400,381,-402,381,382,-402,401,382,-403,382,383,-403,402,383,-404,383,384,-404,403,384,-405,384,385,-405,404,385,-406,385,366,-406,405,366,-387,367,366,-407,368,367,-407,369,368,-407,370,369,-407,371,370,-407,372,371,-407,373,372,-407,374,373,-407,375,374,-407,376,375,-407,377,376,-407,378,377,-407,379,378,-407,380,379,-407,381,380,-407,382,381,-407,383,382,-407,384,383,-407,385,384,-407,366,385,-407,427,428,-430,428,430,-430,430,431,-430,431,432,-430,432,433,-430,433,434,-430,434,435,-430,435,436,-430,436,437,-430,437,438,-430,438,439,-430,439,440,-430,440,441,-430,441,442,-430,442,443,-430,443,444,-430,444,445,-430,445,446,-430,446,447,-430,447,427,-430,386,387,-408,407,387,-409,387,388,-409,408,388,-410,388,389,-410,409,389,-411,389,390,-411,410,390,-412,390,391,-412,411,391,-413,391,392,-413,412,392,-414,392,393,-414,413,393,-415,393,394,-415,414,394,-416,394,395,-416,415,395,-417,395,396,-417,416,396,-418,396,397,-418,417,397,-419,397,398,-419,418,398,-420,398,399,-420,419,399,-421,399,400,-421,420,400,-422,400,401,-422,421,401,-423,401, +402,-423,422,402,-424,402,403,-424,423,403,-425,403,404,-425,424,404,-426,404,405,-426,425,405,-427,405,386,-427,426,386,-408,407,408,-428,427,408,-429,408,409,-429,428,409,-431,409,410,-431,430,410,-432,410,411,-432,431,411,-433,411,412,-433,432,412,-434,412,413,-434,433,413,-435,413,414,-435,434,414,-436,414,415,-436,435,415,-437,415,416,-437,436,416,-438,416,417,-438,437,417,-439,417,418,-439,438,418,-440,418,419,-440,439,419,-441,419,420,-441,440,420,-442,420,421,-442,441,421,-443,421,422,-443,442,422,-444,422,423,-444,443,423,-445,423,424,-445,444,424,-446,424,425,-446,445,425,-447,425,426,-447,446,426,-448,426,407,-448,447,407,-428,602,603,-602,601,603,-605,605,606,-603,602,606,-604,606,607,-604,603,607,-609,603,608,-605,604,608,-610,610,611,-606,605,611,-607,612,613,-611,610,613,-612,613,614,-612,611,614,-616,611,615,-607,606,615,-608,615,616,-608,607,616,-618,614,618,-616,615,618,-617,618,619,-617,616,619,-621,616,620,-618,617,620,-622,608,622,-610,609,622,-624,607,617,-609,608,617,-623,617,621,-623,622,621,-625,622,624,-624,623,624,-626,612,626,-614,613,626,-628,626,628,-628,627,628,-630,627,629,-632,631,629,-631,613,627,-615,614,627,-632,628,632,-630,629,632,-634,632,634,-634,633,634,-636,633,635,-638,637,635,-637,629,633,-631,630,633,-638,630,637,-640,639,637,-639,637,636,-639,638,636,-641,638,640,-643,642,640,-642,639,638,-644,643,638,-643,614,631,-619,618,631,-645,631,630,-645,644,630,-640,644,639,-646,645,639,-644,618,644,-620,619,644,-646,624,646,-626,625,646,-648,621,648,-625,624,648,-647,646,648,-651,650,648,-650,647,646,-652,651,646,-651,620,652,-622,621,652,-649,619,653,-621,620,653,-653,652,653,-656,655,653,-655,648,652,-650,649,652,-656,649,655,-658,657,655,-657,655,654,-657,656,654,-659,656,658,-661,660,658,-660,657,656,-662,661,656,-661,651,650,-664,663,650,-663,650,649,-663,662,649,-658,662,657,-665,664,657,-662,663,662,-666,665,662,-665,619,645,-654,653,645,-667,645,643,-667,666,643,-668,667,668,-667,666,668,-670,666,669,-654,653,669,-655,643,642,-668,667,642,-671,642,641,-671,670,641,-672, +671,672,-671,670,672,-674,670,673,-668,667,673,-669,673,674,-669,668,674,-676,672,676,-674,673,676,-675,676,677,-675,674,677,-679,674,678,-676,675,678,-680,669,680,-655,654,680,-659,668,675,-670,669,675,-681,675,679,-681,680,679,-682,680,681,-659,658,681,-660,610,682,-613,612,682,-684,605,684,-611,610,684,-683,684,685,-683,682,685,-687,682,686,-684,683,686,-688,602,688,-606,605,688,-685,601,689,-603,602,689,-689,689,690,-689,688,690,-692,688,691,-685,684,691,-686,691,692,-686,685,692,-694,690,694,-692,691,694,-693,694,695,-693,692,695,-697,692,696,-694,693,696,-698,686,698,-688,687,698,-700,685,693,-687,686,693,-699,693,697,-699,698,697,-701,698,700,-700,699,700,-702,634,632,-704,703,632,-703,632,628,-703,702,628,-705,702,704,-707,706,704,-706,703,702,-708,707,702,-707,628,626,-705,704,626,-709,626,612,-709,708,612,-684,708,683,-710,709,683,-688,704,708,-706,705,708,-710,705,709,-712,711,709,-711,709,687,-711,710,687,-700,710,699,-713,712,699,-702,711,710,-714,713,710,-713,707,706,-716,715,706,-715,706,705,-715,714,705,-712,714,711,-717,716,711,-714,715,714,-718,717,714,-717,700,718,-702,701,718,-720,697,720,-701,700,720,-719,720,721,-719,718,721,-723,718,722,-720,719,722,-724,696,724,-698,697,724,-721,695,725,-697,696,725,-725,725,726,-725,724,726,-728,724,727,-721,720,727,-722,727,728,-722,721,728,-730,726,730,-728,727,730,-729,730,731,-729,728,731,-733,728,732,-730,729,732,-734,722,734,-724,723,734,-736,721,729,-723,722,729,-735,729,733,-735,734,733,-737,734,736,-736,735,736,-738,717,716,-740,739,716,-739,716,713,-739,738,713,-741,738,740,-743,742,740,-742,739,738,-744,743,738,-743,713,712,-741,740,712,-745,712,701,-745,744,701,-720,744,719,-746,745,719,-724,740,744,-742,741,744,-746,741,745,-748,747,745,-747,745,723,-747,746,723,-736,746,735,-749,748,735,-738,747,746,-750,749,746,-749,743,742,-752,751,742,-751,742,741,-751,750,741,-748,750,747,-753,752,747,-750,751,750,-754,753,750,-753,481,558,-449,448,558,-481,558,482,-481,480,482,-558,483,485,-559,558,485,-483,594,483,-482,481,483,-559,482,561,-558,557,561, +-485,561,581,-485,484,581,-450,582,556,-562,561,556,-582,485,582,-483,482,582,-562,584,565,-486,485,565,-583,565,585,-583,582,585,-557,587,452,-566,565,452,-586,562,587,-585,584,587,-566,590,566,-595,594,566,-484,566,584,-484,483,584,-486,595,562,-567,566,562,-585,451,595,-591,590,595,-567,449,581,-597,596,581,-572,596,571,-565,564,571,-494,571,494,-494,493,494,-487,581,556,-572,571,556,-495,564,493,-496,495,493,-580,495,579,-451,450,579,-497,579,497,-497,496,497,-587,493,486,-580,579,486,-498,486,498,-498,497,498,-581,497,580,-587,586,580,-500,580,500,-500,499,500,-454,498,563,-581,580,563,-501,556,585,-495,494,585,-573,494,572,-487,486,572,-499,572,501,-499,498,501,-564,585,452,-573,572,452,-502,502,577,-452,451,577,-596,577,503,-596,595,503,-563,577,504,-504,503,504,-488,502,589,-578,577,589,-505,503,576,-563,562,576,-588,576,505,-588,587,505,-453,576,506,-506,505,506,-568,503,487,-577,576,487,-507,487,507,-507,506,507,-465,506,464,-568,567,464,-509,464,509,-509,508,509,-456,507,591,-465,464,591,-510,589,510,-505,504,510,-466,504,465,-488,487,465,-508,465,511,-508,507,511,-592,510,454,-466,465,454,-512,452,505,-502,501,505,-575,501,574,-564,563,574,-513,513,488,-575,574,488,-513,567,513,-506,505,513,-575,563,512,-501,500,512,-464,500,463,-454,453,463,-515,515,592,-464,463,592,-515,488,515,-513,512,515,-464,516,467,-489,488,467,-516,467,517,-516,515,517,-593,518,456,-468,467,456,-518,597,518,-517,516,518,-468,508,466,-568,567,466,-514,466,516,-514,513,516,-489,519,597,-467,466,597,-517,455,519,-509,508,519,-467,520,560,-450,449,560,-485,560,521,-485,484,521,-558,522,489,-561,560,489,-522,569,522,-521,520,522,-561,521,559,-558,557,559,-481,559,523,-481,480,523,-449,524,583,-560,559,583,-524,489,524,-522,521,524,-560,525,468,-490,489,468,-525,468,526,-525,524,526,-584,527,457,-469,468,457,-527,570,527,-526,525,527,-469,528,469,-570,569,469,-523,469,525,-523,522,525,-490,529,570,-470,469,570,-526,458,529,-529,528,529,-470,450,530,-496,495,530,-579,495,578,-565,564,578,-532,578,532,-532,531,532,-491,530,588,-579,578, +588,-533,564,531,-597,596,531,-569,596,568,-450,449,568,-521,568,533,-521,520,533,-570,531,490,-569,568,490,-534,490,534,-534,533,534,-471,533,470,-570,569,470,-529,470,535,-529,528,535,-459,534,573,-471,470,573,-536,588,536,-533,532,536,-475,532,474,-491,490,474,-535,474,537,-535,534,537,-574,536,459,-475,474,459,-538,538,472,-459,458,472,-530,472,539,-530,529,539,-571,540,491,-473,472,491,-540,575,540,-539,538,540,-473,539,471,-571,570,471,-528,471,541,-528,527,541,-458,542,593,-472,471,593,-542,491,542,-540,539,542,-472,543,476,-492,491,476,-543,476,544,-543,542,544,-594,545,460,-477,476,460,-545,600,545,-544,543,545,-477,546,477,-576,575,477,-541,477,543,-541,540,543,-492,547,600,-478,477,600,-544,461,547,-547,546,547,-478,459,548,-538,537,548,-476,537,475,-574,573,475,-550,475,550,-550,549,550,-493,548,598,-476,475,598,-551,573,549,-536,535,549,-474,535,473,-459,458,473,-539,473,551,-539,538,551,-576,549,492,-474,473,492,-552,492,552,-552,551,552,-479,551,478,-576,575,478,-547,478,553,-547,546,553,-462,552,599,-479,478,599,-554,598,554,-551,550,554,-480,550,479,-493,492,479,-553,479,555,-553,552,555,-600,554,462,-480,479,462,-556,481,448,-605,604,448,-602,594,481,-610,609,481,-605,590,594,-624,623,594,-610,451,590,-626,625,590,-624,450,496,-635,634,496,-636,496,586,-636,635,586,-637,586,499,-637,636,499,-641,499,453,-641,640,453,-642,502,451,-648,647,451,-626,589,502,-652,651,502,-648,455,509,-660,659,509,-661,509,591,-661,660,591,-662,510,589,-664,663,589,-652,591,511,-662,661,511,-665,511,454,-665,664,454,-666,454,510,-666,665,510,-664,453,514,-642,641,514,-672,514,592,-672,671,592,-673,592,517,-673,672,517,-677,517,456,-677,676,456,-678,456,518,-678,677,518,-679,518,597,-679,678,597,-680,597,519,-680,679,519,-682,519,455,-682,681,455,-660,448,523,-602,601,523,-690,523,583,-690,689,583,-691,583,526,-691,690,526,-695,526,457,-695,694,457,-696,530,450,-704,703,450,-635,588,530,-708,707,530,-704,536,588,-716,715,588,-708,459,536,-718,717,536,-716,457,541,-696,695,541,-726,541,593,-726,725,593,-727,593,544,-727, +726,544,-731,544,460,-731,730,460,-732,460,545,-732,731,545,-733,545,600,-733,732,600,-734,600,547,-734,733,547,-737,547,461,-737,736,461,-738,548,459,-740,739,459,-718,598,548,-744,743,548,-740,461,553,-738,737,553,-749,553,599,-749,748,599,-750,554,598,-752,751,598,-744,599,555,-750,749,555,-753,555,462,-753,752,462,-754,462,554,-754,753,554,-752 + } + Edges: *2244 { + a: 0,36,50,16,2,26,54,42,890,905,534,558,38,44,60,368,68,48,72,78,62,71,65,365,70,76,77,83,89,431,102,356,94,108,114,104,437,122,350,112,126,140,125,440,234,344,130,242,150,138,160,164,152,170,460,174,180,162,184,188,176,194,466,198,204,186,208,190,200,196,472,203,209,210,228,132,224,136,478,227,232,236,446,252,341,240,260,264,254,322,8,335,328,258,593,11,272,383,275,280,554,293,22,545,294,312,282,304,286,317,287,401,318,324,256,584,6,332,1034,338,704,342,671,348,770,354,812,362,74,366,851,374,894,380,274,389,546,400,310,398,284,402,725,419,4,420,40,425,64,436,84,443,106,449,120,238,596,450,695,462,154,468,178,473,202,479,226,482,635,488,215,494,191,500,989,504,941,512,758,516,800,522,80,528,836,30,884,23,288,18,20,281,384,24,278,570,28,580,46,578,66,587,582,329,590,10,1020,604,602,124,616,144,622,168,620,192,626,220,134,137,638,484,642,233,650,206,656,998,660,950,128,131,674,347,683,438,684,689,686,2114,692,698,696,2129,702,710,708,719,718,720,299,298,728,407,737,316,738,392,746,311,305,760,116,119,767,514,110,113,776,353,785,780,434,107,796,794,88,101,100,809,521,92,95,818,359,827,428,832,830,41,56,59,842,533,53,52,857,371,860,575,866,47,414,880,878,5,32,35,17,539,12,14,377,376,906,566,914,29,408,929,924,608,935,148,143,142,944,509,158,161,956,665,962,461,155,977,972,614,983,172,167,166,995,502,182,185,1004,658,1010,467,179,1025,266,269,1028,598,263,262,1043,334,1048,1046,323,257,1058,1094,1109,1068,1056,1080,1112,1100,1944,1958,1592,1616,1092,1098,1118,1422,1127,1108,1130,1136,1116,1124,1120,1418,1133,1132,1138,1142,1160,1151,1166,1172,1158,1181,1169,1184,1199,1178,1292,1187,1301,1208,1198,1217,1223,1206,1229,1512,1232,1238,1222,1241,1247,1230,1253,1518,1256,1262,1246,1265,1242,1254,1248,1524,1258,1264,1270,1288,1190,1278,1193,1530,1282,1284,1290,1310,1300,1319,1324,1308,1067,1318,1648,1064,1326,1438,1330,1337,1608,1346,1074,1598,1354,1372,1340,1361,1343,1370,1342,1454,1376,1384,1313,1638,1066,1391,2088,1397,1758,1400,1724,1406,1824,1412,1866,1421,1128,1424,1904,1428,1954,1434,1331,1442,1606,1452, +1367,1457,1338,1460,1778,1474,1061,1480,1097,1478,1121,1493,1144,1498,1163,1504,1180,1295,1655,1508,1748,1522,1211,1528,1235,1526,1259,1532,1283,1541,1688,1547,1268,1553,1244,1559,2042,1562,1994,1571,1812,1574,1854,1580,1134,1586,1890,1088,1938,1076,1348,1078,1079,1336,1444,1082,1332,1630,1085,1637,1103,1126,1640,1382,1644,1062,2078,1661,1656,1176,1673,1204,1679,1228,1674,1252,1680,1277,1188,1192,1692,1536,1700,1286,1709,1260,1715,2052,1718,2004,1182,1186,1402,1496,1744,1742,1745,2153,1751,1752,1754,2138,1760,1766,1775,1780,1352,1350,1782,1462,1790,1368,1796,1446,1800,1366,1360,1817,1170,1174,1820,1566,1164,1168,1408,1838,1488,1162,1853,1848,1140,1154,1152,1862,1576,1146,1150,1414,1487,1889,1884,1096,1110,1114,1896,1588,1106,1104,1910,1426,1919,1628,1920,1102,1472,1937,1932,1060,1086,1090,1070,1594,1072,1073,1432,1433,1964,1620,1968,1084,1466,1984,1982,1662,1988,1200,1196,1194,1998,1564,1212,1216,2010,1720,2021,1514,1210,2032,2030,1668,2036,1224,1220,1218,2048,1554,1236,1240,2058,1710,2069,1520,1234,2080,1325,1322,2082,1650,1316,1314,1386,2100,1378,1312,2116,248,251,2120,455,245,244,2135,340,1298,1392,2144,1296,1302,1510,2159,1306,2165,1294,2166,1502,2176,444,239,2184,2190,2196,2202,2208,2214,2220,2226,2232,2238,2244,2250,2256,2262,2268,2274,2280,2286,2292,2298,2189,2195,2201,2207,2213,2219,2225,2231,2237,2243,2249,2255,2261,2267,2273,2279,2285,2291,2297,2303,2186,2188,2194,2200,2206,2212,2218,2224,2230,2236,2242,2248,2254,2260,2266,2272,2278,2284,2290,2296,2305,2306,2309,2312,2315,2318,2321,2324,2327,2330,2333,2336,2339,2342,2345,2348,2351,2354,2357,2360,2426,2428,2429,2434,2435,2440,2441,2446,2447,2452,2453,2458,2459,2464,2465,2470,2471,2476,2477,2482,2483,2488,2489,2494,2495,2500,2501,2506,2507,2512,2513,2518,2519,2524,2525,2530,2531,2536,2537,2543,2546,2548,2364,2365,2366,2554,2367,2368,2560,2370,2371,2566,2373,2374,2572,2376,2377,2578,2379,2380,2584,2382,2383,2590,2385,2386,2596,2388,2389,2602,2391,2392,2608,2394,2395,2614,2397,2398,2620,2400,2401,2626,2403,2404,2632,2406,2407,2638,2409,2410,2644,2412,2413,2650, +2415,2416,2656,2418,2419,2421,3437,3443,3461,3467,3434,3452,3506,3524,3530,3536,3554,3560,3466,3472,3490,3496,3563,3569,3587,3593,3522,3516,3498,3492,3626,3642,3696,3714,3622,3616,3598,3592,3658,3665,3683,3689,3755,3760,3778,3784,3718,3712,3694,3688,3810,3804,3786,3780,3850,3856,3874,3880,3818,3836,3890,3908,3876,3882,3900,3906,3912,3930,3984,4002,3976,3982,4000,4006,4042,4048,4066,4072,4010,4028,4082,4100,4068,4074,4092,4098,4104,4122,4176,4194,4168,4174,4192,4198,3436,3432,3442,3438,3448,3444,3446,3450,3460,3456,3462,3468,3470,3474,3484,3480,3482,3486,3494,3500,3508,3504,3510,3518,3533,3532,3539,3538,3545,3544,3540,3550,3557,3556,3562,3568,3564,3574,3581,3580,3576,3586,3588,3594,3605,3604,3610,3612,3628,3624,3634,3630,3641,3640,3636,3646,3652,3648,3654,3664,3660,3670,3677,3676,3672,3682,3684,3690,3701,3700,3706,3708,3725,3724,3731,3730,3736,3732,3734,3738,3749,3748,3754,3756,3758,3762,3772,3768,3770,3774,3782,3788,3796,3792,3798,3806,3820,3816,3826,3822,3832,3828,3830,3834,3844,3840,3846,3852,3854,3858,3868,3864,3866,3870,3878,3884,3892,3888,3894,3902,3917,3916,3923,3922,3929,3928,3924,3934,3941,3940,3946,3952,3948,3958,3965,3964,3960,3970,3972,3978,3989,3988,3994,3996,4012,4008,4018,4014,4024,4020,4022,4026,4036,4032,4038,4044,4046,4050,4060,4056,4058,4062,4070,4076,4084,4080,4086,4094,4109,4108,4115,4114,4121,4120,4116,4126,4133,4132,4138,4144,4140,4150,4157,4156,4152,4162,4164,4170,4181,4180,4186,4188,4204,2666,2664,4202,2668,2669,2672,2670,2674,2676,2680,2681,4208,2686,2687,2690,2688,2692,2696,2694,2698,2700,2704,2705,2710,2712,2716,2717,2718,2722,2724,2728,2729,2734,2735,2736,4214,2740,2741,2746,2752,2753,4220,2758,2759,2760,2764,2765,2766,2770,2771,2776,2777,2774,2783,2784,2788,2789,4226,2790,4228,2794,2795,4234,2800,2801,2798,2807,2812,2813,2810,4240,2818,2819,4246,2824,2825,2822,2831,2828,2836,2837,2843,2849,2846,2855,2856,4250,2860,2861,2862,2866,2872,2873,2870,4256,2879,2876,2880,2884,2886,2890,2896,2897,2894,2903,2908,2909,2906,2914,2915,4262,2920,4264,2921,2918,4270,2927,2924,2932,4274,2933,2930,2939, +4282,2945,2942,4288,2951,2948,2956,2957,2962,2963,2964,2968,2969,2974,2980,2981,4300,2986,2987,4306,2988,2992,2993,2998,3000,3004,3005,4312,3006,3010,4318,3012,4324,3016,3017,4330,3022,3023,3024,3028,3034,4336,3040,3041,3046,3048,3052,3053,3054,3058,3060,3064,3065,3070,3071,3072,3076,4348,3078,3082,4354,3084,3088,3089,3094,3096,3100,3101,4360,3102,3106,4366,3108,3112,3113,3118,3119,3120,3124,3125,3130,3136,3137,3142,3143,3148,4370,3149,3146,3154,3155,3160,3161,3158,4376,3167,3164,3172,3173,3179,3185,3182,3191,3196,3197,3194,3203,3209,3206,3215,3212,3220,4382,3221,3218,3227,3233,3230,4388,3239,3236,3240,3244,3245,3246,3250,3252,3256,3257,3262,3263,3264,3268,4396,3270,3274,4402,3276,3280,3281,3286,3288,3292,3293,4408,3294,3298,4414,3300,4420,3304,3305,4426,3310,3311,3312,3316,3317,3322,4432,3328,3329,4438,3334,3335,3340,4442,3341,3338,3346,3347,3352,3353,3350,4448,3359,3356,3364,3365,3371,3377,3374,3383,3388,3389,3386,3395,4456,3401,3398,4462,3407,3404,3412,4466,3413,3410,3419,4474,3425,3422,4480,3431,3428,1,7,13,19,25,31,37,43,49,55,61,67,73,79,85,91,97,103,109,115,121,127,133,139,145,151,157,163,169,175,181,187,193,199,205,211,217,223,229,235,241,247,253,259,265,271,277,283,289,295,301,307,313,319,325,331,337,343,349,355,361,367,373,379,385,391,397,403,409,415,421,427,433,439,445,451,457,463,469,475,481,487,493,499,505,511,517,523,529,535,541,547,553,559,565,571,577,583,589,595,601,607,613,619,625,631,637,643,649,655,661,667,673,679,685,691,697,703,709,715,721,727,733,739,745,751,757,763,769,775,781,787,793,799,805,811,817,823,829,835,841,847,853,859,865,871,877,883,889,895,901,907,913,919,925,931,937,943,949,955,961,967,973,979,985,991,997,1003,1009,1015,1021,1027,1033,1039,1045,1051,1057,1063,1069,1075,1081,1087,1093,1099,1105,1111,1117,1123,1129,1135,1141,1147,1153,1159,1165,1171,1177,1183,1189,1195,1201,1207,1213,1219,1225,1231,1237,1243,1249,1255,1261,1267,1273,1279,1285,1291,1297,1303,1309,1315,1321,1327,1333,1339,1345,1351,1357,1363,1369,1375,1381,1387,1393,1399,1405,1411,1417,1423,1429,1435,1441,1447,1453, +1459,1465,1471,1477,1483,1489,1495,1501,1507,1513,1519,1525,1531,1537,1543,1549,1555,1561,1567,1573,1579,1585,1591,1597,1603,1609,1615,1621,1627,1633,1639,1645,1651,1657,1663,1669,1675,1681,1687,1693,1699,1705,1711,1717,1723,1729,1735,1741,1747,1753,1759,1765,1771,1777,1783,1789,1795,1801,1807,1813,1819,1825,1831,1837,1843,1849,1855,1861,1867,1873,1879,1885,1891,1897,1903,1909,1915,1921,1927,1933,1939,1945,1951,1957,1963,1969,1975,1981,1987,1993,1999,2005,2011,2017,2023,2029,2035,2041,2047,2053,2059,2065,2071,2077,2083,2089,2095,2101,2107,2113,2119,2125,2131,2137,2143,2149,2155,2161,2167,2173,2179,2185,2191,2197,2203,2209,2215,2221,2227,2233,2239,2245,2251,2257,2263,2269,2275,2281,2287,2293,2299,2425,2431,2437,2443,2449,2455,2461,2467,2473,2479,2485,2491,2497,2503,2509,2515,2521,2527,2533,2539,2545,2551,2557,2563,2569,2575,2581,2587,2593,2599,2605,2611,2617,2623,2629,2635,2641,2647,2653,2659,2665,2671,2677,2683,2689,2695,2701,2707,2713,2719,2725,2731,2737,2743,2749,2755,2761,2767,2773,2779,2785,2791,2797,2803,2809,2815,2821,2827,2833,2839,2845,2851,2857,2863,2869,2875,2881,2887,2893,2899,2905,2911,2917,2923,2929,2935,2941,2947,2953,2959,2965,2971,2977,2983,2989,2995,3001,3007,3013,3019,3025,3031,3037,3043,3049,3055,3061,3067,3073,3079,3085,3091,3097,3103,3109,3115,3121,3127,3133,3139,3145,3151,3157,3163,3169,3175,3181,3187,3193,3199,3205,3211,3217,3223,3229,3235,3241,3247,3253,3259,3265,3271,3277,3283,3289,3295,3301,3307,3313,3319,3325,3331,3337,3343,3349,3355,3361,3367,3373,3379,3385,3391,3397,3403,3409,3415,3421,3427,3433,3439,3445,3451,3457,3463,3469,3475,3481,3487,3493,3499,3505,3511,3517,3523,3529,3535,3541,3547,3553,3559,3565,3571,3577,3583,3589,3595,3601,3607,3613,3619,3625,3631,3637,3643,3649,3655,3661,3667,3673,3679,3685,3691,3697,3703,3709,3715,3721,3727,3733,3739,3745,3751,3757,3763,3769,3775,3781,3787,3793,3799,3805,3811,3817,3823,3829,3835,3841,3847,3853,3859,3865,3871,3877,3883,3889,3895,3901,3907,3913,3919,3925,3931,3937,3943,3949,3955,3961,3967,3973,3979,3985,3991,3997,4003,4009,4015,4021,4027,4033, +4039,4045,4051,4057,4063,4069,4075,4081,4087,4093,4099,4105,4111,4117,4123,4129,4135,4141,4147,4153,4159,4165,4171,4177,4183,4189,4195,4201,4207,4213,4219,4225,4231,4237,4243,4249,4255,4261,4267,4273,4279,4285,4291,4297,4303,4309,4315,4321,4327,4333,4339,4345,4351,4357,4363,4369,4375,4381,4387,4393,4399,4405,4411,4417,4423,4429,4435,4441,4447,4453,4459,4465,4471,4477,4483 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *13464 { + a: -0.350430220365524,0,0.936588823795319,-0.00389222567901015,-0.00111696659587324,0.999991714954376,-0.348264694213867,0.000982748111709952,0.937395751476288,-0.348264694213867,0.000982748111709952,0.937395751476288,-0.00389222567901015,-0.00111696659587324,0.999991714954376,2.84599354927195e-05,-0.00111409462988377,0.999999344348907,-0.196252197027206,0.949601352214813,0.244422376155853,-0.287947356700897,0.957629859447479,-0.00559690222144127,-0.413984149694443,0.885229825973511,0.21209728717804,-0.413984149694443,0.885229825973511,0.21209728717804,-0.287947356700897,0.957629859447479,-0.00559690222144127,-0.470989435911179,0.881958365440369,0.0178380254656076,3.43304818670731e-05,-0.00135641405358911,-0.999999046325684,-0.00199563428759575,-0.000582051347009838,-0.999997913837433,-0.423833042383194,0.00116276426706463,-0.905739486217499,-0.423833042383194,0.00116276426706463,-0.905739486217499,-0.00199563428759575,-0.000582051347009838,-0.999997913837433,-0.426273941993713,0,-0.904594123363495,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0.999969840049744,-0.00776384584605694,0,0.999929487705231,-0.0118698952719569,0,0.999608278274536,-0.0279887653887272,0,0.999608278274536,-0.0279887653887272,0,0.999929487705231,-0.0118698952719569,0,0.999608218669891,-0.0279887039214373,0,-0.980682373046875,-0.195588886737823,0.0026378717739135,-0.983803153038025,-0.0700104534626007,0.16501447558403,-1,0,-6.72246835975443e-09,-1,0,-6.72246835975443e-09,-0.983803153038025,-0.0700104534626007,0.16501447558403,-0.942193984985352,0,0.335067838430405,-0.345137268304825,0.000951190944761038,0.938551664352417,-0.00736422603949904,-0.00254751439206302,0.999969601631165,-0.333902329206467,0.00402134004980326,0.94259911775589,-0.333902329206467,0.00402134004980326,0.94259911775589,-0.00736422603949904,-0.00254751439206302,0.999969601631165,-0.0016862831544131,-0.00532714370638132,0.999984264373779,0.996624350547791,-0.0820964202284813,0,0.996399343013763,-0.0847840011119843,0, +0.99073714017868,-0.13579349219799,0,0.99073714017868,-0.13579349219799,0,0.996399343013763,-0.0847840011119843,0,0.99073714017868,-0.135793417692184,0,-0.42027559876442,0.00112625316251069,-0.907395839691162,-0.445196539163589,-0.010864051990211,-0.895367026329041,-0.0523781701922417,-0.0840912386775017,-0.995080530643463,-0.0523781701922417,-0.0840912386775017,-0.995080530643463,-0.445196539163589,-0.010864051990211,-0.895367026329041,-0.168989405035973,-0.0945836156606674,-0.981069087982178,-1,1.02014183767096e-07,2.71658180395207e-08,-0.942193984985352,1.73934296299194e-07,0.335067868232727,-0.999999940395355,-4.63826808072554e-08,3.70210351263722e-08,-0.999999940395355,-4.63826808072554e-08,3.70210351263722e-08,-0.942193984985352,1.73934296299194e-07,0.335067868232727,-0.942193925380707,1.10151546550696e-07,0.335067927837372,-0.317261874675751,0.00346194487065077,0.948331594467163,-0.0852424427866936,-0.105827435851097,0.990724146366119,-0.400717318058014,-0.0578774176537991,0.91437178850174,-0.400717318058014,-0.0578774176537991,0.91437178850174,-0.0852424427866936,-0.105827435851097,0.990724146366119,-0.237380504608154,-0.184020340442657,0.953827500343323,0.956547200679779,-0.291577219963074,0,-2.90191959351205e-08,-0.99999988079071,0,0.946216702461243,-0.323533833026886,0,0.946216702461243,-0.323533833026886,0,-2.90191959351205e-08,-0.99999988079071,0,-7.86043372613676e-08,-1,0,-0.289018929004669,-0.0315295234322548,-0.956804037094116,-0.456250160932541,0.010922989808023,-0.889784455299377,-0.275563389062881,0.0126701900735497,-0.961199343204498,-0.275563389062881,0.0126701900735497,-0.961199343204498,-0.456250160932541,0.010922989808023,-0.889784455299377,-0.428872883319855,-0.0181585215032101,-0.9031822681427,-0.999999940395355,-4.49832704418895e-08,3.29687495081998e-08,-0.942193984985352,-1.69397509353075e-07,0.335067838430405,-0.999205946922302,-0.0398412980139256,-0.000499493035022169,-0.999205946922302,-0.0398412980139256,-0.000499493035022169,-0.942193984985352,-1.69397509353075e-07,0.335067838430405, +-0.941585838794708,-0.0359243266284466,0.334851562976837,-0.237380504608154,-0.184020340442657,0.953827500343323,-0.314829111099243,-0.30739289522171,0.897993445396423,-0.400717318058014,-0.0578774176537991,0.91437178850174,-0.400717318058014,-0.0578774176537991,0.91437178850174,-0.314829111099243,-0.30739289522171,0.897993445396423,-0.438081979751587,-0.228957682847977,0.869288444519043,-0.275563389062881,0.0126701900735497,-0.961199343204498,-0.428872883319855,-0.0181585215032101,-0.9031822681427,-0.275053918361664,-0.235299378633499,-0.932190656661987,-0.275053918361664,-0.235299378633499,-0.932190656661987,-0.428872883319855,-0.0181585215032101,-0.9031822681427,-0.448652416467667,-0.244477361440659,-0.859617233276367,-0.941585838794708,-0.0359243266284466,0.334851562976837,-0.938903629779816,-0.162920519709587,0.303177982568741,-0.999205946922302,-0.0398412980139256,-0.000499493035022169,-0.999205946922302,-0.0398412980139256,-0.000499493035022169,-0.938903629779816,-0.162920519709587,0.303177982568741,-0.990713357925415,-0.135966911911964,-0.000360125588485971,-0.501788198947906,-0.235071316361427,0.832436323165894,-0.370028793811798,-0.316148817539215,0.87357234954834,-0.557071447372437,0.101513482630253,0.824236929416656,-0.557071447372437,0.101513482630253,0.824236929416656,-0.370028793811798,-0.316148817539215,0.87357234954834,-0.345470875501633,0.0096515454351902,0.93837982416153,-0.284771680831909,-0.153482794761658,-0.946228325366974,-0.463669985532761,-0.12424623966217,-0.877253115177155,-0.272987186908722,0.103648036718369,-0.956417798995972,-0.272987186908722,0.103648036718369,-0.956417798995972,-0.463669985532761,-0.12424623966217,-0.877253115177155,-0.448324590921402,0.120099097490311,-0.885765910148621,-0.99931538105011,-0.0369871184229851,0.000693605223204941,-0.966634154319763,-0.0604552179574966,0.248924776911736,-0.996009528636932,0.0886860489845276,-0.00999116245657206,-0.996009528636932,0.0886860489845276,-0.00999116245657206,-0.966634154319763,-0.0604552179574966,0.248924776911736,-0.973142445087433,0.06864283233881,0.219731345772743, +-0.358523935079575,0.266330599784851,0.894722640514374,-0.31438747048378,0.198706477880478,0.928265154361725,-0.465938091278076,0.151986509561539,0.871666133403778,-0.465938091278076,0.151986509561539,0.871666133403778,-0.31438747048378,0.198706477880478,0.928265154361725,-0.346322178840637,0.0704365521669388,0.935467600822449,-0.312699973583221,0.0350603349506855,-0.949204683303833,-0.375228047370911,-0.0656396299600601,-0.924605488777161,-0.33720189332962,-0.0776250138878822,-0.938226640224457,-0.33720189332962,-0.0776250138878822,-0.938226640224457,-0.375228047370911,-0.0656396299600601,-0.924605488777161,-0.392899990081787,0.0650127679109573,-0.91728001832962,-0.810663104057312,-0.504024803638458,0.297966688871384,-0.750012576580048,-0.483153849840164,0.451711893081665,-0.809233367443085,-0.51001363992691,0.291594505310059,-0.809233367443085,-0.51001363992691,0.291594505310059,-0.750012576580048,-0.483153849840164,0.451711893081665,-0.745753467082977,-0.494073539972305,0.446926265954971,0.415813595056534,-0.894526124000549,0.164079383015633,0.443056404590607,-0.859062790870667,0.2563436627388,0.590726137161255,-0.806768834590912,-0.012916543520987,0.590726137161255,-0.806768834590912,-0.012916543520987,0.443056404590607,-0.859062790870667,0.2563436627388,0.613970935344696,-0.787364184856415,0.0556536018848419,-0.346322178840637,0.0704365521669388,0.935467600822449,-0.131078913807869,0.0266109872609377,0.991014778614044,-0.465938091278076,0.151986509561539,0.871666133403778,-0.465938091278076,0.151986509561539,0.871666133403778,-0.131078913807869,0.0266109872609377,0.991014778614044,0.035837683826685,-0.283786207437515,0.958217620849609,-0.615923583507538,0.72288852930069,0.313161581754684,-0.63717132806778,0.770721673965454,0.000783373252488673,-0.601978600025177,0.718953728675842,0.347458481788635,-0.601978600025177,0.718953728675842,0.347458481788635,-0.63717132806778,0.770721673965454,0.000783373252488673,-0.637419998645782,0.768274903297424,-0.0587314888834953,-0.392899990081787,0.0650127679109573,-0.91728001832962, +-0.375228047370911,-0.0656396299600601,-0.924605488777161,-0.139671236276627,-0.00536438124254346,-0.990183353424072,-0.139671236276627,-0.00536438124254346,-0.990183353424072,-0.375228047370911,-0.0656396299600601,-0.924605488777161,0.131211563944817,-0.363944411277771,-0.922132253646851,0.309055268764496,-0.778611481189728,0.546121835708618,0.308507770299911,-0.758739411830902,0.573705077171326,0.377313524484634,-0.907492220401764,0.184641227126122,0.377313524484634,-0.907492220401764,0.184641227126122,0.308507770299911,-0.758739411830902,0.573705077171326,0.377915799617767,-0.912746787071228,0.155154526233673,-0.163295269012451,-0.0787409022450447,0.983429908752441,-0.157514020800591,-0.0977204218506813,0.982669949531555,0.126142740249634,-0.44090011715889,0.888647794723511,0.126142740249634,-0.44090011715889,0.888647794723511,-0.157514020800591,-0.0977204218506813,0.982669949531555,0.171670958399773,-0.539757668972015,0.824130356311798,-0.687908947467804,0.600829601287842,0.407167375087738,-0.7539342045784,0.65664803981781,-0.0199155546724796,-0.681177318096161,0.598360598087311,0.421855509281158,-0.681177318096161,0.598360598087311,0.421855509281158,-0.7539342045784,0.65664803981781,-0.0199155546724796,-0.750456690788269,0.657802164554596,-0.0641167014837265,-0.249490112066269,-0.125581637024879,-0.960199892520905,0.00591996172443032,-0.424874871969223,-0.905232667922974,-0.191558688879013,-0.13501937687397,-0.972149610519409,-0.191558688879013,-0.13501937687397,-0.972149610519409,0.00591996172443032,-0.424874871969223,-0.905232667922974,-0.0310196187347174,-0.342981845140457,-0.938829660415649,0.541362762451172,-0.59014880657196,0.59887433052063,0.748262763023376,-0.449949681758881,0.487491816282272,0.677588403224945,-0.728914082050323,0.097765639424324,0.677588403224945,-0.728914082050323,0.097765639424324,0.748262763023376,-0.449949681758881,0.487491816282272,0.848477840423584,-0.528459250926971,0.0285688955336809,0.0549153685569763,0.0450542718172073,0.997474014759064,0.175272926688194,0.0735589936375618,0.981768012046814, +0.421217262744904,-0.476593881845474,0.771643996238708,0.421217262744904,-0.476593881845474,0.771643996238708,0.175272926688194,0.0735589936375618,0.981768012046814,0.365394502878189,-0.0598746761679649,0.928925037384033,-0.484391301870346,0.747920095920563,0.453850835561752,-0.531635284423828,0.846670269966125,-0.0226585827767849,-0.293918609619141,0.841128528118134,0.453998327255249,-0.293918609619141,0.841128528118134,0.453998327255249,-0.531635284423828,0.846670269966125,-0.0226585827767849,-0.279617518186569,0.960069954395294,0.00894255563616753,0.0144960805773735,-0.0265378225594759,-0.999542772769928,0.072653092443943,0.0543685369193554,-0.995874285697937,0.15871961414814,0.129642695188522,-0.978775203227997,0.15871961414814,0.129642695188522,-0.978775203227997,0.072653092443943,0.0543685369193554,-0.995874285697937,0.163679480552673,0.135774865746498,-0.977125465869904,0.187248647212982,-0.864633858203888,0.466204136610031,0.190210968255997,-0.854957163333893,0.482564002275467,0.281301587820053,-0.959469318389893,0.0169683918356895,0.281301587820053,-0.959469318389893,0.0169683918356895,0.190210968255997,-0.854957163333893,0.482564002275467,0.260924875736237,-0.963217079639435,-0.0642723739147186,-0.10740227997303,-0.368674039840698,0.92333322763443,-0.26270666718483,-0.169430643320084,0.94988340139389,-0.203015506267548,-0.294110059738159,0.933961451053619,-0.203015506267548,-0.294110059738159,0.933961451053619,-0.26270666718483,-0.169430643320084,0.94988340139389,-0.289139091968536,-0.220943719148636,0.931441009044647,-0.813776314258575,0.43819785118103,0.381773114204407,-0.868184089660645,0.486240297555923,0.0991288796067238,-0.775763869285583,0.448394119739532,0.443996399641037,-0.775763869285583,0.448394119739532,0.443996399641037,-0.868184089660645,0.486240297555923,0.0991288796067238,-0.875024139881134,0.479716747999191,0.0648436024785042,-0.184722855687141,-0.120525196194649,-0.97537237405777,-0.198291972279549,-0.108739048242569,-0.974092364311218,-0.192829996347427,-0.123763777315617,-0.973395705223083, +-0.192829996347427,-0.123763777315617,-0.973395705223083,-0.198291972279549,-0.108739048242569,-0.974092364311218,-0.211528658866882,-0.0971532240509987,-0.972531139850616,-0.431382328271866,0.169522106647491,0.88609904050827,-0.320336490869522,0.138611942529678,0.937107861042023,-0.521284520626068,0.464184939861298,0.716096878051758,-0.521284520626068,0.464184939861298,0.716096878051758,-0.320336490869522,0.138611942529678,0.937107861042023,-0.359585493803024,0.240845635533333,0.901494085788727,-0.538770496845245,0.252404242753983,-0.803752660751343,-0.617819428443909,0.538956880569458,-0.572559714317322,-0.412574529647827,0.155155330896378,-0.897612929344177,-0.412574529647827,0.155155330896378,-0.897612929344177,-0.617819428443909,0.538956880569458,-0.572559714317322,-0.380586564540863,0.530384480953217,-0.757526338100433,-0.647886395454407,0.760051846504211,-0.0506389960646629,-0.653108716011047,0.719853460788727,0.235074073076248,-0.638447225093842,0.768903791904449,0.0342371985316277,-0.638447225093842,0.768903791904449,0.0342371985316277,-0.653108716011047,0.719853460788727,0.235074073076248,-0.699047863483429,0.702532529830933,0.133341491222382,-0.6654412150383,-0.260394930839539,0.699558734893799,-0.41209602355957,-0.29897665977478,0.860691487789154,-0.692201972007751,-0.00739429006353021,0.721666038036346,-0.692201972007751,-0.00739429006353021,0.721666038036346,-0.41209602355957,-0.29897665977478,0.860691487789154,-0.38391324877739,0.00158591580111533,0.92336767911911,-0.666863322257996,-0.255410492420197,-0.700042009353638,-0.661581456661224,-0.0198391675949097,-0.749610722064972,-0.402911782264709,-0.284718960523605,-0.869825899600983,-0.402911782264709,-0.284718960523605,-0.869825899600983,-0.661581456661224,-0.0198391675949097,-0.749610722064972,-0.36065399646759,0.00153131724800915,-0.932698428630829,-0.950994968414307,-0.309202522039413,0.00152381404768676,-0.914842367172241,-0.27389007806778,0.29672783613205,-0.999987781047821,-0.00494183553382754,-0.000171877531101927,-0.999987781047821,-0.00494183553382754,-0.000171877531101927, +-0.914842367172241,-0.27389007806778,0.29672783613205,-0.959854483604431,0.000226485382881947,0.280498117208481,-0.426273941993713,0,-0.904594123363495,-0.00199563428759575,-0.000582051347009838,-0.999997913837433,-0.426273941993713,0,-0.90459406375885,-0.426273941993713,0,-0.90459406375885,-0.00199563428759575,-0.000582051347009838,-0.999997913837433,0,0,-0.999999940395355,0.999929487705231,-0.0118698952719569,0,0.999969840049744,-0.00776384584605694,0,1,0,0,1,0,0,0.999969840049744,-0.00776384584605694,0,0.99999988079071,0,0,-1.06179534498096e-07,0,1,0,0,0.999999940395355,-7.35308205435103e-08,0,1,-7.35308205435103e-08,0,1,0,0,0.999999940395355,0,0,1,-0.980682373046875,-0.195588886737823,0.0026378717739135,-0.985105514526367,-0.171171367168427,0.0163507927209139,-0.983803153038025,-0.0700104534626007,0.16501447558403,-0.983803153038025,-0.0700104534626007,0.16501447558403,-0.985105514526367,-0.171171367168427,0.0163507927209139,-0.99999988079071,0,0,-0.0552616305649281,0.987487614154816,0.147696703672409,-0.125866457819939,0.984517812728882,0.121992520987988,-0.000331011950038373,0.99682480096817,0.0796246379613876,-0.000331011950038373,0.99682480096817,0.0796246379613876,-0.125866457819939,0.984517812728882,0.121992520987988,-0.00105461571365595,0.99825119972229,0.0591058731079102,-0.983803153038025,-0.0700104534626007,0.16501447558403,-0.99999988079071,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.99999988079071,0,0,-1,0,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0.999969840049744,-0.00776384584605694,0,0.999999940395355,0,0,0.99999988079071,0,0,0.99999988079071,0,0,0.999999940395355,0,0,1,0,0,-0.41209602355957,-0.29897665977478,0.860691487789154,0.00318428920581937,-0.225929453969002,0.97413843870163,-0.38391324877739,0.00158591580111533,0.92336767911911,-0.38391324877739,0.00158591580111533,0.92336767911911,0.00318428920581937,-0.225929453969002,0.97413843870163,-0.00203502061776817,0.00653625791892409,0.999976515769958,-0.196252197027206,0.949601352214813,0.244422376155853, +-0.111098900437355,0.959459185600281,0.259027153253555,-0.287947356700897,0.957629859447479,-0.00559690222144127,-0.287947356700897,0.957629859447479,-0.00559690222144127,-0.111098900437355,0.959459185600281,0.259027153253555,-0.183585181832314,0.983001887798309,0.00189994624815881,-0.402911782264709,-0.284718960523605,-0.869825899600983,-0.36065399646759,0.00153131724800915,-0.932698428630829,0.00284116063266993,-0.200478166341782,-0.979694128036499,0.00284116063266993,-0.200478166341782,-0.979694128036499,-0.36065399646759,0.00153131724800915,-0.932698428630829,-0.00180531304795295,0.00580181507393718,-0.999981582164764,-0.412574529647827,0.155155330896378,-0.897612929344177,-0.380586564540863,0.530384480953217,-0.757526338100433,2.20567770270463e-07,0.0660620927810669,-0.997815489768982,2.20567770270463e-07,0.0660620927810669,-0.997815489768982,-0.380586564540863,0.530384480953217,-0.757526338100433,0,0.394563376903534,-0.918868660926819,0.00136979960370809,0.00149476667866111,-0.999997913837433,-0.312699973583221,0.0350603349506855,-0.949204683303833,3.77067493673167e-07,-0.0878855958580971,-0.996130585670471,3.77067493673167e-07,-0.0878855958580971,-0.996130585670471,-0.312699973583221,0.0350603349506855,-0.949204683303833,-0.33720189332962,-0.0776250138878822,-0.938226640224457,-0.0217061433941126,-0.171169653534889,-0.985002458095551,-0.284771680831909,-0.153482794761658,-0.946228325366974,0.0044653513468802,0.0996245294809341,-0.99501496553421,0.0044653513468802,0.0996245294809341,-0.99501496553421,-0.284771680831909,-0.153482794761658,-0.946228325366974,-0.272987186908722,0.103648036718369,-0.956417798995972,0,0,-1,-0.275563389062881,0.0126701900735497,-0.961199343204498,-0.0327153541147709,-0.193093314766884,-0.980634808540344,-0.0327153541147709,-0.193093314766884,-0.980634808540344,-0.275563389062881,0.0126701900735497,-0.961199343204498,-0.275053918361664,-0.235299378633499,-0.932190656661987,-0.289018929004669,-0.0315295234322548,-0.956804037094116,-0.275563389062881,0.0126701900735497,-0.961199343204498, +0,-0.156217202544212,-0.98772257566452,0,-0.156217202544212,-0.98772257566452,-0.275563389062881,0.0126701900735497,-0.961199343204498,0,0,-1,0.501733601093292,-0.222058922052383,-0.83603423833847,-0.0523781701922417,-0.0840912386775017,-0.995080530643463,0.266883879899979,-0.306620955467224,-0.913650155067444,0.266883879899979,-0.306620955467224,-0.913650155067444,-0.0523781701922417,-0.0840912386775017,-0.995080530643463,-0.168989405035973,-0.0945836156606674,-0.981069087982178,-0.00199563428759575,-0.000582051347009838,-0.999997913837433,3.43304818670731e-05,-0.00135641405358911,-0.999999046325684,0.521376490592957,-0.00515533285215497,-0.853311121463776,0.521376490592957,-0.00515533285215497,-0.853311121463776,3.43304818670731e-05,-0.00135641405358911,-0.999999046325684,0.517211019992828,-0.0132315903902054,-0.855755627155304,0,0,-0.999999940395355,-0.00199563428759575,-0.000582051347009838,-0.999997913837433,0.522404074668884,0,-0.852698087692261,0.522404074668884,0,-0.852698087692261,-0.00199563428759575,-0.000582051347009838,-0.999997913837433,0.521376490592957,-0.00515533285215497,-0.853311121463776,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,-1.06179534498096e-07,0,1,-7.35308205435103e-08,0,1,-1.60622320777293e-07,0,1,-1.60622320777293e-07,0,1,-7.35308205435103e-08,0,1,0,0,1,0.0717699378728867,0.986448466777802,0.147541239857674,-0.000331011950038373,0.99682480096817,0.0796246379613876,0.165674731135368,0.979469656944275,0.114852607250214,0.165674731135368,0.979469656944275,0.114852607250214,-0.000331011950038373,0.99682480096817,0.0796246379613876,-0.00105461571365595,0.99825119972229,0.0591058731079102,0.432646661996841,-0.0110256457701325,0.901496052742004,2.84599354927195e-05,-0.00111409462988377,0.999999344348907,0.435252755880356,-0.00997863058000803,0.900252997875214,0.435252755880356,-0.00997863058000803,0.900252997875214,2.84599354927195e-05,-0.00111409462988377,0.999999344348907, +-0.00389222567901015,-0.00111696659587324,0.999991714954376,0.406670451164246,-0.0494876019656658,0.912233531475067,-0.0016862831544131,-0.00532714370638132,0.999984264373779,0.424560785293579,-0.0308302771300077,0.904874324798584,0.424560785293579,-0.0308302771300077,0.904874324798584,-0.0016862831544131,-0.00532714370638132,0.999984264373779,-0.00736422603949904,-0.00254751439206302,0.999969601631165,-0.0852424427866936,-0.105827435851097,0.990724146366119,0.232311606407166,-0.31727135181427,0.919440150260925,-0.237380504608154,-0.184020340442657,0.953827500343323,-0.237380504608154,-0.184020340442657,0.953827500343323,0.232311606407166,-0.31727135181427,0.919440150260925,-0.0922889560461044,-0.382065773010254,0.919515311717987,-0.314829111099243,-0.30739289522171,0.897993445396423,-0.237380504608154,-0.184020340442657,0.953827500343323,-0.05340875685215,-0.31523197889328,0.947510540485382,-0.05340875685215,-0.31523197889328,0.947510540485382,-0.237380504608154,-0.184020340442657,0.953827500343323,-0.0922889560461044,-0.382065773010254,0.919515311717987,-0.345470875501633,0.0096515454351902,0.93837982416153,-0.370028793811798,-0.316148817539215,0.87357234954834,-0.0291114263236523,0.0299638453871012,0.999126970767975,-0.0291114263236523,0.0299638453871012,0.999126970767975,-0.370028793811798,-0.316148817539215,0.87357234954834,-0.113352619111538,-0.322884172201157,0.939625978469849,0,0.211651116609573,0.97734522819519,-0.31438747048378,0.198706477880478,0.928265154361725,0.0018065016483888,0.265882909297943,0.964003622531891,0.0018065016483888,0.265882909297943,0.964003622531891,-0.31438747048378,0.198706477880478,0.928265154361725,-0.358523935079575,0.266330599784851,0.894722640514374,0,0,0.999999940395355,-0.359585493803024,0.240845635533333,0.901494085788727,0,0.062072392553091,0.998071670532227,0,0.062072392553091,0.998071670532227,-0.359585493803024,0.240845635533333,0.901494085788727,-0.320336490869522,0.138611942529678,0.937107861042023,-0.681155025959015,0.586503326892853,-0.438225597143173,-0.647886395454407,0.760051846504211,-0.0506389960646629, +-0.681075632572174,0.66227775812149,-0.31228831410408,-0.681075632572174,0.66227775812149,-0.31228831410408,-0.647886395454407,0.760051846504211,-0.0506389960646629,-0.638447225093842,0.768903791904449,0.0342371985316277,-0.63717132806778,0.770721673965454,0.000783373252488673,-0.55185604095459,0.657226800918579,-0.513330101966858,-0.637419998645782,0.768274903297424,-0.0587314888834953,-0.637419998645782,0.768274903297424,-0.0587314888834953,-0.55185604095459,0.657226800918579,-0.513330101966858,-0.544821977615356,0.626120150089264,-0.55780154466629,-0.7539342045784,0.65664803981781,-0.0199155546724796,-0.618921399116516,0.531836152076721,-0.578002035617828,-0.750456690788269,0.657802164554596,-0.0641167014837265,-0.750456690788269,0.657802164554596,-0.0641167014837265,-0.618921399116516,0.531836152076721,-0.578002035617828,-0.621218979358673,0.537228226661682,-0.570502042770386,-0.531635284423828,0.846670269966125,-0.0226585827767849,-0.329826921224594,0.697860956192017,-0.635770678520203,-0.279617518186569,0.960069954395294,0.00894255563616753,-0.279617518186569,0.960069954395294,0.00894255563616753,-0.329826921224594,0.697860956192017,-0.635770678520203,-0.177747681736946,0.842412233352661,-0.50867235660553,-0.868184089660645,0.486240297555923,0.0991288796067238,-0.832887828350067,0.465630650520325,-0.29914179444313,-0.875024139881134,0.479716747999191,0.0648436024785042,-0.875024139881134,0.479716747999191,0.0648436024785042,-0.832887828350067,0.465630650520325,-0.29914179444313,-0.820553481578827,0.373214155435562,-0.432900696992874,-0.810663104057312,-0.504024803638458,0.297966688871384,-0.809233367443085,-0.51001363992691,0.291594505310059,-0.849377632141113,-0.52761971950531,-0.0132241453975439,-0.849377632141113,-0.52761971950531,-0.0132241453975439,-0.809233367443085,-0.51001363992691,0.291594505310059,-0.842170000076294,-0.539203703403473,-0.00301715545356274,0.281301587820053,-0.959469318389893,0.0169683918356895,0.260924875736237,-0.963217079639435,-0.0642723739147186,0.302040487527847,-0.886160552501678,-0.351412653923035, +0.302040487527847,-0.886160552501678,-0.351412653923035,0.260924875736237,-0.963217079639435,-0.0642723739147186,0.202845916152,-0.845410823822021,-0.494099318981171,0.677588403224945,-0.728914082050323,0.097765639424324,0.848477840423584,-0.528459250926971,0.0285688955336809,0.587374329566956,-0.59558892250061,-0.547964632511139,0.587374329566956,-0.59558892250061,-0.547964632511139,0.848477840423584,-0.528459250926971,0.0285688955336809,0.79581218957901,-0.482034176588058,-0.366505235433578,0.377313524484634,-0.907492220401764,0.184641227126122,0.377915799617767,-0.912746787071228,0.155154526233673,0.336039155721664,-0.830434381961823,-0.444360822439194,0.336039155721664,-0.830434381961823,-0.444360822439194,0.377915799617767,-0.912746787071228,0.155154526233673,0.316754192113876,-0.816405415534973,-0.482854932546616,0.555534482002258,-0.797438144683838,-0.235528692603111,0.590726137161255,-0.806768834590912,-0.012916543520987,0.562640190124512,-0.77524596452713,-0.287105798721313,0.562640190124512,-0.77524596452713,-0.287105798721313,0.590726137161255,-0.806768834590912,-0.012916543520987,0.613970935344696,-0.787364184856415,0.0556536018848419,-0.99931538105011,-0.0369871184229851,0.000693605223204941,-0.996009528636932,0.0886860489845276,-0.00999116245657206,-0.94243448972702,-0.0516287088394165,-0.33038118481636,-0.94243448972702,-0.0516287088394165,-0.33038118481636,-0.996009528636932,0.0886860489845276,-0.00999116245657206,-0.939368724822998,0.0993495956063271,-0.328201323747635,-0.899844110012054,-0.0341099426150322,-0.434875905513763,-0.999205946922302,-0.0398412980139256,-0.000499493035022169,-0.90602320432663,-0.162885531783104,-0.390628069639206,-0.90602320432663,-0.162885531783104,-0.390628069639206,-0.999205946922302,-0.0398412980139256,-0.000499493035022169,-0.990713357925415,-0.135966911911964,-0.000360125588485971,-0.900367975234985,-1.38935192239842e-07,-0.435129106044769,-0.999999940395355,-4.49832704418895e-08,3.29687495081998e-08,-0.899844110012054,-0.0341099426150322,-0.434875905513763,-0.899844110012054,-0.0341099426150322,-0.434875905513763, +-0.999999940395355,-4.49832704418895e-08,3.29687495081998e-08,-0.999205946922302,-0.0398412980139256,-0.000499493035022169,-0.90036803483963,4.74047311627146e-07,-0.435129225254059,-1,1.02014183767096e-07,2.71658180395207e-08,-0.900367975234985,-1.96849839539937e-07,-0.435129165649414,-0.900367975234985,-1.96849839539937e-07,-0.435129165649414,-1,1.02014183767096e-07,2.71658180395207e-08,-0.999999940395355,-4.63826808072554e-08,3.70210351263722e-08,-0.930219054222107,-0.119837380945683,-0.346888393163681,-0.980682373046875,-0.195588886737823,0.0026378717739135,-0.900367975234985,0,-0.435129165649414,-0.900367975234985,0,-0.435129165649414,-0.980682373046875,-0.195588886737823,0.0026378717739135,-1,0,-6.72246835975443e-09,-0.980682373046875,-0.195588886737823,0.0026378717739135,-0.930219054222107,-0.119837380945683,-0.346888393163681,-0.985105514526367,-0.171171367168427,0.0163507927209139,-0.985105514526367,-0.171171367168427,0.0163507927209139,-0.930219054222107,-0.119837380945683,-0.346888393163681,-1,0,0,0,-1,0,0,-1,0,0,-0.99999988079071,0,0,-0.99999988079071,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0.999929487705231,-0.0118698896840215,0,0.999929487705231,-0.0118698952719569,0,1,0,0,1,0,0,0.999929487705231,-0.0118698952719569,0,1,0,0,0.999608218669891,-0.0279887039214373,0,0.999929487705231,-0.0118698952719569,0,0.999608159065247,-0.0279887374490499,0,0.999608159065247,-0.0279887374490499,0,0.999929487705231,-0.0118698952719569,0,0.999929487705231,-0.0118698896840215,0,0.996399343013763,-0.0847840011119843,0,0.995859026908875,-0.0909106358885765,0,0.99073714017868,-0.135793417692184,0,0.99073714017868,-0.135793417692184,0,0.995859026908875,-0.0909106358885765,0,0.990737199783325,-0.135793417692184,0,-2.90191959351205e-08,-0.99999988079071,0,0.956547200679779,-0.291577219963074,0,0,-1,0,0,-1,0,0.956547200679779,-0.291577219963074,0,0.9526087641716,-0.304198265075684,0,-0.211319372057915,0.922604084014893,-0.32271608710289,-0.287947356700897,0.957629859447479,-0.00559690222144127, +-0.114550665020943,0.931236624717712,-0.345942705869675,-0.114550665020943,0.931236624717712,-0.345942705869675,-0.287947356700897,0.957629859447479,-0.00559690222144127,-0.183585181832314,0.983001887798309,0.00189994624815881,-0.470989435911179,0.881958365440369,0.0178380254656076,-0.287947356700897,0.957629859447479,-0.00559690222144127,-0.440993219614029,0.85718184709549,-0.266015559434891,-0.440993219614029,0.85718184709549,-0.266015559434891,-0.287947356700897,0.957629859447479,-0.00559690222144127,-0.211319372057915,0.922604084014893,-0.32271608710289,-0.950994968414307,-0.309202522039413,0.00152381404768676,-0.999987781047821,-0.00494183553382754,-0.000171877531101927,-0.884253799915314,-0.275951564311981,-0.37675729393959,-0.884253799915314,-0.275951564311981,-0.37675729393959,-0.999987781047821,-0.00494183553382754,-0.000171877531101927,-0.941502571105957,-0.0112519469112158,-0.336818039417267,-0.346322178840637,0.0704365521669388,0.935467600822449,-0.31438747048378,0.198706477880478,0.928265154361725,-0.431382328271866,0.169522106647491,0.88609904050827,-0.431382328271866,0.169522106647491,0.88609904050827,-0.31438747048378,0.198706477880478,0.928265154361725,-0.320336490869522,0.138611942529678,0.937107861042023,-0.131078913807869,0.0266109872609377,0.991014778614044,-0.346322178840637,0.0704365521669388,0.935467600822449,-0.222073718905449,0.165876388549805,0.960816442966461,-0.222073718905449,0.165876388549805,0.960816442966461,-0.346322178840637,0.0704365521669388,0.935467600822449,-0.431382328271866,0.169522106647491,0.88609904050827,-0.157514020800591,-0.0977204218506813,0.982669949531555,-0.163295269012451,-0.0787409022450447,0.983429908752441,-0.403522074222565,0.251527339220047,0.879718065261841,-0.403522074222565,0.251527339220047,0.879718065261841,-0.163295269012451,-0.0787409022450447,0.983429908752441,-0.369166672229767,0.175117403268814,0.91271561384201,0.175272926688194,0.0735589936375618,0.981768012046814,0.0549153685569763,0.0450542718172073,0.997474014759064,-0.050564780831337,0.271516591310501,0.961104512214661, +-0.050564780831337,0.271516591310501,0.961104512214661,0.0549153685569763,0.0450542718172073,0.997474014759064,-0.297559857368469,0.542506039142609,0.785586059093475,-0.289139091968536,-0.220943719148636,0.931441009044647,-0.26270666718483,-0.169430643320084,0.94988340139389,-0.331625550985336,-0.107893891632557,0.937221050262451,-0.331625550985336,-0.107893891632557,0.937221050262451,-0.26270666718483,-0.169430643320084,0.94988340139389,-0.368115484714508,0.00297745480202138,0.929775297641754,-0.745753467082977,-0.494073539972305,0.446926265954971,-0.75670200586319,-0.484659552574158,0.438756465911865,-0.809233367443085,-0.51001363992691,0.291594505310059,-0.809233367443085,-0.51001363992691,0.291594505310059,-0.75670200586319,-0.484659552574158,0.438756465911865,-0.808414220809937,-0.502835631370544,0.305978417396545,-0.842170000076294,-0.539203703403473,-0.00301715545356274,-0.809233367443085,-0.51001363992691,0.291594505310059,-0.84971022605896,-0.527092695236206,0.0128746964037418,-0.84971022605896,-0.527092695236206,0.0128746964037418,-0.809233367443085,-0.51001363992691,0.291594505310059,-0.808414220809937,-0.502835631370544,0.305978417396545,-0.197227939963341,-0.129780992865562,-0.971729278564453,-0.192829996347427,-0.123763777315617,-0.973395705223083,-0.204144656658173,-0.114092320203781,-0.972269475460052,-0.204144656658173,-0.114092320203781,-0.972269475460052,-0.192829996347427,-0.123763777315617,-0.973395705223083,-0.211528658866882,-0.0971532240509987,-0.972531139850616,0.0144960805773735,-0.0265378225594759,-0.999542772769928,0.15871961414814,0.129642695188522,-0.978775203227997,-0.00358862709254026,0.0530024543404579,-0.998587846755981,-0.00358862709254026,0.0530024543404579,-0.998587846755981,0.15871961414814,0.129642695188522,-0.978775203227997,0.152228057384491,0.127398446202278,-0.980100095272064,-0.249490112066269,-0.125581637024879,-0.960199892520905,-0.191558688879013,-0.13501937687397,-0.972149610519409,-0.44129404425621,0.207625284790993,-0.873012781143188,-0.44129404425621,0.207625284790993,-0.873012781143188, +-0.191558688879013,-0.13501937687397,-0.972149610519409,-0.332708239555359,0.15461665391922,-0.930268108844757,-0.538770496845245,0.252404242753983,-0.803752660751343,-0.392899990081787,0.0650127679109573,-0.91728001832962,-0.371434330940247,0.330583244562149,-0.867612302303314,-0.371434330940247,0.330583244562149,-0.867612302303314,-0.392899990081787,0.0650127679109573,-0.91728001832962,-0.139671236276627,-0.00536438124254346,-0.990183353424072,-0.392899990081787,0.0650127679109573,-0.91728001832962,-0.538770496845245,0.252404242753983,-0.803752660751343,-0.33720189332962,-0.0776250138878822,-0.938226640224457,-0.33720189332962,-0.0776250138878822,-0.938226640224457,-0.538770496845245,0.252404242753983,-0.803752660751343,-0.412574529647827,0.155155330896378,-0.897612929344177,3.77067493673167e-07,-0.0878855958580971,-0.996130585670471,-0.33720189332962,-0.0776250138878822,-0.938226640224457,2.20567770270463e-07,0.0660620927810669,-0.997815489768982,2.20567770270463e-07,0.0660620927810669,-0.997815489768982,-0.33720189332962,-0.0776250138878822,-0.938226640224457,-0.412574529647827,0.155155330896378,-0.897612929344177,-0.320336490869522,0.138611942529678,0.937107861042023,-0.31438747048378,0.198706477880478,0.928265154361725,0,0.062072392553091,0.998071670532227,0,0.062072392553091,0.998071670532227,-0.31438747048378,0.198706477880478,0.928265154361725,0,0.211651116609573,0.97734522819519,-0.30268383026123,0.0250351279973984,0.952762305736542,-0.41209602355957,-0.29897665977478,0.860691487789154,-0.656968295574188,0.102436795830727,0.746926665306091,-0.656968295574188,0.102436795830727,0.746926665306091,-0.41209602355957,-0.29897665977478,0.860691487789154,-0.6654412150383,-0.260394930839539,0.699558734893799,-0.96043998003006,0.274263679981232,0.0483172312378883,-0.914842367172241,-0.27389007806778,0.29672783613205,-0.996094703674316,-0.0241891480982304,0.0849128365516663,-0.996094703674316,-0.0241891480982304,0.0849128365516663,-0.914842367172241,-0.27389007806778,0.29672783613205,-0.950994968414307,-0.309202522039413,0.00152381404768676, +-0.9006427526474,0.413372427225113,-0.134036719799042,-0.996094703674316,-0.0241891480982304,0.0849128365516663,-0.884253799915314,-0.275951564311981,-0.37675729393959,-0.884253799915314,-0.275951564311981,-0.37675729393959,-0.996094703674316,-0.0241891480982304,0.0849128365516663,-0.950994968414307,-0.309202522039413,0.00152381404768676,-0.310101628303528,0.332428276538849,-0.89068990945816,-0.681003391742706,0.277684032917023,-0.677588403224945,-0.402911782264709,-0.284718960523605,-0.869825899600983,-0.402911782264709,-0.284718960523605,-0.869825899600983,-0.681003391742706,0.277684032917023,-0.677588403224945,-0.666863322257996,-0.255410492420197,-0.700042009353638,0,0.307101041078568,-0.951676905155182,-0.310101628303528,0.332428276538849,-0.89068990945816,0.00284116063266993,-0.200478166341782,-0.979694128036499,0.00284116063266993,-0.200478166341782,-0.979694128036499,-0.310101628303528,0.332428276538849,-0.89068990945816,-0.402911782264709,-0.284718960523605,-0.869825899600983,-0.41209602355957,-0.29897665977478,0.860691487789154,-0.30268383026123,0.0250351279973984,0.952762305736542,0.00318428920581937,-0.225929453969002,0.97413843870163,0.00318428920581937,-0.225929453969002,0.97413843870163,-0.30268383026123,0.0250351279973984,0.952762305736542,0,0,0.99999988079071,-0.125866457819939,0.984517812728882,0.121992520987988,-0.220985546708107,0.971653342247009,0.0839953944087029,-0.00105461571365595,0.99825119972229,0.0591058731079102,-0.00105461571365595,0.99825119972229,0.0591058731079102,-0.220985546708107,0.971653342247009,0.0839953944087029,-3.41761285937991e-08,0.999999940395355,0,0.165674731135368,0.979469656944275,0.114852607250214,-0.00105461571365595,0.99825119972229,0.0591058731079102,0.295234709978104,0.952772557735443,0.0711413100361824,0.295234709978104,0.952772557735443,0.0711413100361824,-0.00105461571365595,0.99825119972229,0.0591058731079102,-3.41761285937991e-08,0.999999940395355,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0,-0.999999940395355,0,0,-0.999999940395355,0, +0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-0.996009528636932,0.0886860489845276,-0.00999116245657206,-0.973142445087433,0.06864283233881,0.219731345772743,-0.991519451141357,0.122384369373322,-0.0437164194881916,-0.991519451141357,0.122384369373322,-0.0437164194881916,-0.973142445087433,0.06864283233881,0.219731345772743,-0.964993000030518,0.126525044441223,0.229738533496857,-0.996009528636932,0.0886860489845276,-0.00999116245657206,-0.991519451141357,0.122384369373322,-0.0437164194881916,-0.939368724822998,0.0993495956063271,-0.328201323747635,-0.939368724822998,0.0993495956063271,-0.328201323747635,-0.991519451141357,0.122384369373322,-0.0437164194881916,-0.923455953598022,0.142329424619675,-0.356330752372742,-0.272987186908722,0.103648036718369,-0.956417798995972,-0.448324590921402,0.120099097490311,-0.885765910148621,-0.312699973583221,0.0350603349506855,-0.949204683303833,-0.312699973583221,0.0350603349506855,-0.949204683303833,-0.448324590921402,0.120099097490311,-0.885765910148621,-0.375228047370911,-0.0656396299600601,-0.924605488777161,0.0044653513468802,0.0996245294809341,-0.99501496553421,-0.272987186908722,0.103648036718369,-0.956417798995972,0.00136979960370809,0.00149476667866111,-0.999997913837433,0.00136979960370809,0.00149476667866111,-0.999997913837433,-0.272987186908722,0.103648036718369,-0.956417798995972,-0.312699973583221,0.0350603349506855,-0.949204683303833,-0.358523935079575,0.266330599784851,0.894722640514374,-0.345470875501633,0.0096515454351902,0.93837982416153,0.0018065016483888,0.265882909297943,0.964003622531891,0.0018065016483888,0.265882909297943,0.964003622531891,-0.345470875501633,0.0096515454351902,0.93837982416153,-0.0291114263236523,0.0299638453871012,0.999126970767975,-0.345470875501633,0.0096515454351902,0.93837982416153,-0.358523935079575,0.266330599784851,0.894722640514374, +-0.557071447372437,0.101513482630253,0.824236929416656,-0.557071447372437,0.101513482630253,0.824236929416656,-0.358523935079575,0.266330599784851,0.894722640514374,-0.465938091278076,0.151986509561539,0.871666133403778,-0.438081979751587,-0.228957682847977,0.869288444519043,-0.314829111099243,-0.30739289522171,0.897993445396423,-0.501788198947906,-0.235071316361427,0.832436323165894,-0.501788198947906,-0.235071316361427,0.832436323165894,-0.314829111099243,-0.30739289522171,0.897993445396423,-0.370028793811798,-0.316148817539215,0.87357234954834,-0.990713357925415,-0.135966911911964,-0.000360125588485971,-0.938903629779816,-0.162920519709587,0.303177982568741,-0.99931538105011,-0.0369871184229851,0.000693605223204941,-0.99931538105011,-0.0369871184229851,0.000693605223204941,-0.938903629779816,-0.162920519709587,0.303177982568741,-0.966634154319763,-0.0604552179574966,0.248924776911736,-0.990713357925415,-0.135966911911964,-0.000360125588485971,-0.99931538105011,-0.0369871184229851,0.000693605223204941,-0.90602320432663,-0.162885531783104,-0.390628069639206,-0.90602320432663,-0.162885531783104,-0.390628069639206,-0.99931538105011,-0.0369871184229851,0.000693605223204941,-0.94243448972702,-0.0516287088394165,-0.33038118481636,-0.275053918361664,-0.235299378633499,-0.932190656661987,-0.448652416467667,-0.244477361440659,-0.859617233276367,-0.284771680831909,-0.153482794761658,-0.946228325366974,-0.284771680831909,-0.153482794761658,-0.946228325366974,-0.448652416467667,-0.244477361440659,-0.859617233276367,-0.463669985532761,-0.12424623966217,-0.877253115177155,-0.0327153541147709,-0.193093314766884,-0.980634808540344,-0.275053918361664,-0.235299378633499,-0.932190656661987,-0.0217061433941126,-0.171169653534889,-0.985002458095551,-0.0217061433941126,-0.171169653534889,-0.985002458095551,-0.275053918361664,-0.235299378633499,-0.932190656661987,-0.284771680831909,-0.153482794761658,-0.946228325366974,-0.370028793811798,-0.316148817539215,0.87357234954834,-0.314829111099243,-0.30739289522171,0.897993445396423,-0.113352619111538,-0.322884172201157,0.939625978469849, +-0.113352619111538,-0.322884172201157,0.939625978469849,-0.314829111099243,-0.30739289522171,0.897993445396423,-0.05340875685215,-0.31523197889328,0.947510540485382,-0.333902329206467,0.00402134004980326,0.94259911775589,-0.0016862831544131,-0.00532714370638132,0.999984264373779,-0.317261874675751,0.00346194487065077,0.948331594467163,-0.317261874675751,0.00346194487065077,0.948331594467163,-0.0016862831544131,-0.00532714370638132,0.999984264373779,-0.0852424427866936,-0.105827435851097,0.990724146366119,-0.999999940395355,-4.63826808072554e-08,3.70210351263722e-08,-0.942193925380707,1.10151546550696e-07,0.335067927837372,-0.999999940395355,-4.49832704418895e-08,3.29687495081998e-08,-0.999999940395355,-4.49832704418895e-08,3.29687495081998e-08,-0.942193925380707,1.10151546550696e-07,0.335067927837372,-0.942193984985352,-1.69397509353075e-07,0.335067838430405,-0.900367975234985,-1.96849839539937e-07,-0.435129165649414,-0.999999940395355,-4.63826808072554e-08,3.70210351263722e-08,-0.900367975234985,-1.38935192239842e-07,-0.435129106044769,-0.900367975234985,-1.38935192239842e-07,-0.435129106044769,-0.999999940395355,-4.63826808072554e-08,3.70210351263722e-08,-0.999999940395355,-4.49832704418895e-08,3.29687495081998e-08,-0.445196539163589,-0.010864051990211,-0.895367026329041,-0.456250160932541,0.010922989808023,-0.889784455299377,-0.168989405035973,-0.0945836156606674,-0.981069087982178,-0.168989405035973,-0.0945836156606674,-0.981069087982178,-0.456250160932541,0.010922989808023,-0.889784455299377,-0.289018929004669,-0.0315295234322548,-0.956804037094116,-0.168989405035973,-0.0945836156606674,-0.981069087982178,-0.289018929004669,-0.0315295234322548,-0.956804037094116,0.266883879899979,-0.306620955467224,-0.913650155067444,0.266883879899979,-0.306620955467224,-0.913650155067444,-0.289018929004669,-0.0315295234322548,-0.956804037094116,0,-0.156217202544212,-0.98772257566452,0.99073714017868,-0.135793417692184,0,0.990737199783325,-0.135793417692184,0,0.956547200679779,-0.291577219963074,0,0.956547200679779,-0.291577219963074,0, +0.990737199783325,-0.135793417692184,0,0.9526087641716,-0.304198265075684,0,0.99073714017868,-0.13579349219799,0,0.99073714017868,-0.135793417692184,0,0.946216702461243,-0.323533833026886,0,0.946216702461243,-0.323533833026886,0,0.99073714017868,-0.135793417692184,0,0.956547200679779,-0.291577219963074,0,-0.0016862831544131,-0.00532714370638132,0.999984264373779,0.406670451164246,-0.0494876019656658,0.912233531475067,-0.0852424427866936,-0.105827435851097,0.990724146366119,-0.0852424427866936,-0.105827435851097,0.990724146366119,0.406670451164246,-0.0494876019656658,0.912233531475067,0.232311606407166,-0.31727135181427,0.919440150260925,-0.348264694213867,0.000982748111709952,0.937395751476288,2.84599354927195e-05,-0.00111409462988377,0.999999344348907,-0.345137268304825,0.000951190944761038,0.938551664352417,-0.345137268304825,0.000951190944761038,0.938551664352417,2.84599354927195e-05,-0.00111409462988377,0.999999344348907,-0.00736422603949904,-0.00254751439206302,0.999969601631165,-1,0,-6.72246835975443e-09,-0.942193984985352,0,0.335067838430405,-1,1.02014183767096e-07,2.71658180395207e-08,-1,1.02014183767096e-07,2.71658180395207e-08,-0.942193984985352,0,0.335067838430405,-0.942193984985352,1.73934296299194e-07,0.335067868232727,-0.900367975234985,0,-0.435129165649414,-1,0,-6.72246835975443e-09,-0.90036803483963,4.74047311627146e-07,-0.435129225254059,-0.90036803483963,4.74047311627146e-07,-0.435129225254059,-1,0,-6.72246835975443e-09,-1,1.02014183767096e-07,2.71658180395207e-08,-0.0523781701922417,-0.0840912386775017,-0.995080530643463,3.43304818670731e-05,-0.00135641405358911,-0.999999046325684,-0.42027559876442,0.00112625316251069,-0.907395839691162,-0.42027559876442,0.00112625316251069,-0.907395839691162,3.43304818670731e-05,-0.00135641405358911,-0.999999046325684,-0.423833042383194,0.00116276426706463,-0.905739486217499,3.43304818670731e-05,-0.00135641405358911,-0.999999046325684,-0.0523781701922417,-0.0840912386775017,-0.995080530643463,0.517211019992828,-0.0132315903902054,-0.855755627155304,0.517211019992828,-0.0132315903902054,-0.855755627155304, +-0.0523781701922417,-0.0840912386775017,-0.995080530643463,0.501733601093292,-0.222058922052383,-0.83603423833847,0.996399343013763,-0.0847840011119843,0,0.999608218669891,-0.0279887039214373,0,0.995859026908875,-0.0909106358885765,0,0.995859026908875,-0.0909106358885765,0,0.999608218669891,-0.0279887039214373,0,0.999608159065247,-0.0279887374490499,0,0.999608278274536,-0.0279887653887272,0,0.999608218669891,-0.0279887039214373,0,0.996624350547791,-0.0820964202284813,0,0.996624350547791,-0.0820964202284813,0,0.999608218669891,-0.0279887039214373,0,0.996399343013763,-0.0847840011119843,0,2.84599354927195e-05,-0.00111409462988377,0.999999344348907,0.432646661996841,-0.0110256457701325,0.901496052742004,-0.00736422603949904,-0.00254751439206302,0.999969601631165,-0.00736422603949904,-0.00254751439206302,0.999969601631165,0.432646661996841,-0.0110256457701325,0.901496052742004,0.424560785293579,-0.0308302771300077,0.904874324798584,-0.111342459917068,-0.00582879176363349,0.993764936923981,-0.131078913807869,0.0266109872609377,0.991014778614044,-0.24934484064579,0.219822689890862,0.943135797977448,-0.24934484064579,0.219822689890862,0.943135797977448,-0.131078913807869,0.0266109872609377,0.991014778614044,-0.222073718905449,0.165876388549805,0.960816442966461,-0.131078913807869,0.0266109872609377,0.991014778614044,-0.111342459917068,-0.00582879176363349,0.993764936923981,0.035837683826685,-0.283786207437515,0.958217620849609,0.035837683826685,-0.283786207437515,0.958217620849609,-0.111342459917068,-0.00582879176363349,0.993764936923981,0.0588115453720093,-0.447262734174728,0.892466902732849,0.443056404590607,-0.859062790870667,0.2563436627388,0.432721048593521,-0.803011834621429,0.409785956144333,0.613970935344696,-0.787364184856415,0.0556536018848419,0.613970935344696,-0.787364184856415,0.0556536018848419,0.432721048593521,-0.803011834621429,0.409785956144333,0.675440788269043,-0.731955587863922,0.0895584747195244,0.562640190124512,-0.77524596452713,-0.287105798721313,0.613970935344696,-0.787364184856415,0.0556536018848419, +0.547805547714233,-0.74244099855423,-0.385603964328766,0.547805547714233,-0.74244099855423,-0.385603964328766,0.613970935344696,-0.787364184856415,0.0556536018848419,0.675440788269043,-0.731955587863922,0.0895584747195244,-0.139671236276627,-0.00536438124254346,-0.990183353424072,0.131211563944817,-0.363944411277771,-0.922132253646851,-0.107275180518627,-0.0572175942361355,-0.992581486701965,-0.107275180518627,-0.0572175942361355,-0.992581486701965,0.131211563944817,-0.363944411277771,-0.922132253646851,0.137721180915833,-0.389937818050385,-0.910484075546265,-0.371434330940247,0.330583244562149,-0.867612302303314,-0.139671236276627,-0.00536438124254346,-0.990183353424072,-0.36583337187767,0.318659275770187,-0.87442684173584,-0.36583337187767,0.318659275770187,-0.87442684173584,-0.139671236276627,-0.00536438124254346,-0.990183353424072,-0.107275180518627,-0.0572175942361355,-0.992581486701965,-0.637419998645782,0.768274903297424,-0.0587314888834953,-0.544821977615356,0.626120150089264,-0.55780154466629,-0.637013852596283,0.765055119991302,-0.0943616256117821,-0.637013852596283,0.765055119991302,-0.0943616256117821,-0.544821977615356,0.626120150089264,-0.55780154466629,-0.539429485797882,0.585813462734222,-0.604845702648163,-0.601978600025177,0.718953728675842,0.347458481788635,-0.637419998645782,0.768274903297424,-0.0587314888834953,-0.584815502166748,0.711538672447205,0.389491409063339,-0.584815502166748,0.711538672447205,0.389491409063339,-0.637419998645782,0.768274903297424,-0.0587314888834953,-0.637013852596283,0.765055119991302,-0.0943616256117821,0.0549153685569763,0.0450542718172073,0.997474014759064,-0.157514020800591,-0.0977204218506813,0.982669949531555,-0.297559857368469,0.542506039142609,0.785586059093475,-0.297559857368469,0.542506039142609,0.785586059093475,-0.157514020800591,-0.0977204218506813,0.982669949531555,-0.403522074222565,0.251527339220047,0.879718065261841,-0.157514020800591,-0.0977204218506813,0.982669949531555,0.0549153685569763,0.0450542718172073,0.997474014759064,0.171670958399773,-0.539757668972015,0.824130356311798, +0.171670958399773,-0.539757668972015,0.824130356311798,0.0549153685569763,0.0450542718172073,0.997474014759064,0.421217262744904,-0.476593881845474,0.771643996238708,0.308507770299911,-0.758739411830902,0.573705077171326,0.541362762451172,-0.59014880657196,0.59887433052063,0.377915799617767,-0.912746787071228,0.155154526233673,0.377915799617767,-0.912746787071228,0.155154526233673,0.541362762451172,-0.59014880657196,0.59887433052063,0.677588403224945,-0.728914082050323,0.097765639424324,0.377915799617767,-0.912746787071228,0.155154526233673,0.677588403224945,-0.728914082050323,0.097765639424324,0.316754192113876,-0.816405415534973,-0.482854932546616,0.316754192113876,-0.816405415534973,-0.482854932546616,0.677588403224945,-0.728914082050323,0.097765639424324,0.587374329566956,-0.59558892250061,-0.547964632511139,-0.191558688879013,-0.13501937687397,-0.972149610519409,-0.0310196187347174,-0.342981845140457,-0.938829660415649,0.0144960805773735,-0.0265378225594759,-0.999542772769928,0.0144960805773735,-0.0265378225594759,-0.999542772769928,-0.0310196187347174,-0.342981845140457,-0.938829660415649,0.072653092443943,0.0543685369193554,-0.995874285697937,-0.332708239555359,0.15461665391922,-0.930268108844757,-0.191558688879013,-0.13501937687397,-0.972149610519409,-0.00358862709254026,0.0530024543404579,-0.998587846755981,-0.00358862709254026,0.0530024543404579,-0.998587846755981,-0.191558688879013,-0.13501937687397,-0.972149610519409,0.0144960805773735,-0.0265378225594759,-0.999542772769928,-0.750456690788269,0.657802164554596,-0.0641167014837265,-0.621218979358673,0.537228226661682,-0.570502042770386,-0.531635284423828,0.846670269966125,-0.0226585827767849,-0.531635284423828,0.846670269966125,-0.0226585827767849,-0.621218979358673,0.537228226661682,-0.570502042770386,-0.329826921224594,0.697860956192017,-0.635770678520203,-0.681177318096161,0.598360598087311,0.421855509281158,-0.750456690788269,0.657802164554596,-0.0641167014837265,-0.484391301870346,0.747920095920563,0.453850835561752,-0.484391301870346,0.747920095920563,0.453850835561752, +-0.750456690788269,0.657802164554596,-0.0641167014837265,-0.531635284423828,0.846670269966125,-0.0226585827767849,-1.00000011920929,0,0,-0.999987781047821,-0.00494183553382754,-0.000171877531101927,-0.946002244949341,0.0391828641295433,0.321782886981964,-0.946002244949341,0.0391828641295433,0.321782886981964,-0.999987781047821,-0.00494183553382754,-0.000171877531101927,-0.959854483604431,0.000226485382881947,0.280498117208481,-0.941502571105957,-0.0112519469112158,-0.336818039417267,-0.999987781047821,-0.00494183553382754,-0.000171877531101927,-0.923127233982086,0.0298637673258781,-0.383333086967468,-0.923127233982086,0.0298637673258781,-0.383333086967468,-0.999987781047821,-0.00494183553382754,-0.000171877531101927,-1.00000011920929,0,0,-0.36065399646759,0.00153131724800915,-0.932698428630829,-0.661581456661224,-0.0198391675949097,-0.749610722064972,-0.351534217596054,0.186205327510834,-0.91746997833252,-0.351534217596054,0.186205327510834,-0.91746997833252,-0.661581456661224,-0.0198391675949097,-0.749610722064972,-0.633579015731812,0.139719590544701,-0.760957300662994,-0.36065399646759,0.00153131724800915,-0.932698428630829,-0.351534217596054,0.186205327510834,-0.91746997833252,-0.00180531304795295,0.00580181507393718,-0.999981582164764,-0.00180531304795295,0.00580181507393718,-0.999981582164764,-0.351534217596054,0.186205327510834,-0.91746997833252,-0.0181008353829384,0.203324273228645,-0.978944003582001,-0.38391324877739,0.00158591580111533,0.92336767911911,-0.00203502061776817,0.00653625791892409,0.999976515769958,-0.40022024512291,0.215778097510338,0.890653371810913,-0.40022024512291,0.215778097510338,0.890653371810913,-0.00203502061776817,0.00653625791892409,0.999976515769958,-0.0203936882317066,0.229080587625504,0.973193764686584,-0.38391324877739,0.00158591580111533,0.92336767911911,-0.40022024512291,0.215778097510338,0.890653371810913,-0.692201972007751,-0.00739429006353021,0.721666038036346,-0.692201972007751,-0.00739429006353021,0.721666038036346,-0.40022024512291,0.215778097510338,0.890653371810913,-0.69635671377182,0.176293283700943,0.695706784725189, +0.350430279970169,0,0.936588764190674,0.348264753818512,0.000982726574875414,0.937395691871643,0.00389222637750208,-0.00111705285962671,0.999991774559021,0.00389222637750208,-0.00111705285962671,0.999991774559021,0.348264753818512,0.000982726574875414,0.937395691871643,-2.84242869383888e-05,-0.00111415272112936,0.999999344348907,0.470989614725113,0.881958305835724,0.0178380329161882,0.287947416305542,0.957629859447479,-0.00559690129011869,0.41398411989212,0.885229825973511,0.212097257375717,0.41398411989212,0.885229825973511,0.212097257375717,0.287947416305542,0.957629859447479,-0.00559690129011869,0.196252197027206,0.949601411819458,0.24442233145237,0.426273941993713,0,-0.904593944549561,0.00199557887390256,-0.000582093838602304,-0.999997794628143,0.423833101987839,0.00116272328887135,-0.905739545822144,0.423833101987839,0.00116272328887135,-0.905739545822144,0.00199557887390256,-0.000582093838602304,-0.999997794628143,-3.44017789757345e-05,-0.00135652581229806,-0.999999046325684,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.99999988079071,0,0,-0.99999988079071,0,0,-0.999999940395355,0,0,-0.999999940395355,0,-0.999969840049744,-0.00776384584605694,0,-0.999608278274536,-0.0279887653887272,0,-0.999929487705231,-0.0118698952719569,0,-0.999929487705231,-0.0118698952719569,0,-0.999608278274536,-0.0279887653887272,0,-0.999608218669891,-0.027988662943244,0,0.980682373046875,-0.195588886737823,0.0026378717739135,1,0,-6.72246835975443e-09,0.983803153038025,-0.0700104534626007,0.16501447558403,0.983803153038025,-0.0700104534626007,0.16501447558403,1,0,-6.72246835975443e-09,0.942193984985352,0,0.335067838430405,0.345137357711792,0.000951157649978995,0.938551545143127,0.333902329206467,0.0040213861502707,0.942599058151245,0.00736424513161182,-0.00254745385609567,0.999969661235809,0.00736424513161182,-0.00254745385609567,0.999969661235809,0.333902329206467,0.0040213861502707,0.942599058151245,0.00168626289814711,-0.00532709900289774,0.999984264373779,-0.996624350547791,-0.0820964425802231,0,-0.99073714017868,-0.13579349219799,0, +-0.996399343013763,-0.0847840011119843,0,-0.996399343013763,-0.0847840011119843,0,-0.99073714017868,-0.13579349219799,0,-0.99073714017868,-0.135793387889862,0,0.168989479541779,-0.0945835933089256,-0.981069087982178,0.445196628570557,-0.0108640408143401,-0.895367026329041,0.0523780733346939,-0.0840912386775017,-0.995080411434174,0.0523780733346939,-0.0840912386775017,-0.995080411434174,0.445196628570557,-0.0108640408143401,-0.895367026329041,0.420275688171387,0.0011262537445873,-0.907395780086517,1,0,2.71658180395207e-08,0.999999940395355,-2.14244035845468e-08,3.70210351263722e-08,0.942193984985352,-6.37501571532084e-08,0.335067868232727,0.942193984985352,-6.37501571532084e-08,0.335067868232727,0.999999940395355,-2.14244035845468e-08,3.70210351263722e-08,0.942193925380707,-4.03725906039654e-08,0.335067927837372,0.317261904478073,0.003461929038167,0.948331594467163,0.400717526674271,-0.057877529412508,0.914371728897095,0.0852424278855324,-0.105827465653419,0.990724146366119,0.0852424278855324,-0.105827465653419,0.990724146366119,0.400717526674271,-0.057877529412508,0.914371728897095,0.237380534410477,-0.184020280838013,0.953827500343323,-7.86043372613676e-08,-1,0,-2.90191959351205e-08,-0.99999988079071,0,-0.946216642856598,-0.323533743619919,0,-0.946216642856598,-0.323533743619919,0,-2.90191959351205e-08,-0.99999988079071,0,-0.956547260284424,-0.291577219963074,0,0.289018988609314,-0.0315295346081257,-0.956804037094116,0.275563389062881,0.0126702096313238,-0.961199343204498,0.456250220537186,0.0109229926019907,-0.889784455299377,0.456250220537186,0.0109229926019907,-0.889784455299377,0.275563389062881,0.0126702096313238,-0.961199343204498,0.428873091936111,-0.0181585922837257,-0.903182208538055,0.999999940395355,1.64872062669019e-08,3.29687495081998e-08,0.999205946922302,-0.0398414544761181,-0.000499493035022169,0.942193984985352,6.20873450429826e-08,0.335067838430405,0.942193984985352,6.20873450429826e-08,0.335067838430405,0.999205946922302,-0.0398414544761181,-0.000499493035022169,0.941585838794708,-0.0359243266284466,0.334851562976837, +0.438081830739975,-0.228957608342171,0.869288623332977,0.314829111099243,-0.307392954826355,0.897993385791779,0.400717526674271,-0.057877529412508,0.914371728897095,0.400717526674271,-0.057877529412508,0.914371728897095,0.314829111099243,-0.307392954826355,0.897993385791779,0.237380534410477,-0.184020280838013,0.953827500343323,0.275563389062881,0.0126702096313238,-0.961199343204498,0.275053948163986,-0.235299319028854,-0.932190716266632,0.428873091936111,-0.0181585922837257,-0.903182208538055,0.428873091936111,-0.0181585922837257,-0.903182208538055,0.275053948163986,-0.235299319028854,-0.932190716266632,0.448652803897858,-0.244477614760399,-0.859616994857788,0.990713357925415,-0.135966897010803,-0.000360100006219,0.938903450965881,-0.162920534610748,0.303178012371063,0.999205946922302,-0.0398414544761181,-0.000499493035022169,0.999205946922302,-0.0398414544761181,-0.000499493035022169,0.938903450965881,-0.162920534610748,0.303178012371063,0.941585838794708,-0.0359243266284466,0.334851562976837,0.501788139343262,-0.235071003437042,0.832436323165894,0.557071387767792,0.101513519883156,0.824236869812012,0.37002894282341,-0.316148847341537,0.873572289943695,0.37002894282341,-0.316148847341537,0.873572289943695,0.557071387767792,0.101513519883156,0.824236869812012,0.345470905303955,0.00965151283890009,0.938379883766174,0.284771651029587,-0.153482809662819,-0.946228325366974,0.272987127304077,0.103648044168949,-0.956417858600616,0.46367022395134,-0.124246373772621,-0.877252995967865,0.46367022395134,-0.124246373772621,-0.877252995967865,0.272987127304077,0.103648044168949,-0.956417858600616,0.448324531316757,0.120099104940891,-0.885765910148621,0.99931538105011,-0.0369870662689209,0.000693564012181014,0.996009528636932,0.0886859223246574,-0.00999115873128176,0.966634094715118,-0.0604551434516907,0.248924806714058,0.966634094715118,-0.0604551434516907,0.248924806714058,0.996009528636932,0.0886859223246574,-0.00999115873128176,0.973142445087433,0.0686429291963577,0.219731420278549,0.346322238445282,0.0704366564750671,0.935467600822449, +0.314387500286102,0.1987065076828,0.928265154361725,0.465938031673431,0.151986420154572,0.871666193008423,0.465938031673431,0.151986420154572,0.871666193008423,0.314387500286102,0.1987065076828,0.928265154361725,0.358523994684219,0.266330569982529,0.894722640514374,0.312700003385544,0.0350603312253952,-0.949204683303833,0.337201863527298,-0.0776249617338181,-0.938226699829102,0.375228047370911,-0.0656395778059959,-0.924605488777161,0.375228047370911,-0.0656395778059959,-0.924605488777161,0.337201863527298,-0.0776249617338181,-0.938226699829102,0.392900168895721,0.0650129690766335,-0.91728001832962,0.810663044452667,-0.504024684429169,0.297967135906219,0.809233546257019,-0.510013520717621,0.291594743728638,0.750013589859009,-0.483151137828827,0.451712936162949,0.750013589859009,-0.483151137828827,0.451712936162949,0.809233546257019,-0.510013520717621,0.291594743728638,0.745753109455109,-0.494074016809464,0.446926116943359,-0.613971054553986,-0.78736412525177,0.055653665214777,-0.443056464195251,-0.859062671661377,0.256343722343445,-0.5907261967659,-0.806768655776978,-0.0129166357219219,-0.5907261967659,-0.806768655776978,-0.0129166357219219,-0.443056464195251,-0.859062671661377,0.256343722343445,-0.415813595056534,-0.894526124000549,0.164079383015633,-0.0358376279473305,-0.283786207437515,0.95821750164032,0.131078898906708,0.0266109313815832,0.991014659404755,0.465938031673431,0.151986420154572,0.871666193008423,0.465938031673431,0.151986420154572,0.871666193008423,0.131078898906708,0.0266109313815832,0.991014659404755,0.346322238445282,0.0704366564750671,0.935467600822449,0.615923464298248,0.722888648509979,0.313161551952362,0.601978659629822,0.718953847885132,0.34745791554451,0.637171387672424,0.770721733570099,0.00078329403186217,0.637171387672424,0.770721733570099,0.00078329403186217,0.601978659629822,0.718953847885132,0.34745791554451,0.637420058250427,0.768274962902069,-0.0587317161262035,0.392900168895721,0.0650129690766335,-0.91728001832962,0.139671310782433,-0.00536428531631827,-0.990183293819427,0.375228047370911,-0.0656395778059959,-0.924605488777161, +0.375228047370911,-0.0656395778059959,-0.924605488777161,0.139671310782433,-0.00536428531631827,-0.990183293819427,-0.131211519241333,-0.363944292068481,-0.92213237285614,-0.3779157102108,-0.912746667861938,0.155154347419739,-0.308507770299911,-0.758739411830902,0.573705077171326,-0.377313524484634,-0.907492160797119,0.184641271829605,-0.377313524484634,-0.907492160797119,0.184641271829605,-0.308507770299911,-0.758739411830902,0.573705077171326,-0.309055298566818,-0.778611421585083,0.546121895313263,-0.171670943498611,-0.539757609367371,0.824130356311798,0.157514154911041,-0.0977203249931335,0.982669830322266,-0.126142755150795,-0.440900266170502,0.8886479139328,-0.126142755150795,-0.440900266170502,0.8886479139328,0.157514154911041,-0.0977203249931335,0.982669830322266,0.163295120000839,-0.0787408798933029,0.983429908752441,0.687909126281738,0.600829780101776,0.407166868448257,0.681177258491516,0.59836083650589,0.421855121850967,0.753934025764465,0.656648218631744,-0.0199156794697046,0.753934025764465,0.656648218631744,-0.0199156794697046,0.681177258491516,0.59836083650589,0.421855121850967,0.750456571578979,0.65780234336853,-0.0641168206930161,0.249490067362785,-0.125581637024879,-0.96019983291626,0.191558763384819,-0.135019406676292,-0.972149670124054,-0.00591996172443032,-0.424874633550644,-0.905232727527618,-0.00591996172443032,-0.424874633550644,-0.905232727527618,0.191558763384819,-0.135019406676292,-0.972149670124054,0.0310196094214916,-0.342981845140457,-0.938829600811005,-0.848477840423584,-0.528459191322327,0.0285688824951649,-0.748262703418732,-0.449949592351913,0.487491816282272,-0.67758846282959,-0.728914082050323,0.0977656245231628,-0.67758846282959,-0.728914082050323,0.0977656245231628,-0.748262703418732,-0.449949592351913,0.487491816282272,-0.541362881660461,-0.590148687362671,0.598874390125275,-0.365394502878189,-0.0598749741911888,0.928925096988678,-0.175272881984711,0.0735590383410454,0.981768071651459,-0.421217232942581,-0.476593822240829,0.771643877029419,-0.421217232942581,-0.476593822240829,0.771643877029419, +-0.175272881984711,0.0735590383410454,0.981768071651459,-0.0549151934683323,0.0450541339814663,0.997474074363708,0.484391450881958,0.747919738292694,0.453851163387299,0.293918609619141,0.841128587722778,0.453998297452927,0.531635344028473,0.846670150756836,-0.0226585641503334,0.531635344028473,0.846670150756836,-0.0226585641503334,0.293918609619141,0.841128587722778,0.453998297452927,0.279617369174957,0.960069835186005,0.00894244108349085,-0.0144961671903729,-0.0265377815812826,-0.999542653560638,-0.158719539642334,0.129642605781555,-0.978775143623352,-0.0726530775427818,0.0543684996664524,-0.995874226093292,-0.0726530775427818,0.0543684996664524,-0.995874226093292,-0.158719539642334,0.129642605781555,-0.978775143623352,-0.163679391145706,0.135774716734886,-0.977125525474548,-0.260924875736237,-0.963217079639435,-0.064272440969944,-0.190210968255997,-0.854957103729248,0.482563972473145,-0.281301617622375,-0.959469318389893,0.0169682875275612,-0.281301617622375,-0.959469318389893,0.0169682875275612,-0.190210968255997,-0.854957103729248,0.482563972473145,-0.187248647212982,-0.864633858203888,0.466204136610031,0.107402287423611,-0.368674516677856,0.923332929611206,0.203015491366386,-0.294110715389252,0.93396121263504,0.262706696987152,-0.169430747628212,0.949883341789246,0.262706696987152,-0.169430747628212,0.949883341789246,0.203015491366386,-0.294110715389252,0.93396121263504,0.289139121770859,-0.220943033695221,0.931441187858582,0.813776552677155,0.438197135925293,0.381773471832275,0.775763809680939,0.448394119739532,0.443996638059616,0.868184447288513,0.486239701509476,0.0991290062665939,0.868184447288513,0.486239701509476,0.0991290062665939,0.775763809680939,0.448394119739532,0.443996638059616,0.875024199485779,0.47971647977829,0.0648437663912773,0.211528614163399,-0.0971532240509987,-0.972531199455261,0.198291942477226,-0.108739145100117,-0.974092245101929,0.192830011248589,-0.123763680458069,-0.973395705223083,0.192830011248589,-0.123763680458069,-0.973395705223083,0.198291942477226,-0.108739145100117,-0.974092245101929, +0.18472284078598,-0.120525404810905,-0.97537225484848,0.431382536888123,0.16952221095562,0.886098980903625,0.521284937858582,0.464185237884521,0.716096520423889,0.320336490869522,0.13861195743084,0.937107920646667,0.320336490869522,0.13861195743084,0.937107920646667,0.521284937858582,0.464185237884521,0.716096520423889,0.359585225582123,0.240845441818237,0.901494145393372,0.380586326122284,0.530384004116058,-0.757526755332947,0.617819428443909,0.538956940174103,-0.572559475898743,0.412574350833893,0.155155345797539,-0.897613048553467,0.412574350833893,0.155155345797539,-0.897613048553467,0.617819428443909,0.538956940174103,-0.572559475898743,0.538770616054535,0.252404302358627,-0.803752660751343,0.647886514663696,0.760051727294922,-0.0506385490298271,0.638447225093842,0.768903732299805,0.0342374928295612,0.653108656406403,0.719853460788727,0.235074579715729,0.653108656406403,0.719853460788727,0.235074579715729,0.638447225093842,0.768903732299805,0.0342374928295612,0.699047982692719,0.702532589435577,0.133341625332832,0.665440917015076,-0.260394811630249,0.699559211730957,0.692201852798462,-0.00739429239183664,0.721666097640991,0.412095934152603,-0.298976629972458,0.860691547393799,0.412095934152603,-0.298976629972458,0.860691547393799,0.692201852798462,-0.00739429239183664,0.721666097640991,0.383913308382034,0.00158590939827263,0.923367738723755,0.360654026269913,0.00153130700346082,-0.932698428630829,0.661581456661224,-0.0198391750454903,-0.749610841274261,0.402911692857742,-0.284718930721283,-0.869826018810272,0.402911692857742,-0.284718930721283,-0.869826018810272,0.661581456661224,-0.0198391750454903,-0.749610841274261,0.666863083839417,-0.255410432815552,-0.700042366981506,0.959854483604431,0.000226509568165056,0.280498117208481,0.914842545986176,-0.273890018463135,0.296727627515793,0.999987721443176,-0.00494180014356971,-0.000171893203514628,0.999987721443176,-0.00494180014356971,-0.000171893203514628,0.914842545986176,-0.273890018463135,0.296727627515793,0.950995028018951,-0.309202313423157,0.00152376224286854, +0.426273941993713,0,-0.904593944549561,0.426273941993713,0,-0.90459406375885,0.00199557887390256,-0.000582093838602304,-0.999997794628143,0.00199557887390256,-0.000582093838602304,-0.999997794628143,0.426273941993713,0,-0.90459406375885,-1.75568999338793e-08,0,-0.999999940395355,-0.999929487705231,-0.0118698952719569,0,-1,0,0,-0.999969840049744,-0.00776384584605694,0,-0.999969840049744,-0.00776384584605694,0,-1,0,0,-0.99999988079071,0,0,-7.31327176595187e-09,0,1,-9.79212178009448e-09,0,1.00000011920929,-1.07400218496423e-07,0,1,-1.07400218496423e-07,0,1,-9.79212178009448e-09,0,1.00000011920929,0,0,1.00000011920929,0.99999988079071,0,0,0.985105514526367,-0.171171367168427,0.0163507927209139,0.983803153038025,-0.0700104534626007,0.16501447558403,0.983803153038025,-0.0700104534626007,0.16501447558403,0.985105514526367,-0.171171367168427,0.0163507927209139,0.980682373046875,-0.195588886737823,0.0026378717739135,0.00105461163911968,0.99825119972229,0.059105858206749,0.125866457819939,0.984517812728882,0.121992476284504,0.000331015675328672,0.996824860572815,0.0796246454119682,0.000331015675328672,0.996824860572815,0.0796246454119682,0.125866457819939,0.984517812728882,0.121992476284504,0.0552616156637669,0.98748767375946,0.147696673870087,0.983803153038025,-0.0700104534626007,0.16501447558403,0.999999940395355,0,0,0.99999988079071,0,0,0.99999988079071,0,0,0.999999940395355,0,0,1,0,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-0.99999988079071,0,0,-0.99999988079071,0,0,-1,0,0,-0.999969840049744,-0.00776384584605694,0,0.412095934152603,-0.298976629972458,0.860691547393799,0.383913308382034,0.00158590939827263,0.923367738723755,-0.00318428012542427,-0.225929424166679,0.97413843870163,-0.00318428012542427,-0.225929424166679,0.97413843870163,0.383913308382034,0.00158590939827263,0.923367738723755,0.00203501735813916,0.00653625139966607,0.999976515769958,0.183585226535797,0.983001947402954,0.00189992098603398,0.111098892986774,0.959459185600281,0.259027123451233,0.287947416305542,0.957629859447479,-0.00559690129011869, +0.287947416305542,0.957629859447479,-0.00559690129011869,0.111098892986774,0.959459185600281,0.259027123451233,0.196252197027206,0.949601411819458,0.24442233145237,0.00180531304795295,0.00580182438716292,-0.999981582164764,0.360654026269913,0.00153130700346082,-0.932698428630829,-0.00284116063266993,-0.200478166341782,-0.979694068431854,-0.00284116063266993,-0.200478166341782,-0.979694068431854,0.360654026269913,0.00153130700346082,-0.932698428630829,0.402911692857742,-0.284718930721283,-0.869826018810272,0,0.394563138484955,-0.918868720531464,0.380586326122284,0.530384004116058,-0.757526755332947,-2.20567727637899e-07,0.0660621076822281,-0.997815608978271,-2.20567727637899e-07,0.0660621076822281,-0.997815608978271,0.380586326122284,0.530384004116058,-0.757526755332947,0.412574350833893,0.155155345797539,-0.897613048553467,-0.00136981171090156,0.00149472546763718,-0.999997913837433,-3.77067493673167e-07,-0.0878856033086777,-0.996130585670471,0.312700003385544,0.0350603312253952,-0.949204683303833,0.312700003385544,0.0350603312253952,-0.949204683303833,-3.77067493673167e-07,-0.0878856033086777,-0.996130585670471,0.337201863527298,-0.0776249617338181,-0.938226699829102,0.0217061415314674,-0.171169683337212,-0.985002458095551,-0.00446536252275109,0.0996245294809341,-0.99501496553421,0.284771651029587,-0.153482809662819,-0.946228325366974,0.284771651029587,-0.153482809662819,-0.946228325366974,-0.00446536252275109,0.0996245294809341,-0.99501496553421,0.272987127304077,0.103648044168949,-0.956417858600616,0,0,-1,0.0327153094112873,-0.193093359470367,-0.980634808540344,0.275563389062881,0.0126702096313238,-0.961199343204498,0.275563389062881,0.0126702096313238,-0.961199343204498,0.0327153094112873,-0.193093359470367,-0.980634808540344,0.275053948163986,-0.235299319028854,-0.932190716266632,0,0,-1,0.275563389062881,0.0126702096313238,-0.961199343204498,0,-0.156217321753502,-0.98772269487381,0,-0.156217321753502,-0.98772269487381,0.275563389062881,0.0126702096313238,-0.961199343204498,0.289018988609314,-0.0315295346081257,-0.956804037094116, +-0.501733422279358,-0.222058832645416,-0.836034297943115,-0.266883820295334,-0.306620925664902,-0.913650095462799,0.0523780733346939,-0.0840912386775017,-0.995080411434174,0.0523780733346939,-0.0840912386775017,-0.995080411434174,-0.266883820295334,-0.306620925664902,-0.913650095462799,0.168989479541779,-0.0945835933089256,-0.981069087982178,0.00199557887390256,-0.000582093838602304,-0.999997794628143,-0.521376371383667,-0.0051553319208324,-0.853311121463776,-3.44017789757345e-05,-0.00135652581229806,-0.999999046325684,-3.44017789757345e-05,-0.00135652581229806,-0.999999046325684,-0.521376371383667,-0.0051553319208324,-0.853311121463776,-0.517210960388184,-0.0132316201925278,-0.855755686759949,-1.75568999338793e-08,0,-0.999999940395355,-0.52240401506424,0,-0.852698147296906,0.00199557887390256,-0.000582093838602304,-0.999997794628143,0.00199557887390256,-0.000582093838602304,-0.999997794628143,-0.52240401506424,0,-0.852698147296906,-0.521376371383667,-0.0051553319208324,-0.853311121463776,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-0.99999988079071,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.99999988079071,0,0,-0.999999940395355,0,0,0,1,-9.79212178009448e-09,0,1.00000011920929,1.60622292355583e-07,0,0.999999940395355,1.60622292355583e-07,0,0.999999940395355,-9.79212178009448e-09,0,1.00000011920929,-7.31327176595187e-09,0,1,-0.0717699229717255,0.986448526382446,0.147541254758835,-0.165674731135368,0.979469656944275,0.114852629601955,0.000331015675328672,0.996824860572815,0.0796246454119682,0.000331015675328672,0.996824860572815,0.0796246454119682,-0.165674731135368,0.979469656944275,0.114852629601955,0.00105461163911968,0.99825119972229,0.059105858206749,-0.432646632194519,-0.0110256467014551,0.901496112346649,-0.435252696275711,-0.00997861661016941,0.900252997875214,-2.84242869383888e-05,-0.00111415272112936,0.999999344348907,-2.84242869383888e-05,-0.00111415272112936,0.999999344348907,-0.435252696275711,-0.00997861661016941,0.900252997875214, +0.00389222637750208,-0.00111705285962671,0.999991774559021,-0.406670480966568,-0.0494876019656658,0.912233531475067,-0.424560725688934,-0.0308302659541368,0.904874384403229,0.00168626289814711,-0.00532709900289774,0.999984264373779,0.00168626289814711,-0.00532709900289774,0.999984264373779,-0.424560725688934,-0.0308302659541368,0.904874384403229,0.00736424513161182,-0.00254745385609567,0.999969661235809,0.0922889560461044,-0.382065773010254,0.919515311717987,-0.232311651110649,-0.31727147102356,0.919440031051636,0.237380534410477,-0.184020280838013,0.953827500343323,0.237380534410477,-0.184020280838013,0.953827500343323,-0.232311651110649,-0.31727147102356,0.919440031051636,0.0852424278855324,-0.105827465653419,0.990724146366119,0.0922889560461044,-0.382065773010254,0.919515311717987,0.237380534410477,-0.184020280838013,0.953827500343323,0.0534087754786015,-0.315232008695602,0.947510540485382,0.0534087754786015,-0.315232008695602,0.947510540485382,0.237380534410477,-0.184020280838013,0.953827500343323,0.314829111099243,-0.307392954826355,0.897993385791779,0.345470905303955,0.00965151283890009,0.938379883766174,0.0291114263236523,0.0299638714641333,0.999126970767975,0.37002894282341,-0.316148847341537,0.873572289943695,0.37002894282341,-0.316148847341537,0.873572289943695,0.0291114263236523,0.0299638714641333,0.999126970767975,0.113352715969086,-0.322884231805801,0.939625978469849,0,0.211651131510735,0.97734522819519,-0.00180651107802987,0.265882939100266,0.964003622531891,0.314387500286102,0.1987065076828,0.928265154361725,0.314387500286102,0.1987065076828,0.928265154361725,-0.00180651107802987,0.265882939100266,0.964003622531891,0.358523994684219,0.266330569982529,0.894722640514374,0,0,0.999999940395355,0,0.062072366476059,0.998071610927582,0.359585225582123,0.240845441818237,0.901494145393372,0.359585225582123,0.240845441818237,0.901494145393372,0,0.062072366476059,0.998071610927582,0.320336490869522,0.13861195743084,0.937107920646667,0.681155204772949,0.586503028869629,-0.438225626945496,0.681075632572174,0.66227787733078,-0.31228831410408, +0.647886514663696,0.760051727294922,-0.0506385490298271,0.647886514663696,0.760051727294922,-0.0506385490298271,0.681075632572174,0.66227787733078,-0.31228831410408,0.638447225093842,0.768903732299805,0.0342374928295612,0.544821918010712,0.626120150089264,-0.55780154466629,0.55185604095459,0.657226741313934,-0.513330101966858,0.637420058250427,0.768274962902069,-0.0587317161262035,0.637420058250427,0.768274962902069,-0.0587317161262035,0.55185604095459,0.657226741313934,-0.513330101966858,0.637171387672424,0.770721733570099,0.00078329403186217,0.621218979358673,0.537228405475616,-0.570502042770386,0.618921279907227,0.531836330890656,-0.578001976013184,0.750456571578979,0.65780234336853,-0.0641168206930161,0.750456571578979,0.65780234336853,-0.0641168206930161,0.618921279907227,0.531836330890656,-0.578001976013184,0.753934025764465,0.656648218631744,-0.0199156794697046,0.177747592329979,0.842412233352661,-0.508672058582306,0.329826891422272,0.697861075401306,-0.635770499706268,0.279617369174957,0.960069835186005,0.00894244108349085,0.279617369174957,0.960069835186005,0.00894244108349085,0.329826891422272,0.697861075401306,-0.635770499706268,0.531635344028473,0.846670150756836,-0.0226585641503334,0.82055389881134,0.373213261365891,-0.432900875806808,0.832888185977936,0.465629935264587,-0.29914191365242,0.875024199485779,0.47971647977829,0.0648437663912773,0.875024199485779,0.47971647977829,0.0648437663912773,0.832888185977936,0.465629935264587,-0.29914191365242,0.868184447288513,0.486239701509476,0.0991290062665939,0.842169642448425,-0.539204299449921,-0.00301687465980649,0.809233546257019,-0.510013520717621,0.291594743728638,0.849377334117889,-0.527620196342468,-0.0132241323590279,0.849377334117889,-0.527620196342468,-0.0132241323590279,0.809233546257019,-0.510013520717621,0.291594743728638,0.810663044452667,-0.504024684429169,0.297967135906219,-0.202845901250839,-0.845410764217377,-0.494099259376526,-0.260924875736237,-0.963217079639435,-0.064272440969944,-0.302040487527847,-0.886160671710968,-0.351412653923035,-0.302040487527847,-0.886160671710968,-0.351412653923035, +-0.260924875736237,-0.963217079639435,-0.064272440969944,-0.281301617622375,-0.959469318389893,0.0169682875275612,-0.7958123087883,-0.482033789157867,-0.366505265235901,-0.848477840423584,-0.528459191322327,0.0285688824951649,-0.587374329566956,-0.595588803291321,-0.547964632511139,-0.587374329566956,-0.595588803291321,-0.547964632511139,-0.848477840423584,-0.528459191322327,0.0285688824951649,-0.67758846282959,-0.728914082050323,0.0977656245231628,-0.316754192113876,-0.816405415534973,-0.482854902744293,-0.3779157102108,-0.912746667861938,0.155154347419739,-0.336039125919342,-0.830434262752533,-0.444360822439194,-0.336039125919342,-0.830434262752533,-0.444360822439194,-0.3779157102108,-0.912746667861938,0.155154347419739,-0.377313524484634,-0.907492160797119,0.184641271829605,-0.555534303188324,-0.797438323497772,-0.235528618097305,-0.562640130519867,-0.77524608373642,-0.287105590105057,-0.5907261967659,-0.806768655776978,-0.0129166357219219,-0.5907261967659,-0.806768655776978,-0.0129166357219219,-0.562640130519867,-0.77524608373642,-0.287105590105057,-0.613971054553986,-0.78736412525177,0.055653665214777,0.939368724822998,0.0993496552109718,-0.328201323747635,0.996009528636932,0.0886859223246574,-0.00999115873128176,0.94243448972702,-0.0516288541257381,-0.33038118481636,0.94243448972702,-0.0516288541257381,-0.33038118481636,0.996009528636932,0.0886859223246574,-0.00999115873128176,0.99931538105011,-0.0369870662689209,0.000693564012181014,0.89984405040741,-0.0341099388897419,-0.434875905513763,0.90602320432663,-0.162885650992393,-0.390628069639206,0.999205946922302,-0.0398414544761181,-0.000499493035022169,0.999205946922302,-0.0398414544761181,-0.000499493035022169,0.90602320432663,-0.162885650992393,-0.390628069639206,0.990713357925415,-0.135966897010803,-0.000360100006219,0.900367975234985,0,-0.435129106044769,0.89984405040741,-0.0341099388897419,-0.434875905513763,0.999999940395355,1.64872062669019e-08,3.29687495081998e-08,0.999999940395355,1.64872062669019e-08,3.29687495081998e-08,0.89984405040741,-0.0341099388897419,-0.434875905513763, +0.999205946922302,-0.0398414544761181,-0.000499493035022169,0.90036803483963,0,-0.435129225254059,0.900367975234985,0,-0.435129165649414,1,0,2.71658180395207e-08,1,0,2.71658180395207e-08,0.900367975234985,0,-0.435129165649414,0.999999940395355,-2.14244035845468e-08,3.70210351263722e-08,0.930219054222107,-0.119837380945683,-0.346888393163681,0.900367975234985,0,-0.435129165649414,0.980682373046875,-0.195588886737823,0.0026378717739135,0.980682373046875,-0.195588886737823,0.0026378717739135,0.900367975234985,0,-0.435129165649414,1,0,-6.72246835975443e-09,1,0,0,0.930219054222107,-0.119837380945683,-0.346888393163681,0.985105514526367,-0.171171367168427,0.0163507927209139,0.985105514526367,-0.171171367168427,0.0163507927209139,0.930219054222107,-0.119837380945683,-0.346888393163681,0.980682373046875,-0.195588886737823,0.0026378717739135,0,-0.99999988079071,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,-0.999929487705231,-0.0118699735030532,0,-1,0,0,-0.999929487705231,-0.0118698952719569,0,-0.999929487705231,-0.0118698952719569,0,-1,0,0,-1,0,0,-0.999608218669891,-0.027988662943244,0,-0.999608159065247,-0.0279887374490499,0,-0.999929487705231,-0.0118698952719569,0,-0.999929487705231,-0.0118698952719569,0,-0.999608159065247,-0.0279887374490499,0,-0.999929487705231,-0.0118699735030532,0,-0.990737199783325,-0.13579335808754,0,-0.995859026908875,-0.0909106656908989,0,-0.99073714017868,-0.135793387889862,0,-0.99073714017868,-0.135793387889862,0,-0.995859026908875,-0.0909106656908989,0,-0.996399343013763,-0.0847840011119843,0,-2.90191959351205e-08,-0.99999988079071,0,0,-1,0,-0.956547260284424,-0.291577219963074,0,-0.956547260284424,-0.291577219963074,0,0,-1,0,-0.9526087641716,-0.304198205471039,0,0.211319327354431,0.922604084014893,-0.322716057300568,0.114550657570362,0.931236565113068,-0.345942765474319,0.287947416305542,0.957629859447479,-0.00559690129011869, +0.287947416305542,0.957629859447479,-0.00559690129011869,0.114550657570362,0.931236565113068,-0.345942765474319,0.183585226535797,0.983001947402954,0.00189992098603398,0.470989614725113,0.881958305835724,0.0178380329161882,0.440993130207062,0.857181787490845,-0.266015559434891,0.287947416305542,0.957629859447479,-0.00559690129011869,0.287947416305542,0.957629859447479,-0.00559690129011869,0.440993130207062,0.857181787490845,-0.266015559434891,0.211319327354431,0.922604084014893,-0.322716057300568,0.941502571105957,-0.0112518733367324,-0.336818039417267,0.999987721443176,-0.00494180014356971,-0.000171893203514628,0.884253919124603,-0.275951504707336,-0.376756846904755,0.884253919124603,-0.275951504707336,-0.376756846904755,0.999987721443176,-0.00494180014356971,-0.000171893203514628,0.950995028018951,-0.309202313423157,0.00152376224286854,0.346322238445282,0.0704366564750671,0.935467600822449,0.431382536888123,0.16952221095562,0.886098980903625,0.314387500286102,0.1987065076828,0.928265154361725,0.314387500286102,0.1987065076828,0.928265154361725,0.431382536888123,0.16952221095562,0.886098980903625,0.320336490869522,0.13861195743084,0.937107920646667,0.131078898906708,0.0266109313815832,0.991014659404755,0.222073704004288,0.165876373648643,0.960816502571106,0.346322238445282,0.0704366564750671,0.935467600822449,0.346322238445282,0.0704366564750671,0.935467600822449,0.222073704004288,0.165876373648643,0.960816502571106,0.431382536888123,0.16952221095562,0.886098980903625,0.157514154911041,-0.0977203249931335,0.982669830322266,0.403522193431854,0.251527726650238,0.879717946052551,0.163295120000839,-0.0787408798933029,0.983429908752441,0.163295120000839,-0.0787408798933029,0.983429908752441,0.403522193431854,0.251527726650238,0.879717946052551,0.369166404008865,0.175117611885071,0.912715673446655,-0.175272881984711,0.0735590383410454,0.981768071651459,0.0505647845566273,0.271516710519791,0.961104512214661,-0.0549151934683323,0.0450541339814663,0.997474074363708,-0.0549151934683323,0.0450541339814663,0.997474074363708, +0.0505647845566273,0.271516710519791,0.961104512214661,0.297560155391693,0.542505741119385,0.785586059093475,0.289139121770859,-0.220943033695221,0.931441187858582,0.331625521183014,-0.10789280384779,0.937221109867096,0.262706696987152,-0.169430747628212,0.949883341789246,0.262706696987152,-0.169430747628212,0.949883341789246,0.331625521183014,-0.10789280384779,0.937221109867096,0.368115484714508,0.00297745480202138,0.929775297641754,0.80841475725174,-0.502834677696228,0.305978626012802,0.756701111793518,-0.484661370515823,0.438756018877029,0.809233546257019,-0.510013520717621,0.291594743728638,0.809233546257019,-0.510013520717621,0.291594743728638,0.756701111793518,-0.484661370515823,0.438756018877029,0.745753109455109,-0.494074016809464,0.446926116943359,0.842169642448425,-0.539204299449921,-0.00301687465980649,0.849711358547211,-0.527090787887573,0.0128748435527086,0.809233546257019,-0.510013520717621,0.291594743728638,0.809233546257019,-0.510013520717621,0.291594743728638,0.849711358547211,-0.527090787887573,0.0128748435527086,0.80841475725174,-0.502834677696228,0.305978626012802,0.197227939963341,-0.129780545830727,-0.971729338169098,0.204144552350044,-0.114092066884041,-0.972269415855408,0.192830011248589,-0.123763680458069,-0.973395705223083,0.192830011248589,-0.123763680458069,-0.973395705223083,0.204144552350044,-0.114092066884041,-0.972269415855408,0.211528614163399,-0.0971532240509987,-0.972531199455261,-0.152228057384491,0.127398446202278,-0.980100095272064,-0.158719539642334,0.129642605781555,-0.978775143623352,0.00358856865204871,0.0530025474727154,-0.998587846755981,0.00358856865204871,0.0530025474727154,-0.998587846755981,-0.158719539642334,0.129642605781555,-0.978775143623352,-0.0144961671903729,-0.0265377815812826,-0.999542653560638,0.332708388566971,0.154616728425026,-0.930268049240112,0.191558763384819,-0.135019406676292,-0.972149670124054,0.441294133663177,0.20762500166893,-0.873012781143188,0.441294133663177,0.20762500166893,-0.873012781143188,0.191558763384819,-0.135019406676292,-0.972149670124054, +0.249490067362785,-0.125581637024879,-0.96019983291626,0.538770616054535,0.252404302358627,-0.803752660751343,0.371434479951859,0.330583333969116,-0.867612242698669,0.392900168895721,0.0650129690766335,-0.91728001832962,0.392900168895721,0.0650129690766335,-0.91728001832962,0.371434479951859,0.330583333969116,-0.867612242698669,0.139671310782433,-0.00536428531631827,-0.990183293819427,0.412574350833893,0.155155345797539,-0.897613048553467,0.538770616054535,0.252404302358627,-0.803752660751343,0.337201863527298,-0.0776249617338181,-0.938226699829102,0.337201863527298,-0.0776249617338181,-0.938226699829102,0.538770616054535,0.252404302358627,-0.803752660751343,0.392900168895721,0.0650129690766335,-0.91728001832962,-3.77067493673167e-07,-0.0878856033086777,-0.996130585670471,-2.20567727637899e-07,0.0660621076822281,-0.997815608978271,0.337201863527298,-0.0776249617338181,-0.938226699829102,0.337201863527298,-0.0776249617338181,-0.938226699829102,-2.20567727637899e-07,0.0660621076822281,-0.997815608978271,0.412574350833893,0.155155345797539,-0.897613048553467,0.320336490869522,0.13861195743084,0.937107920646667,0,0.062072366476059,0.998071610927582,0.314387500286102,0.1987065076828,0.928265154361725,0.314387500286102,0.1987065076828,0.928265154361725,0,0.062072366476059,0.998071610927582,0,0.211651131510735,0.97734522819519,0.665440917015076,-0.260394811630249,0.699559211730957,0.412095934152603,-0.298976629972458,0.860691547393799,0.656968533992767,0.102436564862728,0.746926426887512,0.656968533992767,0.102436564862728,0.746926426887512,0.412095934152603,-0.298976629972458,0.860691547393799,0.302684009075165,0.0250349882990122,0.952762126922607,0.950995028018951,-0.309202313423157,0.00152376224286854,0.914842545986176,-0.273890018463135,0.296727627515793,0.996094703674316,-0.0241893325001001,0.0849127694964409,0.996094703674316,-0.0241893325001001,0.0849127694964409,0.914842545986176,-0.273890018463135,0.296727627515793,0.960439920425415,0.274263501167297,0.0483169369399548,0.900642931461334,0.413371980190277,-0.134036734700203, +0.884253919124603,-0.275951504707336,-0.376756846904755,0.996094703674316,-0.0241893325001001,0.0849127694964409,0.996094703674316,-0.0241893325001001,0.0849127694964409,0.884253919124603,-0.275951504707336,-0.376756846904755,0.950995028018951,-0.309202313423157,0.00152376224286854,0.310101568698883,0.332427948713303,-0.89069014787674,0.402911692857742,-0.284718930721283,-0.869826018810272,0.681004524230957,0.277684360742569,-0.67758709192276,0.681004524230957,0.277684360742569,-0.67758709192276,0.402911692857742,-0.284718930721283,-0.869826018810272,0.666863083839417,-0.255410432815552,-0.700042366981506,0,0.307100981473923,-0.951676905155182,-0.00284116063266993,-0.200478166341782,-0.979694068431854,0.310101568698883,0.332427948713303,-0.89069014787674,0.310101568698883,0.332427948713303,-0.89069014787674,-0.00284116063266993,-0.200478166341782,-0.979694068431854,0.402911692857742,-0.284718930721283,-0.869826018810272,0.412095934152603,-0.298976629972458,0.860691547393799,-0.00318428012542427,-0.225929424166679,0.97413843870163,0.302684009075165,0.0250349882990122,0.952762126922607,0.302684009075165,0.0250349882990122,0.952762126922607,-0.00318428012542427,-0.225929424166679,0.97413843870163,0,0,0.99999988079071,0,1,0,0.220985591411591,0.971653282642365,0.0839953869581223,0.00105461163911968,0.99825119972229,0.059105858206749,0.00105461163911968,0.99825119972229,0.059105858206749,0.220985591411591,0.971653282642365,0.0839953869581223,0.125866457819939,0.984517812728882,0.121992476284504,-0.165674731135368,0.979469656944275,0.114852629601955,-0.295234650373459,0.952772557735443,0.0711413100361824,0.00105461163911968,0.99825119972229,0.059105858206749,0.00105461163911968,0.99825119972229,0.059105858206749,-0.295234650373459,0.952772557735443,0.0711413100361824,0,1,0,-0.999999940395355,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.99999988079071,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.999999940395355,0,0,0.996009528636932,0.0886859223246574,-0.00999115873128176, +0.991519451141357,0.122384414076805,-0.0437164194881916,0.973142445087433,0.0686429291963577,0.219731420278549,0.973142445087433,0.0686429291963577,0.219731420278549,0.991519451141357,0.122384414076805,-0.0437164194881916,0.964993059635162,0.126525476574898,0.229738548398018,0.923455774784088,0.142329633235931,-0.356330662965775,0.991519451141357,0.122384414076805,-0.0437164194881916,0.939368724822998,0.0993496552109718,-0.328201323747635,0.939368724822998,0.0993496552109718,-0.328201323747635,0.991519451141357,0.122384414076805,-0.0437164194881916,0.996009528636932,0.0886859223246574,-0.00999115873128176,0.272987127304077,0.103648044168949,-0.956417858600616,0.312700003385544,0.0350603312253952,-0.949204683303833,0.448324531316757,0.120099104940891,-0.885765910148621,0.448324531316757,0.120099104940891,-0.885765910148621,0.312700003385544,0.0350603312253952,-0.949204683303833,0.375228047370911,-0.0656395778059959,-0.924605488777161,-0.00446536252275109,0.0996245294809341,-0.99501496553421,-0.00136981171090156,0.00149472546763718,-0.999997913837433,0.272987127304077,0.103648044168949,-0.956417858600616,0.272987127304077,0.103648044168949,-0.956417858600616,-0.00136981171090156,0.00149472546763718,-0.999997913837433,0.312700003385544,0.0350603312253952,-0.949204683303833,0.358523994684219,0.266330569982529,0.894722640514374,-0.00180651107802987,0.265882939100266,0.964003622531891,0.345470905303955,0.00965151283890009,0.938379883766174,0.345470905303955,0.00965151283890009,0.938379883766174,-0.00180651107802987,0.265882939100266,0.964003622531891,0.0291114263236523,0.0299638714641333,0.999126970767975,0.465938031673431,0.151986420154572,0.871666193008423,0.358523994684219,0.266330569982529,0.894722640514374,0.557071387767792,0.101513519883156,0.824236869812012,0.557071387767792,0.101513519883156,0.824236869812012,0.358523994684219,0.266330569982529,0.894722640514374,0.345470905303955,0.00965151283890009,0.938379883766174,0.438081830739975,-0.228957608342171,0.869288623332977,0.501788139343262,-0.235071003437042,0.832436323165894, +0.314829111099243,-0.307392954826355,0.897993385791779,0.314829111099243,-0.307392954826355,0.897993385791779,0.501788139343262,-0.235071003437042,0.832436323165894,0.37002894282341,-0.316148847341537,0.873572289943695,0.990713357925415,-0.135966897010803,-0.000360100006219,0.99931538105011,-0.0369870662689209,0.000693564012181014,0.938903450965881,-0.162920534610748,0.303178012371063,0.938903450965881,-0.162920534610748,0.303178012371063,0.99931538105011,-0.0369870662689209,0.000693564012181014,0.966634094715118,-0.0604551434516907,0.248924806714058,0.94243448972702,-0.0516288541257381,-0.33038118481636,0.99931538105011,-0.0369870662689209,0.000693564012181014,0.90602320432663,-0.162885650992393,-0.390628069639206,0.90602320432663,-0.162885650992393,-0.390628069639206,0.99931538105011,-0.0369870662689209,0.000693564012181014,0.990713357925415,-0.135966897010803,-0.000360100006219,0.275053948163986,-0.235299319028854,-0.932190716266632,0.284771651029587,-0.153482809662819,-0.946228325366974,0.448652803897858,-0.244477614760399,-0.859616994857788,0.448652803897858,-0.244477614760399,-0.859616994857788,0.284771651029587,-0.153482809662819,-0.946228325366974,0.46367022395134,-0.124246373772621,-0.877252995967865,0.0327153094112873,-0.193093359470367,-0.980634808540344,0.0217061415314674,-0.171169683337212,-0.985002458095551,0.275053948163986,-0.235299319028854,-0.932190716266632,0.275053948163986,-0.235299319028854,-0.932190716266632,0.0217061415314674,-0.171169683337212,-0.985002458095551,0.284771651029587,-0.153482809662819,-0.946228325366974,0.37002894282341,-0.316148847341537,0.873572289943695,0.113352715969086,-0.322884231805801,0.939625978469849,0.314829111099243,-0.307392954826355,0.897993385791779,0.314829111099243,-0.307392954826355,0.897993385791779,0.113352715969086,-0.322884231805801,0.939625978469849,0.0534087754786015,-0.315232008695602,0.947510540485382,0.333902329206467,0.0040213861502707,0.942599058151245,0.317261904478073,0.003461929038167,0.948331594467163,0.00168626289814711,-0.00532709900289774,0.999984264373779, +0.00168626289814711,-0.00532709900289774,0.999984264373779,0.317261904478073,0.003461929038167,0.948331594467163,0.0852424278855324,-0.105827465653419,0.990724146366119,0.999999940395355,-2.14244035845468e-08,3.70210351263722e-08,0.999999940395355,1.64872062669019e-08,3.29687495081998e-08,0.942193925380707,-4.03725906039654e-08,0.335067927837372,0.942193925380707,-4.03725906039654e-08,0.335067927837372,0.999999940395355,1.64872062669019e-08,3.29687495081998e-08,0.942193984985352,6.20873450429826e-08,0.335067838430405,0.900367975234985,0,-0.435129165649414,0.900367975234985,0,-0.435129106044769,0.999999940395355,-2.14244035845468e-08,3.70210351263722e-08,0.999999940395355,-2.14244035845468e-08,3.70210351263722e-08,0.900367975234985,0,-0.435129106044769,0.999999940395355,1.64872062669019e-08,3.29687495081998e-08,0.289018988609314,-0.0315295346081257,-0.956804037094116,0.456250220537186,0.0109229926019907,-0.889784455299377,0.168989479541779,-0.0945835933089256,-0.981069087982178,0.168989479541779,-0.0945835933089256,-0.981069087982178,0.456250220537186,0.0109229926019907,-0.889784455299377,0.445196628570557,-0.0108640408143401,-0.895367026329041,0,-0.156217321753502,-0.98772269487381,0.289018988609314,-0.0315295346081257,-0.956804037094116,-0.266883820295334,-0.306620925664902,-0.913650095462799,-0.266883820295334,-0.306620925664902,-0.913650095462799,0.289018988609314,-0.0315295346081257,-0.956804037094116,0.168989479541779,-0.0945835933089256,-0.981069087982178,-0.9526087641716,-0.304198205471039,0,-0.990737199783325,-0.13579335808754,0,-0.956547260284424,-0.291577219963074,0,-0.956547260284424,-0.291577219963074,0,-0.990737199783325,-0.13579335808754,0,-0.99073714017868,-0.135793387889862,0,-0.99073714017868,-0.13579349219799,0,-0.946216642856598,-0.323533743619919,0,-0.99073714017868,-0.135793387889862,0,-0.99073714017868,-0.135793387889862,0,-0.946216642856598,-0.323533743619919,0,-0.956547260284424,-0.291577219963074,0,-0.232311651110649,-0.31727147102356,0.919440031051636,-0.406670480966568,-0.0494876019656658,0.912233531475067, +0.0852424278855324,-0.105827465653419,0.990724146366119,0.0852424278855324,-0.105827465653419,0.990724146366119,-0.406670480966568,-0.0494876019656658,0.912233531475067,0.00168626289814711,-0.00532709900289774,0.999984264373779,0.348264753818512,0.000982726574875414,0.937395691871643,0.345137357711792,0.000951157649978995,0.938551545143127,-2.84242869383888e-05,-0.00111415272112936,0.999999344348907,-2.84242869383888e-05,-0.00111415272112936,0.999999344348907,0.345137357711792,0.000951157649978995,0.938551545143127,0.00736424513161182,-0.00254745385609567,0.999969661235809,1,0,-6.72246835975443e-09,1,0,2.71658180395207e-08,0.942193984985352,0,0.335067838430405,0.942193984985352,0,0.335067838430405,1,0,2.71658180395207e-08,0.942193984985352,-6.37501571532084e-08,0.335067868232727,0.900367975234985,0,-0.435129165649414,0.90036803483963,0,-0.435129225254059,1,0,-6.72246835975443e-09,1,0,-6.72246835975443e-09,0.90036803483963,0,-0.435129225254059,1,0,2.71658180395207e-08,0.423833101987839,0.00116272328887135,-0.905739545822144,-3.44017789757345e-05,-0.00135652581229806,-0.999999046325684,0.420275688171387,0.0011262537445873,-0.907395780086517,0.420275688171387,0.0011262537445873,-0.907395780086517,-3.44017789757345e-05,-0.00135652581229806,-0.999999046325684,0.0523780733346939,-0.0840912386775017,-0.995080411434174,-0.501733422279358,-0.222058832645416,-0.836034297943115,0.0523780733346939,-0.0840912386775017,-0.995080411434174,-0.517210960388184,-0.0132316201925278,-0.855755686759949,-0.517210960388184,-0.0132316201925278,-0.855755686759949,0.0523780733346939,-0.0840912386775017,-0.995080411434174,-3.44017789757345e-05,-0.00135652581229806,-0.999999046325684,-0.996399343013763,-0.0847840011119843,0,-0.995859026908875,-0.0909106656908989,0,-0.999608218669891,-0.027988662943244,0,-0.999608218669891,-0.027988662943244,0,-0.995859026908875,-0.0909106656908989,0,-0.999608159065247,-0.0279887374490499,0,-0.999608278274536,-0.0279887653887272,0,-0.996624350547791,-0.0820964425802231,0,-0.999608218669891,-0.027988662943244,0, +-0.999608218669891,-0.027988662943244,0,-0.996624350547791,-0.0820964425802231,0,-0.996399343013763,-0.0847840011119843,0,-0.424560725688934,-0.0308302659541368,0.904874384403229,-0.432646632194519,-0.0110256467014551,0.901496112346649,0.00736424513161182,-0.00254745385609567,0.999969661235809,0.00736424513161182,-0.00254745385609567,0.999969661235809,-0.432646632194519,-0.0110256467014551,0.901496112346649,-2.84242869383888e-05,-0.00111415272112936,0.999999344348907,0.111342422664165,-0.00582913029938936,0.993764996528625,0.249344736337662,0.219822376966476,0.943135917186737,0.131078898906708,0.0266109313815832,0.991014659404755,0.131078898906708,0.0266109313815832,0.991014659404755,0.249344736337662,0.219822376966476,0.943135917186737,0.222073704004288,0.165876373648643,0.960816502571106,-0.0588115267455578,-0.447263121604919,0.89246678352356,0.111342422664165,-0.00582913029938936,0.993764996528625,-0.0358376279473305,-0.283786207437515,0.95821750164032,-0.0358376279473305,-0.283786207437515,0.95821750164032,0.111342422664165,-0.00582913029938936,0.993764996528625,0.131078898906708,0.0266109313815832,0.991014659404755,-0.675441086292267,-0.731955289840698,0.0895584002137184,-0.432721138000488,-0.80301159620285,0.4097860455513,-0.613971054553986,-0.78736412525177,0.055653665214777,-0.613971054553986,-0.78736412525177,0.055653665214777,-0.432721138000488,-0.80301159620285,0.4097860455513,-0.443056464195251,-0.859062671661377,0.256343722343445,-0.562640130519867,-0.77524608373642,-0.287105590105057,-0.547805488109589,-0.742441177368164,-0.385603547096252,-0.613971054553986,-0.78736412525177,0.055653665214777,-0.613971054553986,-0.78736412525177,0.055653665214777,-0.547805488109589,-0.742441177368164,-0.385603547096252,-0.675441086292267,-0.731955289840698,0.0895584002137184,0.139671310782433,-0.00536428531631827,-0.990183293819427,0.107275150716305,-0.0572174824774265,-0.992581486701965,-0.131211519241333,-0.363944292068481,-0.92213237285614,-0.131211519241333,-0.363944292068481,-0.92213237285614,0.107275150716305,-0.0572174824774265,-0.992581486701965, +-0.137721180915833,-0.389937609434128,-0.910484135150909,0.371434479951859,0.330583333969116,-0.867612242698669,0.36583337187767,0.318659454584122,-0.87442672252655,0.139671310782433,-0.00536428531631827,-0.990183293819427,0.139671310782433,-0.00536428531631827,-0.990183293819427,0.36583337187767,0.318659454584122,-0.87442672252655,0.107275150716305,-0.0572174824774265,-0.992581486701965,0.539429664611816,0.585813105106354,-0.604845941066742,0.544821918010712,0.626120150089264,-0.55780154466629,0.637013912200928,0.765055000782013,-0.0943616032600403,0.637013912200928,0.765055000782013,-0.0943616032600403,0.544821918010712,0.626120150089264,-0.55780154466629,0.637420058250427,0.768274962902069,-0.0587317161262035,0.601978659629822,0.718953847885132,0.34745791554451,0.584815502166748,0.711538672447205,0.38949128985405,0.637420058250427,0.768274962902069,-0.0587317161262035,0.637420058250427,0.768274962902069,-0.0587317161262035,0.584815502166748,0.711538672447205,0.38949128985405,0.637013912200928,0.765055000782013,-0.0943616032600403,-0.0549151934683323,0.0450541339814663,0.997474074363708,0.297560155391693,0.542505741119385,0.785586059093475,0.157514154911041,-0.0977203249931335,0.982669830322266,0.157514154911041,-0.0977203249931335,0.982669830322266,0.297560155391693,0.542505741119385,0.785586059093475,0.403522193431854,0.251527726650238,0.879717946052551,-0.421217232942581,-0.476593822240829,0.771643877029419,-0.0549151934683323,0.0450541339814663,0.997474074363708,-0.171670943498611,-0.539757609367371,0.824130356311798,-0.171670943498611,-0.539757609367371,0.824130356311798,-0.0549151934683323,0.0450541339814663,0.997474074363708,0.157514154911041,-0.0977203249931335,0.982669830322266,-0.67758846282959,-0.728914082050323,0.0977656245231628,-0.541362881660461,-0.590148687362671,0.598874390125275,-0.3779157102108,-0.912746667861938,0.155154347419739,-0.3779157102108,-0.912746667861938,0.155154347419739,-0.541362881660461,-0.590148687362671,0.598874390125275,-0.308507770299911,-0.758739411830902,0.573705077171326, +-0.587374329566956,-0.595588803291321,-0.547964632511139,-0.67758846282959,-0.728914082050323,0.0977656245231628,-0.316754192113876,-0.816405415534973,-0.482854902744293,-0.316754192113876,-0.816405415534973,-0.482854902744293,-0.67758846282959,-0.728914082050323,0.0977656245231628,-0.3779157102108,-0.912746667861938,0.155154347419739,0.191558763384819,-0.135019406676292,-0.972149670124054,-0.0144961671903729,-0.0265377815812826,-0.999542653560638,0.0310196094214916,-0.342981845140457,-0.938829600811005,0.0310196094214916,-0.342981845140457,-0.938829600811005,-0.0144961671903729,-0.0265377815812826,-0.999542653560638,-0.0726530775427818,0.0543684996664524,-0.995874226093292,0.332708388566971,0.154616728425026,-0.930268049240112,0.00358856865204871,0.0530025474727154,-0.998587846755981,0.191558763384819,-0.135019406676292,-0.972149670124054,0.191558763384819,-0.135019406676292,-0.972149670124054,0.00358856865204871,0.0530025474727154,-0.998587846755981,-0.0144961671903729,-0.0265377815812826,-0.999542653560638,0.329826891422272,0.697861075401306,-0.635770499706268,0.621218979358673,0.537228405475616,-0.570502042770386,0.531635344028473,0.846670150756836,-0.0226585641503334,0.531635344028473,0.846670150756836,-0.0226585641503334,0.621218979358673,0.537228405475616,-0.570502042770386,0.750456571578979,0.65780234336853,-0.0641168206930161,0.681177258491516,0.59836083650589,0.421855121850967,0.484391450881958,0.747919738292694,0.453851163387299,0.750456571578979,0.65780234336853,-0.0641168206930161,0.750456571578979,0.65780234336853,-0.0641168206930161,0.484391450881958,0.747919738292694,0.453851163387299,0.531635344028473,0.846670150756836,-0.0226585641503334,1.00000011920929,0,0,0.94600236415863,0.039182897657156,0.321782678365707,0.999987721443176,-0.00494180014356971,-0.000171893203514628,0.999987721443176,-0.00494180014356971,-0.000171893203514628,0.94600236415863,0.039182897657156,0.321782678365707,0.959854483604431,0.000226509568165056,0.280498117208481,0.941502571105957,-0.0112518733367324,-0.336818039417267,0.923127293586731,0.0298637542873621,-0.383332788944244, +0.999987721443176,-0.00494180014356971,-0.000171893203514628,0.999987721443176,-0.00494180014356971,-0.000171893203514628,0.923127293586731,0.0298637542873621,-0.383332788944244,1.00000011920929,0,0,0.360654026269913,0.00153130700346082,-0.932698428630829,0.351534307003021,0.186205342411995,-0.91746997833252,0.661581456661224,-0.0198391750454903,-0.749610841274261,0.661581456661224,-0.0198391750454903,-0.749610841274261,0.351534307003021,0.186205342411995,-0.91746997833252,0.633578956127167,0.139719560742378,-0.760957360267639,0.0181008353829384,0.203324258327484,-0.978944003582001,0.351534307003021,0.186205342411995,-0.91746997833252,0.00180531304795295,0.00580182438716292,-0.999981582164764,0.00180531304795295,0.00580182438716292,-0.999981582164764,0.351534307003021,0.186205342411995,-0.91746997833252,0.360654026269913,0.00153130700346082,-0.932698428630829,0.383913308382034,0.00158590939827263,0.923367738723755,0.400220185518265,0.215778112411499,0.890653431415558,0.00203501735813916,0.00653625139966607,0.999976515769958,0.00203501735813916,0.00653625139966607,0.999976515769958,0.400220185518265,0.215778112411499,0.890653431415558,0.0203935131430626,0.229080587625504,0.973193764686584,0.69635671377182,0.176293283700943,0.695706784725189,0.400220185518265,0.215778112411499,0.890653431415558,0.692201852798462,-0.00739429239183664,0.721666097640991,0.692201852798462,-0.00739429239183664,0.721666097640991,0.400220185518265,0.215778112411499,0.890653431415558,0.383913308382034,0.00158590939827263,0.923367738723755,-0.638447225093842,0.768903791904449,0.0342371985316277,-0.699047863483429,0.702532529830933,0.133341491222382,-0.996094703674316,-0.0241891480982304,0.0849128365516663,-0.996094703674316,-0.0241891480982304,0.0849128365516663,-0.699047863483429,0.702532529830933,0.133341491222382,-0.96043998003006,0.274263679981232,0.0483172312378883,-0.681075632572174,0.66227775812149,-0.31228831410408,-0.638447225093842,0.768903791904449,0.0342371985316277,-0.9006427526474,0.413372427225113,-0.134036719799042,-0.9006427526474,0.413372427225113,-0.134036719799042, +-0.638447225093842,0.768903791904449,0.0342371985316277,-0.996094703674316,-0.0241891480982304,0.0849128365516663,-0.617819428443909,0.538956880569458,-0.572559714317322,-0.681003391742706,0.277684032917023,-0.677588403224945,-0.380586564540863,0.530384480953217,-0.757526338100433,-0.380586564540863,0.530384480953217,-0.757526338100433,-0.681003391742706,0.277684032917023,-0.677588403224945,-0.310101628303528,0.332428276538849,-0.89068990945816,-0.380586564540863,0.530384480953217,-0.757526338100433,-0.310101628303528,0.332428276538849,-0.89068990945816,0,0.394563376903534,-0.918868660926819,0,0.394563376903534,-0.918868660926819,-0.310101628303528,0.332428276538849,-0.89068990945816,0,0.307101041078568,-0.951676905155182,0.380586326122284,0.530384004116058,-0.757526755332947,0,0.394563138484955,-0.918868720531464,0.310101568698883,0.332427948713303,-0.89069014787674,0.310101568698883,0.332427948713303,-0.89069014787674,0,0.394563138484955,-0.918868720531464,0,0.307100981473923,-0.951676905155182,0.617819428443909,0.538956940174103,-0.572559475898743,0.380586326122284,0.530384004116058,-0.757526755332947,0.681004524230957,0.277684360742569,-0.67758709192276,0.681004524230957,0.277684360742569,-0.67758709192276,0.380586326122284,0.530384004116058,-0.757526755332947,0.310101568698883,0.332427948713303,-0.89069014787674,0.681075632572174,0.66227787733078,-0.31228831410408,0.900642931461334,0.413371980190277,-0.134036734700203,0.638447225093842,0.768903732299805,0.0342374928295612,0.638447225093842,0.768903732299805,0.0342374928295612,0.900642931461334,0.413371980190277,-0.134036734700203,0.996094703674316,-0.0241893325001001,0.0849127694964409,0.638447225093842,0.768903732299805,0.0342374928295612,0.996094703674316,-0.0241893325001001,0.0849127694964409,0.699047982692719,0.702532589435577,0.133341625332832,0.699047982692719,0.702532589435577,0.133341625332832,0.996094703674316,-0.0241893325001001,0.0849127694964409,0.960439920425415,0.274263501167297,0.0483169369399548,0.521284937858582,0.464185237884521,0.716096520423889, +0.656968533992767,0.102436564862728,0.746926426887512,0.359585225582123,0.240845441818237,0.901494145393372,0.359585225582123,0.240845441818237,0.901494145393372,0.656968533992767,0.102436564862728,0.746926426887512,0.302684009075165,0.0250349882990122,0.952762126922607,0,0,0.99999988079071,0,0,0.999999940395355,0.302684009075165,0.0250349882990122,0.952762126922607,0.302684009075165,0.0250349882990122,0.952762126922607,0,0,0.999999940395355,0.359585225582123,0.240845441818237,0.901494145393372,0,0,0.99999988079071,-0.30268383026123,0.0250351279973984,0.952762305736542,0,0,0.999999940395355,0,0,0.999999940395355,-0.30268383026123,0.0250351279973984,0.952762305736542,-0.359585493803024,0.240845635533333,0.901494085788727,-0.521284520626068,0.464184939861298,0.716096878051758,-0.359585493803024,0.240845635533333,0.901494085788727,-0.656968295574188,0.102436795830727,0.746926665306091,-0.656968295574188,0.102436795830727,0.746926665306091,-0.359585493803024,0.240845635533333,0.901494085788727,-0.30268383026123,0.0250351279973984,0.952762305736542,0.951056599617004,-0.0634509176015854,-0.302432209253311,0.809017241001129,-0.120691828429699,-0.575260400772095,0.951056599617004,-0.0634508356451988,-0.302432060241699,0.951056599617004,-0.0634508356451988,-0.302432060241699,0.809017241001129,-0.120691828429699,-0.575260400772095,0.809017062187195,-0.120691806077957,-0.575260639190674,0.809017241001129,-0.120691828429699,-0.575260400772095,0.587784171104431,-0.166117459535599,-0.791779518127441,0.809017062187195,-0.120691806077957,-0.575260639190674,0.809017062187195,-0.120691806077957,-0.575260639190674,0.587784171104431,-0.166117459535599,-0.791779518127441,0.587784111499786,-0.166117414832115,-0.791779458522797,0.587784171104431,-0.166117459535599,-0.791779518127441,0.309017568826675,-0.195283442735672,-0.930791318416595,0.587784111499786,-0.166117414832115,-0.791779458522797,0.587784111499786,-0.166117414832115,-0.791779458522797,0.309017568826675,-0.195283442735672,-0.930791318416595,0.309017568826675,-0.195283487439156,-0.930791258811951, +0.309017568826675,-0.195283442735672,-0.930791318416595,-1.70001541732745e-07,-0.205332905054092,-0.978692173957825,0.309017568826675,-0.195283487439156,-0.930791258811951,0.309017568826675,-0.195283487439156,-0.930791258811951,-1.70001541732745e-07,-0.205332905054092,-0.978692173957825,-1.67425596941939e-07,-0.205332666635513,-0.978692233562469,-1.70001541732745e-07,-0.205332905054092,-0.978692173957825,-0.309016615152359,-0.19528292119503,-0.930791735649109,-1.67425596941939e-07,-0.205332666635513,-0.978692233562469,-1.67425596941939e-07,-0.205332666635513,-0.978692233562469,-0.309016615152359,-0.19528292119503,-0.930791735649109,-0.309016644954681,-0.195282906293869,-0.930791676044464,-0.309016615152359,-0.19528292119503,-0.930791735649109,-0.587785720825195,-0.166117906570435,-0.791778147220612,-0.309016644954681,-0.195282906293869,-0.930791676044464,-0.309016644954681,-0.195282906293869,-0.930791676044464,-0.587785720825195,-0.166117906570435,-0.791778147220612,-0.587786316871643,-0.166117891669273,-0.791777729988098,-0.587785720825195,-0.166117906570435,-0.791778147220612,-0.809017360210419,-0.120691560208797,-0.57526034116745,-0.587786316871643,-0.166117891669273,-0.791777729988098,-0.587786316871643,-0.166117891669273,-0.791777729988098,-0.809017360210419,-0.120691560208797,-0.57526034116745,-0.809017419815063,-0.120691552758217,-0.575260162353516,-0.809017360210419,-0.120691560208797,-0.57526034116745,-0.951056480407715,-0.0634515136480331,-0.302432417869568,-0.809017419815063,-0.120691552758217,-0.575260162353516,-0.809017419815063,-0.120691552758217,-0.575260162353516,-0.951056480407715,-0.0634515136480331,-0.302432417869568,-0.951056480407715,-0.0634515658020973,-0.30243244767189,-0.951056480407715,-0.0634515136480331,-0.302432417869568,-1,5.70535178212594e-07,4.12124734339159e-08,-0.951056480407715,-0.0634515658020973,-0.30243244767189,-0.951056480407715,-0.0634515658020973,-0.30243244767189,-1,5.70535178212594e-07,4.12124734339159e-08,-0.99999988079071,4.12124734339159e-07,-1.64849893735663e-07,-1,5.70535178212594e-07,4.12124734339159e-08, +-0.95105654001236,0.0634519085288048,0.302432179450989,-0.99999988079071,4.12124734339159e-07,-1.64849893735663e-07,-0.99999988079071,4.12124734339159e-07,-1.64849893735663e-07,-0.95105654001236,0.0634519085288048,0.302432179450989,-0.951056599617004,0.0634516626596451,0.30243194103241,-0.95105654001236,0.0634519085288048,0.302432179450989,-0.809017241001129,0.120691783726215,0.57526034116745,-0.951056599617004,0.0634516626596451,0.30243194103241,-0.951056599617004,0.0634516626596451,0.30243194103241,-0.809017241001129,0.120691783726215,0.57526034116745,-0.809017181396484,0.12069184333086,0.575260519981384,-0.809017241001129,0.120691783726215,0.57526034116745,-0.587786078453064,0.166118010878563,0.791777968406677,-0.809017181396484,0.12069184333086,0.575260519981384,-0.809017181396484,0.12069184333086,0.575260519981384,-0.587786078453064,0.166118010878563,0.791777968406677,-0.587785720825195,0.166118055582047,0.791778206825256,-0.587786078453064,0.166118010878563,0.791777968406677,-0.309017181396484,0.195283308625221,0.93079149723053,-0.587785720825195,0.166118055582047,0.791778206825256,-0.587785720825195,0.166118055582047,0.791778206825256,-0.309017181396484,0.195283308625221,0.93079149723053,-0.309016793966293,0.195283144712448,0.930791676044464,-0.309017181396484,0.195283308625221,0.93079149723053,4.12124762760868e-07,0.205332845449448,0.97869211435318,-0.309016793966293,0.195283144712448,0.930791676044464,-0.309016793966293,0.195283144712448,0.930791676044464,4.12124762760868e-07,0.205332845449448,0.97869211435318,2.18941266894035e-07,0.205332636833191,0.978692293167114,4.12124762760868e-07,0.205332845449448,0.97869211435318,0.309016346931458,0.195282876491547,0.930791914463043,2.18941266894035e-07,0.205332636833191,0.978692293167114,2.18941266894035e-07,0.205332636833191,0.978692293167114,0.309016346931458,0.195282876491547,0.930791914463043,0.30901625752449,0.195282876491547,0.930791914463043,0.309016346931458,0.195282876491547,0.930791914463043,0.587785601615906,0.166117861866951,0.791778326034546,0.30901625752449,0.195282876491547,0.930791914463043, +0.30901625752449,0.195282876491547,0.930791914463043,0.587785601615906,0.166117861866951,0.791778326034546,0.587786018848419,0.166117906570435,0.791778087615967,0.587785601615906,0.166117861866951,0.791778326034546,0.809017300605774,0.120691224932671,0.57526034116745,0.587786018848419,0.166117906570435,0.791778087615967,0.587786018848419,0.166117906570435,0.791778087615967,0.809017300605774,0.120691224932671,0.57526034116745,0.809017300605774,0.120691381394863,0.575260400772095,0.809017300605774,0.120691224932671,0.57526034116745,0.951056480407715,0.0634517595171928,0.302432507276535,0.809017300605774,0.120691381394863,0.575260400772095,0.809017300605774,0.120691381394863,0.575260400772095,0.951056480407715,0.0634517595171928,0.302432507276535,0.951056480407715,0.0634517818689346,0.302432209253311,0.951056480407715,0.0634517595171928,0.302432507276535,1,1.86744102848024e-07,1.21576852052385e-06,0.951056480407715,0.0634517818689346,0.302432209253311,0.951056480407715,0.0634517818689346,0.302432209253311,1,1.86744102848024e-07,1.21576852052385e-06,1,1.93183495866833e-07,8.68037886903039e-07,1,1.86744102848024e-07,1.21576852052385e-06,0.951056599617004,-0.0634509176015854,-0.302432209253311,1,1.93183495866833e-07,8.68037886903039e-07,1,1.93183495866833e-07,8.68037886903039e-07,0.951056599617004,-0.0634509176015854,-0.302432209253311,0.951056599617004,-0.0634508356451988,-0.302432060241699,3.95428330079994e-08,-0.978691875934601,0.205334424972534,1.48285479895094e-07,-0.978691875934601,0.20533387362957,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,-4.94284755347962e-08,-0.978692293167114,0.205332323908806,3.95428330079994e-08,-0.978691875934601,0.205334424972534,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,-3.95427761645806e-08,-0.978692293167114,0.205332696437836,-4.94284755347962e-08,-0.978692293167114,0.205332323908806,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,0,-0.978692054748535,0.205333337187767,-3.95427761645806e-08,-0.978692293167114,0.205332696437836,-1.39635751850165e-08,-0.97869211435318,0.205332964658737, +9.88569581750198e-08,-0.978692352771759,0.205332368612289,0,-0.978692054748535,0.205333337187767,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,-2.76799397624927e-07,-0.978692293167114,0.205332696437836,9.88569581750198e-08,-0.978692352771759,0.205332368612289,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,-2.9286391622918e-07,-0.978692173957825,0.20533275604248,-2.76799397624927e-07,-0.978692293167114,0.205332696437836,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,-1.60642645852249e-08,-0.978692173957825,0.205332800745964,-2.9286391622918e-07,-0.978692173957825,0.20533275604248,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,0,-0.978692173957825,0.20533275604248,-1.60642645852249e-08,-0.978692173957825,0.205332800745964,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,1.97714076222155e-08,-0.978692412376404,0.205331593751907,0,-0.978692173957825,0.20533275604248,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,3.36113942012162e-07,-0.978692233562469,0.20533287525177,1.97714076222155e-08,-0.978692412376404,0.205331593751907,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,-7.90855949617253e-08,-0.978692054748535,0.205333679914474,3.36113942012162e-07,-0.978692233562469,0.20533287525177,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,-1.86725228378329e-13,-0.97869211435318,0.205333322286606,-7.90855949617253e-08,-0.978692054748535,0.205333679914474,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,3.95429466948372e-08,-0.97869199514389,0.205333411693573,-1.86725228378329e-13,-0.97869211435318,0.205333322286606,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,1.97712797245231e-08,-0.978692173957825,0.205333143472672,3.95429466948372e-08,-0.97869199514389,0.205333411693573,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,5.93142459592855e-08,-0.978692054748535,0.205333441495895,1.97712797245231e-08,-0.978692173957825,0.205333143472672,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,-3.01513807698939e-07,-0.97869199514389,0.205334052443504, +5.93142459592855e-08,-0.978692054748535,0.205333441495895,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,1.48285517198588e-08,-0.978692173957825,0.205332815647125,-3.01513807698939e-07,-0.97869199514389,0.205334052443504,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,0,-0.978692471981049,0.20533162355423,1.48285517198588e-08,-0.978692173957825,0.205332815647125,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,1.48285479895094e-07,-0.978691875934601,0.20533387362957,0,-0.978692471981049,0.20533162355423,-1.39635751850165e-08,-0.97869211435318,0.205332964658737,5.52499727746181e-07,0.978692352771759,-0.205331653356552,-4.76292740358986e-07,0.978692412376404,-0.205331668257713,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,-4.76292740358986e-07,0.978692412376404,-0.205331668257713,-2.6672483954826e-07,0.978692352771759,-0.205331727862358,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,-2.6672483954826e-07,0.978692352771759,-0.205331727862358,5.33447575890023e-07,0.978692233562469,-0.205332294106483,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,5.33447575890023e-07,0.978692233562469,-0.205332294106483,0,0.978692173957825,-0.205332800745964,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,0,0.978692173957825,-0.205332800745964,-6.09653625360806e-07,0.97869199514389,-0.205333322286606,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,-6.09653625360806e-07,0.97869199514389,-0.205333322286606,1.33361922394215e-07,0.978691577911377,-0.205335259437561,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,1.33361922394215e-07,0.978691577911377,-0.205335259437561,4.38190625118295e-07,0.978692293167114,-0.205331951379776,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,4.38190625118295e-07,0.978692293167114,-0.205331951379776,-5.33448144324211e-07,0.978692829608917,-0.205329477787018,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,-5.33448144324211e-07,0.978692829608917,-0.205329477787018,0,0.978691875934601,-0.205334052443504, +-1.50703201029501e-08,0.978692173957825,-0.205332919955254,0,0.978691875934601,-0.205334052443504,1.4936249215225e-07,0.978692412376404,-0.205331727862358,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,1.4936249215225e-07,0.978692412376404,-0.205331727862358,1.54125572748853e-07,0.978692352771759,-0.205331981182098,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,1.54125572748853e-07,0.978692352771759,-0.205331981182098,8.62089848396863e-07,0.978691875934601,-0.205334201455116,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,8.62089848396863e-07,0.978691875934601,-0.205334201455116,5.71550742733962e-07,0.978692173957825,-0.205332785844803,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,5.71550742733962e-07,0.978692173957825,-0.205332785844803,-7.62069589654857e-08,0.978692054748535,-0.20533350110054,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,-7.62069589654857e-08,0.978692054748535,-0.20533350110054,-5.90602667216444e-07,0.978692233562469,-0.205332428216934,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,-5.90602667216444e-07,0.978692233562469,-0.205332428216934,-8.00172131221188e-07,0.978691875934601,-0.205334290862083,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,-8.00172131221188e-07,0.978691875934601,-0.205334290862083,-1.71465430298667e-07,0.978691875934601,-0.205334201455116,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,-1.71465430298667e-07,0.978691875934601,-0.205334201455116,-1.71465302400975e-07,0.978691875934601,-0.205334067344666,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,-1.71465302400975e-07,0.978691875934601,-0.205334067344666,0,0.97869199514389,-0.205334037542343,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,0,0.97869199514389,-0.205334037542343,5.52499727746181e-07,0.978692352771759,-0.205331653356552,-1.50703201029501e-08,0.978692173957825,-0.205332919955254,-2.20929663896641e-07,0.978691756725311,-0.205334946513176,1.20695105465529e-07,0.97869199514389,-0.205333814024925,1.44888645081664e-07,0.97869199514389,-0.20533375442028, +1.44888645081664e-07,0.97869199514389,-0.20533375442028,1.20695105465529e-07,0.97869199514389,-0.205333814024925,7.36087088171189e-07,0.978692352771759,-0.205331787467003,6.71627049086965e-07,0.978692173957825,-0.205332934856415,5.54498342353327e-07,0.97869211435318,-0.205333009362221,5.46203580142901e-07,0.97869211435318,-0.205333039164543,5.46203580142901e-07,0.97869211435318,-0.205333039164543,5.54498342353327e-07,0.97869211435318,-0.205333009362221,3.43506997069198e-07,0.97869211435318,-0.205333188176155,-7.06975669118037e-08,0.97869211435318,-0.205332860350609,2.78609633141969e-07,0.978691756725311,-0.205334708094597,3.03347405861132e-07,0.978691816329956,-0.205334797501564,3.03347405861132e-07,0.978691816329956,-0.205334797501564,2.78609633141969e-07,0.978691756725311,-0.205334708094597,9.07840160380147e-07,0.978691160678864,-0.205337941646576,3.53487848769873e-07,0.978691935539246,-0.20533399283886,5.65099220750653e-08,0.97869199514389,-0.205333262681961,3.54784681633191e-08,0.97869211435318,-0.205333262681961,3.54784681633191e-08,0.97869211435318,-0.205333262681961,5.65099220750653e-08,0.97869199514389,-0.205333262681961,-4.78457195640658e-07,0.978692352771759,-0.205332010984421,-2.82790665551147e-07,0.978692054748535,-0.205333173274994,-4.60833788906712e-08,0.978692054748535,-0.205333724617958,-2.93202599976894e-08,0.97869199514389,-0.205333784222603,-2.93202599976894e-08,0.97869199514389,-0.205333784222603,-4.60833788906712e-08,0.978692054748535,-0.205333724617958,3.8031120652704e-07,0.978691816329956,-0.205334708094597,-4.24185202518856e-07,0.97869199514389,-0.205333933234215,-5.09248479829694e-07,0.97869211435318,-0.205333158373833,-5.15272404300049e-07,0.978692173957825,-0.205333083868027,-5.15272404300049e-07,0.978692173957825,-0.205333083868027,-5.09248479829694e-07,0.97869211435318,-0.205333158373833,-6.62478271351574e-07,0.978692471981049,-0.20533175766468,2.82790409755762e-07,0.978691399097443,-0.205336377024651,2.51912581461511e-07,0.978691935539246,-0.205334290862083,2.49725815137936e-07,0.978691935539246,-0.20533412694931, +2.49725815137936e-07,0.978691935539246,-0.20533412694931,2.51912581461511e-07,0.978691935539246,-0.205334290862083,1.96290201870397e-07,0.978692650794983,-0.205330550670624,1.41395133823607e-07,0.978691637516022,-0.205335155129433,1.08438911183839e-07,0.97869199514389,-0.205332919955254,1.06104977248833e-07,0.978692233562469,-0.205332800745964,1.06104977248833e-07,0.978692233562469,-0.205332800745964,1.08438911183839e-07,0.97869199514389,-0.205332919955254,4.90725504675993e-08,0.978693068027496,-0.205328971147537,-3.5348826088466e-08,0.978692591190338,-0.205330863595009,-4.35322533576255e-08,0.978692352771759,-0.205331534147263,-4.41117897764798e-08,0.978692471981049,-0.205331593751907,-4.41117897764798e-08,0.978692471981049,-0.205331593751907,-4.35322533576255e-08,0.978692352771759,-0.205331534147263,-5.82736170429143e-08,0.978692173957825,-0.205332770943642,-3.53488402993207e-08,0.978692054748535,-0.205333217978477,-2.2730379356517e-08,0.978691935539246,-0.205334037542343,-2.18367723903157e-08,0.978691935539246,-0.20533412694931,-2.18367723903157e-08,0.978691935539246,-0.20533412694931,-2.2730379356517e-08,0.978691935539246,-0.205334037542343,0,0.978691637516022,-0.205335572361946,4.41860308342257e-08,0.978692591190338,-0.205330863595009,-5.91737716604257e-08,0.978692233562469,-0.205332309007645,-6.64936052885423e-08,0.978692352771759,-0.205332413315773,-6.64936052885423e-08,0.978692352771759,-0.205332413315773,-5.91737716604257e-08,0.978692233562469,-0.205332309007645,-2.45362315354214e-07,0.978691756725311,-0.205334901809692,-6.71627617521153e-07,0.978692054748535,-0.205333113670349,-4.3187830556235e-07,0.978692054748535,-0.205333396792412,-4.14899062661789e-07,0.97869211435318,-0.205333426594734,-4.14899062661789e-07,0.97869211435318,-0.205333426594734,-4.3187830556235e-07,0.978692054748535,-0.205333396792412,0,0.978691935539246,-0.205333888530731,9.1906855459456e-07,0.978692233562469,-0.205332890152931,7.66162486343092e-07,0.97869199514389,-0.20533350110054,7.55334042423783e-07,0.978692054748535,-0.205333530902863, +7.55334042423783e-07,0.978692054748535,-0.205333530902863,7.66162486343092e-07,0.97869199514389,-0.20533350110054,4.90723778057145e-07,0.978691816329956,-0.205334529280663,-7.7767305128873e-07,0.978691637516022,-0.205335095524788,-6.44586521048041e-07,0.978691875934601,-0.205334007740021,-6.35161597983824e-07,0.97869199514389,-0.205333948135376,-6.35161597983824e-07,0.97869199514389,-0.205333948135376,-6.44586521048041e-07,0.978691875934601,-0.205334007740021,-4.04848407242753e-07,0.978692352771759,-0.205332040786743,5.65581444789132e-07,0.978691637516022,-0.205335468053818,5.12583881118189e-07,0.978691935539246,-0.205334156751633,5.08830567014229e-07,0.97869199514389,-0.205334052443504,5.08830567014229e-07,0.97869199514389,-0.205334052443504,5.12583881118189e-07,0.978691935539246,-0.205334156751633,4.1711595599736e-07,0.978692412376404,-0.205331772565842,-7.06975868070003e-07,0.978692173957825,-0.205332964658737,-6.47298463718471e-07,0.978692233562469,-0.205332592129707,-6.43072212369589e-07,0.978692233562469,-0.205332577228546,-6.43072212369589e-07,0.978692233562469,-0.205332577228546,-6.47298463718471e-07,0.978692233562469,-0.205332592129707,-5.39797667897801e-07,0.978692412376404,-0.205331951379776,3.53487962456711e-07,0.978691697120667,-0.2053352445364,3.67442765991655e-07,0.978691875934601,-0.205334156751633,3.68431017250259e-07,0.978691935539246,-0.205334082245827,3.68431017250259e-07,0.978691935539246,-0.205334082245827,3.67442765991655e-07,0.978691875934601,-0.205334156751633,3.9258063111447e-07,0.978692352771759,-0.205332219600677,3.53487834559019e-08,0.978692173957825,-0.205332890152931,2.27303633693055e-08,0.978692233562469,-0.205331951379776,2.18367670612452e-08,0.978692352771759,-0.205331906676292,2.18367670612452e-08,0.978692352771759,-0.205331906676292,2.27303633693055e-08,0.978692233562469,-0.205331951379776,0,0.978692650794983,-0.205330356955528,-1.76744290314446e-08,0.978692054748535,-0.205333307385445,6.15216677601893e-09,0.978691935539246,-0.205333799123764,7.83952280869471e-09,0.978691935539246,-0.205333843827248, +7.83952280869471e-09,0.978691935539246,-0.205333843827248,6.15216677601893e-09,0.978691935539246,-0.205333799123764,4.90725220458899e-08,0.978691756725311,-0.205334722995758,5.30232604489811e-08,0.978692531585693,-0.205330953001976,8.22683148271608e-08,0.978692412376404,-0.20533175766468,8.43393905824996e-08,0.978692352771759,-0.205331817269325,8.43393905824996e-08,0.978692352771759,-0.205331817269325,8.22683148271608e-08,0.978692412376404,-0.20533175766468,1.3494920381163e-07,0.978692054748535,-0.205333217978477,0.891006708145142,-0.0932192653417587,-0.444316655397415,0.891006648540497,-0.0932192355394363,-0.444316655397415,0.891006588935852,-0.093219205737114,-0.444316804409027,0.891006588935852,-0.093219205737114,-0.444316804409027,0.891006648540497,-0.0932192355394363,-0.444316655397415,0.891006588935852,-0.0932192131876945,-0.444316864013672,0.707105696201324,-0.145192384719849,-0.692040920257568,0.707105875015259,-0.145192414522171,-0.692040860652924,0.707106590270996,-0.145192474126816,-0.692040026187897,0.707106590270996,-0.145192474126816,-0.692040026187897,0.707105875015259,-0.145192414522171,-0.692040860652924,0.707106709480286,-0.145192503929138,-0.692039787769318,0.453990042209625,-0.18295319378376,-0.872021198272705,0.453990042209625,-0.18295319378376,-0.872021198272705,0.453990072011948,-0.182953208684921,-0.872021317481995,0.453990072011948,-0.182953208684921,-0.872021317481995,0.453990042209625,-0.18295319378376,-0.872021198272705,0.453990042209625,-0.182953178882599,-0.872021198272705,0.156435593962669,-0.202804997563362,-0.966642618179321,0.156435742974281,-0.202804982662201,-0.966642558574677,0.156436428427696,-0.202804893255234,-0.966642558574677,0.156436428427696,-0.202804893255234,-0.966642558574677,0.156435742974281,-0.202804982662201,-0.966642558574677,0.156436577439308,-0.202804878354073,-0.966642439365387,-0.156435593962669,-0.202805057168007,-0.966642558574677,-0.156435742974281,-0.202805042266846,-0.966642558574677,-0.156436443328857,-0.202804878354073,-0.966642618179321,-0.156436443328857,-0.202804878354073,-0.966642618179321, +-0.156435742974281,-0.202805042266846,-0.966642558574677,-0.156436592340469,-0.202804818749428,-0.966642558574677,-0.453990429639816,-0.182953074574471,-0.872021079063416,-0.453990370035172,-0.182953089475632,-0.87202113866806,-0.453990072011948,-0.182953253388405,-0.87202125787735,-0.453990072011948,-0.182953253388405,-0.87202125787735,-0.453990370035172,-0.182953089475632,-0.87202113866806,-0.453990012407303,-0.18295331299305,-0.872021317481995,-0.707108020782471,-0.145192191004753,-0.692038536071777,-0.707108020782471,-0.145192161202431,-0.692038536071777,-0.707108080387115,-0.145192116498947,-0.692038536071777,-0.707108080387115,-0.145192116498947,-0.692038536071777,-0.707108020782471,-0.145192161202431,-0.692038536071777,-0.707108020782471,-0.145192086696625,-0.692038476467133,-0.891006469726562,-0.0932191908359528,-0.444316834211349,-0.891006469726562,-0.0932192131876945,-0.444316834211349,-0.891006469726562,-0.0932193100452423,-0.444316953420639,-0.891006469726562,-0.0932193100452423,-0.444316953420639,-0.891006469726562,-0.0932192131876945,-0.444316834211349,-0.891006350517273,-0.0932193249464035,-0.444316923618317,-0.98768812417984,-0.0321215838193893,-0.153102651238441,-0.98768812417984,-0.0321215242147446,-0.153102606534958,-0.98768812417984,-0.0321212634444237,-0.15310238301754,-0.98768812417984,-0.0321212634444237,-0.15310238301754,-0.98768812417984,-0.0321215242147446,-0.153102606534958,-0.98768812417984,-0.0321212038397789,-0.153102323412895,-0.98768812417984,0.0321214385330677,0.153102308511734,-0.987688183784485,0.0321214199066162,0.153102338314056,-0.987688183784485,0.0321213267743587,0.153102457523346,-0.987688183784485,0.0321213267743587,0.153102457523346,-0.987688183784485,0.0321214199066162,0.153102338314056,-0.98768812417984,0.032121304422617,0.153102472424507,-0.891006708145142,0.0932192876935005,0.444316685199738,-0.891006588935852,0.0932192429900169,0.444316625595093,-0.891006708145142,0.0932191237807274,0.444316506385803,-0.891006708145142,0.0932191237807274,0.444316506385803,-0.891006588935852,0.0932192429900169,0.444316625595093, +-0.891006827354431,0.093219093978405,0.444316416978836,-0.707107424736023,0.14519214630127,0.692039310932159,-0.707107245922089,0.145192131400108,0.69203919172287,-0.707107186317444,0.145192265510559,0.692039370536804,-0.707107186317444,0.145192265510559,0.692039370536804,-0.707107245922089,0.145192131400108,0.69203919172287,-0.707107186317444,0.145192295312881,0.692039549350739,-0.453990042209625,0.182952910661697,0.872021317481995,-0.453990042209625,0.182952955365181,0.872021436691284,-0.453989744186401,0.182952970266342,0.872021555900574,-0.453989744186401,0.182952970266342,0.872021555900574,-0.453990042209625,0.182952955365181,0.872021436691284,-0.453989624977112,0.182952970266342,0.872021555900574,-0.156435608863831,0.202805027365685,0.966642558574677,-0.156435638666153,0.202805042266846,0.966642677783966,-0.156435742974281,0.202805042266846,0.966642677783966,-0.156435742974281,0.202805042266846,0.966642677783966,-0.156435638666153,0.202805042266846,0.966642677783966,-0.156435757875443,0.202805027365685,0.966642558574677,0.156436681747437,0.202805057168007,0.966642320156097,0.156436651945114,0.202805072069168,0.966642379760742,0.156436413526535,0.202805057168007,0.966642379760742,0.156436413526535,0.202805057168007,0.966642379760742,0.156436651945114,0.202805072069168,0.966642379760742,0.156436383724213,0.20280510187149,0.966642498970032,0.453989654779434,0.182953044772148,0.872021436691284,0.453989833593369,0.182953074574471,0.872021436691284,0.453990310430527,0.182953014969826,0.872021079063416,0.453990310430527,0.182953014969826,0.872021079063416,0.453989833593369,0.182953074574471,0.872021436691284,0.453990459442139,0.182953000068665,0.872021079063416,0.707106113433838,0.145192384719849,0.692040383815765,0.707106113433838,0.145192354917526,0.692040324211121,0.707106411457062,0.145192310214043,0.692040085792542,0.707106411457062,0.145192310214043,0.692040085792542,0.707106113433838,0.145192354917526,0.692040324211121,0.707106590270996,0.145192325115204,0.692040085792542,0.891006350517273,0.0932192504405975,0.444317013025284, +0.891006410121918,0.0932192653417587,0.444317072629929,0.891006529331207,0.0932192727923393,0.444317132234573,0.891006529331207,0.0932192727923393,0.444317132234573,0.891006410121918,0.0932192653417587,0.444317072629929,0.891006410121918,0.0932192578911781,0.444317042827606,0.987688183784485,0.0321213193237782,0.153101831674576,0.98768824338913,0.032121304422617,0.153101831674576,0.987688183784485,0.0321212224662304,0.153101742267609,0.987688183784485,0.0321212224662304,0.153101742267609,0.98768824338913,0.032121304422617,0.153101831674576,0.98768824338913,0.0321212075650692,0.153101742267609,0.987688362598419,-0.0321210809051991,-0.15310050547123,0.987688481807709,-0.0321210660040379,-0.15310050547123,0.987688541412354,-0.0321209877729416,-0.153100341558456,0.987688541412354,-0.0321209877729416,-0.153100341558456,0.987688481807709,-0.0321210660040379,-0.15310050547123,0.987688362598419,-0.0321209654211998,-0.153100296854973,1.90956916412688e-06,0.173117056488991,0.984901189804077,-4.05526577651472e-07,0.173117741942406,0.984901130199432,3.88967691833386e-06,0.173117429018021,0.984901130199432,3.88967691833386e-06,0.173117429018021,0.984901130199432,-4.05526577651472e-07,0.173117741942406,0.984901130199432,2.04378110879588e-07,0.173117130994797,0.984901070594788,1.28045519431907e-06,0.173117607831955,0.984901130199432,-1.23275333407946e-06,0.173117190599442,0.984901189804077,1.90956916412688e-06,0.173117056488991,0.984901189804077,1.90956916412688e-06,0.173117056488991,0.984901189804077,-1.23275333407946e-06,0.173117190599442,0.984901189804077,-4.05526577651472e-07,0.173117741942406,0.984901130199432,-1.23275333407946e-06,0.173117190599442,0.984901189804077,4.81965685139585e-07,0.173117950558662,0.984901189804077,-4.05526577651472e-07,0.173117741942406,0.984901130199432,-4.05526577651472e-07,0.173117741942406,0.984901130199432,4.81965685139585e-07,0.173117950558662,0.984901189804077,1.87789098049507e-07,0.173117160797119,0.984901249408722,-4.05526577651472e-07,0.173117741942406,0.984901130199432,1.87789098049507e-07,0.173117160797119,0.984901249408722, +2.04378110879588e-07,0.173117130994797,0.984901070594788,2.04378110879588e-07,0.173117130994797,0.984901070594788,1.87789098049507e-07,0.173117160797119,0.984901249408722,-2.82684169405911e-07,0.173117846250534,0.984901070594788,7.24923950201628e-07,0.173117339611053,0.984901189804077,5.33945012648473e-07,0.173117473721504,0.984901010990143,1.28045519431907e-06,0.173117607831955,0.984901130199432,1.28045519431907e-06,0.173117607831955,0.984901130199432,5.33945012648473e-07,0.173117473721504,0.984901010990143,-1.23275333407946e-06,0.173117190599442,0.984901189804077,-4.20247410204411e-08,0.17311680316925,0.984901309013367,-1.73653944557373e-07,0.173117309808731,0.984901189804077,7.24923950201628e-07,0.173117339611053,0.984901189804077,7.24923950201628e-07,0.173117339611053,0.984901189804077,-1.73653944557373e-07,0.173117309808731,0.984901189804077,5.33945012648473e-07,0.173117473721504,0.984901010990143,-1.73653944557373e-07,0.173117309808731,0.984901189804077,1.49323369669219e-07,0.173117250204086,0.984901249408722,5.33945012648473e-07,0.173117473721504,0.984901010990143,5.33945012648473e-07,0.173117473721504,0.984901010990143,1.49323369669219e-07,0.173117250204086,0.984901249408722,1.51776714574225e-06,0.173117160797119,0.984901189804077,5.33945012648473e-07,0.173117473721504,0.984901010990143,1.51776714574225e-06,0.173117160797119,0.984901189804077,-1.23275333407946e-06,0.173117190599442,0.984901189804077,-1.23275333407946e-06,0.173117190599442,0.984901189804077,1.51776714574225e-06,0.173117160797119,0.984901189804077,4.81965685139585e-07,0.173117950558662,0.984901189804077,1.51776714574225e-06,0.173117160797119,0.984901189804077,-1.17833974400128e-06,0.17311692237854,0.984901428222656,4.81965685139585e-07,0.173117950558662,0.984901189804077,4.81965685139585e-07,0.173117950558662,0.984901189804077,-1.17833974400128e-06,0.17311692237854,0.984901428222656,2.54752393402669e-07,0.173116773366928,0.984901309013367,1.49323369669219e-07,0.173117250204086,0.984901249408722,6.42758308799785e-08,0.173117250204086,0.984901189804077, +1.51776714574225e-06,0.173117160797119,0.984901189804077,1.51776714574225e-06,0.173117160797119,0.984901189804077,6.42758308799785e-08,0.173117250204086,0.984901189804077,-1.17833974400128e-06,0.17311692237854,0.984901428222656,6.42758308799785e-08,0.173117250204086,0.984901189804077,2.13551331285089e-07,0.173117384314537,0.984901189804077,-1.17833974400128e-06,0.17311692237854,0.984901428222656,-1.17833974400128e-06,0.17311692237854,0.984901428222656,2.13551331285089e-07,0.173117384314537,0.984901189804077,-4.24074471538916e-07,0.17311629652977,0.984901428222656,-1.17833974400128e-06,0.17311692237854,0.984901428222656,-4.24074471538916e-07,0.17311629652977,0.984901428222656,2.54752393402669e-07,0.173116773366928,0.984901309013367,2.54752393402669e-07,0.173116773366928,0.984901309013367,-4.24074471538916e-07,0.17311629652977,0.984901428222656,2.15961776461882e-07,0.173117339611053,0.984901249408722,1.87789098049507e-07,0.173117160797119,0.984901249408722,-2.43017495904496e-07,0.173116534948349,0.984901368618011,-2.82684169405911e-07,0.173117846250534,0.984901070594788,-2.82684169405911e-07,0.173117846250534,0.984901070594788,-2.43017495904496e-07,0.173116534948349,0.984901368618011,1.19856636615623e-07,0.173117101192474,0.984901189804077,4.81965685139585e-07,0.173117950558662,0.984901189804077,2.54752393402669e-07,0.173116773366928,0.984901309013367,1.87789098049507e-07,0.173117160797119,0.984901249408722,1.87789098049507e-07,0.173117160797119,0.984901249408722,2.54752393402669e-07,0.173116773366928,0.984901309013367,-2.43017495904496e-07,0.173116534948349,0.984901368618011,2.54752393402669e-07,0.173116773366928,0.984901309013367,2.15961776461882e-07,0.173117339611053,0.984901249408722,-2.43017495904496e-07,0.173116534948349,0.984901368618011,-2.43017495904496e-07,0.173116534948349,0.984901368618011,2.15961776461882e-07,0.173117339611053,0.984901249408722,-2.17572271310473e-08,0.173117250204086,0.984901189804077,-2.43017495904496e-07,0.173116534948349,0.984901368618011,-2.17572271310473e-08,0.173117250204086,0.984901189804077, +1.19856636615623e-07,0.173117101192474,0.984901189804077,1.19856636615623e-07,0.173117101192474,0.984901189804077,-2.17572271310473e-08,0.173117250204086,0.984901189804077,6.95850587817404e-07,0.173117518424988,0.984901130199432,-4.20247410204411e-08,0.17311680316925,0.984901309013367,-7.43579334994138e-07,0.173117354512215,0.984901070594788,-1.73653944557373e-07,0.173117309808731,0.984901189804077,-1.73653944557373e-07,0.173117309808731,0.984901189804077,-7.43579334994138e-07,0.173117354512215,0.984901070594788,-7.66706591548427e-08,0.173117086291313,0.984901309013367,-7.43579334994138e-07,0.173117354512215,0.984901070594788,-1.14536646833585e-06,0.173116981983185,0.984901249408722,-7.66706591548427e-08,0.173117086291313,0.984901309013367,-7.66706591548427e-08,0.173117086291313,0.984901309013367,-1.14536646833585e-06,0.173116981983185,0.984901249408722,1.91460389942222e-06,0.173116862773895,0.984901309013367,-7.66706591548427e-08,0.173117086291313,0.984901309013367,1.91460389942222e-06,0.173116862773895,0.984901309013367,-1.18427101369889e-06,0.173117414116859,0.984901130199432,-1.18427101369889e-06,0.173117414116859,0.984901130199432,1.91460389942222e-06,0.173116862773895,0.984901309013367,-1.93910580037482e-07,0.173117578029633,0.984901189804077,-1.73653944557373e-07,0.173117309808731,0.984901189804077,-7.66706591548427e-08,0.173117086291313,0.984901309013367,1.49323369669219e-07,0.173117250204086,0.984901249408722,1.49323369669219e-07,0.173117250204086,0.984901249408722,-7.66706591548427e-08,0.173117086291313,0.984901309013367,-1.18427101369889e-06,0.173117414116859,0.984901130199432,-1.14536646833585e-06,0.173116981983185,0.984901249408722,-1.93491860045469e-06,0.173117116093636,0.984901309013367,1.91460389942222e-06,0.173116862773895,0.984901309013367,1.91460389942222e-06,0.173116862773895,0.984901309013367,-1.93491860045469e-06,0.173117116093636,0.984901309013367,1.29755528632813e-06,0.173117488622665,0.984901130199432,-1.93491860045469e-06,0.173117116093636,0.984901309013367,-3.67884922525263e-06,0.173117339611053,0.984901130199432, +1.29755528632813e-06,0.173117488622665,0.984901130199432,1.29755528632813e-06,0.173117488622665,0.984901130199432,-3.67884922525263e-06,0.173117339611053,0.984901130199432,-2.90757462551028e-09,0.173117905855179,0.984901010990143,1.29755528632813e-06,0.173117488622665,0.984901130199432,-2.90757462551028e-09,0.173117905855179,0.984901010990143,-4.43733995325601e-07,0.173117637634277,0.984901189804077,-4.43733995325601e-07,0.173117637634277,0.984901189804077,-2.90757462551028e-09,0.173117905855179,0.984901010990143,-1.31487084331638e-07,0.17311780154705,0.984901189804077,1.91460389942222e-06,0.173116862773895,0.984901309013367,1.29755528632813e-06,0.173117488622665,0.984901130199432,-1.93910580037482e-07,0.173117578029633,0.984901189804077,-1.93910580037482e-07,0.173117578029633,0.984901189804077,1.29755528632813e-06,0.173117488622665,0.984901130199432,-4.43733995325601e-07,0.173117637634277,0.984901189804077,-1.93910580037482e-07,0.173117578029633,0.984901189804077,-4.43733995325601e-07,0.173117637634277,0.984901189804077,-4.50193795131781e-07,0.173116490244865,0.984901309013367,-4.50193795131781e-07,0.173116490244865,0.984901309013367,-4.43733995325601e-07,0.173117637634277,0.984901189804077,-1.2385737591103e-07,0.173116430640221,0.984901368618011,-4.43733995325601e-07,0.173117637634277,0.984901189804077,-1.31487084331638e-07,0.17311780154705,0.984901189804077,-1.2385737591103e-07,0.173116430640221,0.984901368618011,-1.2385737591103e-07,0.173116430640221,0.984901368618011,-1.31487084331638e-07,0.17311780154705,0.984901189804077,7.15028969366927e-09,0.173117369413376,0.984901249408722,-1.2385737591103e-07,0.173116430640221,0.984901368618011,7.15028969366927e-09,0.173117369413376,0.984901249408722,8.64734204242268e-08,0.173117652535439,0.984901130199432,8.64734204242268e-08,0.173117652535439,0.984901130199432,7.15028969366927e-09,0.173117369413376,0.984901249408722,-1.02988747130439e-06,0.173117339611053,0.984901309013367,-4.50193795131781e-07,0.173116490244865,0.984901309013367,-1.2385737591103e-07,0.173116430640221,0.984901368618011, +-2.4739583182054e-07,0.17311729490757,0.984901309013367,-2.4739583182054e-07,0.17311729490757,0.984901309013367,-1.2385737591103e-07,0.173116430640221,0.984901368618011,8.64734204242268e-08,0.173117652535439,0.984901130199432,1.49323369669219e-07,0.173117250204086,0.984901249408722,-1.18427101369889e-06,0.173117414116859,0.984901130199432,6.42758308799785e-08,0.173117250204086,0.984901189804077,6.42758308799785e-08,0.173117250204086,0.984901189804077,-1.18427101369889e-06,0.173117414116859,0.984901130199432,1.69844520314655e-06,0.173117071390152,0.984901130199432,-1.18427101369889e-06,0.173117414116859,0.984901130199432,-1.93910580037482e-07,0.173117578029633,0.984901189804077,1.69844520314655e-06,0.173117071390152,0.984901130199432,1.69844520314655e-06,0.173117071390152,0.984901130199432,-1.93910580037482e-07,0.173117578029633,0.984901189804077,-4.50193795131781e-07,0.173116490244865,0.984901309013367,1.69844520314655e-06,0.173117071390152,0.984901130199432,-4.50193795131781e-07,0.173116490244865,0.984901309013367,5.96431448229851e-07,0.173116624355316,0.984901309013367,5.96431448229851e-07,0.173116624355316,0.984901309013367,-4.50193795131781e-07,0.173116490244865,0.984901309013367,-2.4739583182054e-07,0.17311729490757,0.984901309013367,6.42758308799785e-08,0.173117250204086,0.984901189804077,1.69844520314655e-06,0.173117071390152,0.984901130199432,2.13551331285089e-07,0.173117384314537,0.984901189804077,2.13551331285089e-07,0.173117384314537,0.984901189804077,1.69844520314655e-06,0.173117071390152,0.984901130199432,5.96431448229851e-07,0.173116624355316,0.984901309013367,-2.17572271310473e-08,0.173117250204086,0.984901189804077,-4.79985873269584e-09,0.173117518424988,0.984901189804077,6.95850587817404e-07,0.173117518424988,0.984901130199432,6.95850587817404e-07,0.173117518424988,0.984901130199432,-4.79985873269584e-09,0.173117518424988,0.984901189804077,-1.27173677810788e-06,0.17311729490757,0.984901189804077,2.15961776461882e-07,0.173117339611053,0.984901249408722,6.72531484724459e-07,0.173117995262146,0.984901010990143, +-2.17572271310473e-08,0.173117250204086,0.984901189804077,-2.17572271310473e-08,0.173117250204086,0.984901189804077,6.72531484724459e-07,0.173117995262146,0.984901010990143,-4.79985873269584e-09,0.173117518424988,0.984901189804077,-4.79985873269584e-09,0.173117518424988,0.984901189804077,6.72531484724459e-07,0.173117995262146,0.984901010990143,1.18064910736848e-07,0.173117235302925,0.984901249408722,1.18064910736848e-07,0.173117235302925,0.984901249408722,6.72531484724459e-07,0.173117995262146,0.984901010990143,-1.28486465200695e-06,0.173116862773895,0.984901309013367,-1.27173677810788e-06,0.17311729490757,0.984901189804077,-4.79985873269584e-09,0.173117518424988,0.984901189804077,5.83107407692296e-07,0.173118591308594,0.984900891780853,5.83107407692296e-07,0.173118591308594,0.984900891780853,-4.79985873269584e-09,0.173117518424988,0.984901189804077,1.18064910736848e-07,0.173117235302925,0.984901249408722,-4.24074471538916e-07,0.17311629652977,0.984901428222656,6.25336269877153e-07,0.173117563128471,0.984901189804077,2.15961776461882e-07,0.173117339611053,0.984901249408722,2.15961776461882e-07,0.173117339611053,0.984901249408722,6.25336269877153e-07,0.173117563128471,0.984901189804077,6.72531484724459e-07,0.173117995262146,0.984901010990143,2.13551331285089e-07,0.173117384314537,0.984901189804077,-6.78375542406684e-08,0.173117950558662,0.984901130199432,-4.24074471538916e-07,0.17311629652977,0.984901428222656,-4.24074471538916e-07,0.17311629652977,0.984901428222656,-6.78375542406684e-08,0.173117950558662,0.984901130199432,6.25336269877153e-07,0.173117563128471,0.984901189804077,6.25336269877153e-07,0.173117563128471,0.984901189804077,-6.78375542406684e-08,0.173117950558662,0.984901130199432,9.38519974624796e-07,0.173117235302925,0.984901189804077,9.38519974624796e-07,0.173117235302925,0.984901189804077,-6.78375542406684e-08,0.173117950558662,0.984901130199432,-3.67031873338419e-07,0.173117890954018,0.984901070594788,6.72531484724459e-07,0.173117995262146,0.984901010990143,6.25336269877153e-07,0.173117563128471,0.984901189804077, +-1.28486465200695e-06,0.173116862773895,0.984901309013367,-1.28486465200695e-06,0.173116862773895,0.984901309013367,6.25336269877153e-07,0.173117563128471,0.984901189804077,9.38519974624796e-07,0.173117235302925,0.984901189804077,-1.28486465200695e-06,0.173116862773895,0.984901309013367,9.38519974624796e-07,0.173117235302925,0.984901189804077,-6.85928682742087e-07,0.173117384314537,0.984901189804077,-6.85928682742087e-07,0.173117384314537,0.984901189804077,9.38519974624796e-07,0.173117235302925,0.984901189804077,1.02731382867205e-06,0.173117026686668,0.984901249408722,9.38519974624796e-07,0.173117235302925,0.984901189804077,-3.67031873338419e-07,0.173117890954018,0.984901070594788,1.02731382867205e-06,0.173117026686668,0.984901249408722,1.02731382867205e-06,0.173117026686668,0.984901249408722,-3.67031873338419e-07,0.173117890954018,0.984901070594788,2.70001009994303e-07,0.173116773366928,0.984901368618011,1.02731382867205e-06,0.173117026686668,0.984901249408722,2.70001009994303e-07,0.173116773366928,0.984901368618011,-5.40307610208401e-07,0.173115998506546,0.984901487827301,-5.40307610208401e-07,0.173115998506546,0.984901487827301,2.70001009994303e-07,0.173116773366928,0.984901368618011,-1.82025829076338e-07,0.173116534948349,0.984901309013367,-6.85928682742087e-07,0.173117384314537,0.984901189804077,1.02731382867205e-06,0.173117026686668,0.984901249408722,-4.31817639423571e-08,0.173117458820343,0.984901189804077,-4.31817639423571e-08,0.173117458820343,0.984901189804077,1.02731382867205e-06,0.173117026686668,0.984901249408722,-5.40307610208401e-07,0.173115998506546,0.984901487827301,5.83107407692296e-07,0.173118591308594,0.984900891780853,1.18064910736848e-07,0.173117235302925,0.984901249408722,1.09348468413373e-06,0.173117473721504,0.984901189804077,1.09348468413373e-06,0.173117473721504,0.984901189804077,1.18064910736848e-07,0.173117235302925,0.984901249408722,-7.63222942623543e-07,0.173116430640221,0.984901309013367,1.18064910736848e-07,0.173117235302925,0.984901249408722,-1.28486465200695e-06,0.173116862773895,0.984901309013367, +-7.63222942623543e-07,0.173116430640221,0.984901309013367,-7.63222942623543e-07,0.173116430640221,0.984901309013367,-1.28486465200695e-06,0.173116862773895,0.984901309013367,-6.85928682742087e-07,0.173117384314537,0.984901189804077,-7.63222942623543e-07,0.173116430640221,0.984901309013367,-6.85928682742087e-07,0.173117384314537,0.984901189804077,-5.06703202063363e-07,0.173116400837898,0.984901368618011,-5.06703202063363e-07,0.173116400837898,0.984901368618011,-6.85928682742087e-07,0.173117384314537,0.984901189804077,-4.31817639423571e-08,0.173117458820343,0.984901189804077,1.09348468413373e-06,0.173117473721504,0.984901189804077,-7.63222942623543e-07,0.173116430640221,0.984901309013367,-2.84265865957423e-07,0.173115998506546,0.984901428222656,-2.84265865957423e-07,0.173115998506546,0.984901428222656,-7.63222942623543e-07,0.173116430640221,0.984901309013367,-5.06703202063363e-07,0.173116400837898,0.984901368618011,2.13551331285089e-07,0.173117384314537,0.984901189804077,5.96431448229851e-07,0.173116624355316,0.984901309013367,-6.78375542406684e-08,0.173117950558662,0.984901130199432,-6.78375542406684e-08,0.173117950558662,0.984901130199432,5.96431448229851e-07,0.173116624355316,0.984901309013367,-6.58008843856805e-07,0.17311754822731,0.984901130199432,5.96431448229851e-07,0.173116624355316,0.984901309013367,-2.4739583182054e-07,0.17311729490757,0.984901309013367,-6.58008843856805e-07,0.17311754822731,0.984901130199432,-6.58008843856805e-07,0.17311754822731,0.984901130199432,-2.4739583182054e-07,0.17311729490757,0.984901309013367,-6.19554555214563e-07,0.173117995262146,0.984901130199432,-6.19554555214563e-07,0.173117995262146,0.984901130199432,1.2622432450371e-06,0.173117265105247,0.984901189804077,-6.58008843856805e-07,0.17311754822731,0.984901130199432,-6.58008843856805e-07,0.17311754822731,0.984901130199432,1.2622432450371e-06,0.173117265105247,0.984901189804077,-1.43520367146266e-06,0.173117339611053,0.984901189804077,-6.58008843856805e-07,0.17311754822731,0.984901130199432,-1.43520367146266e-06,0.173117339611053,0.984901189804077, +-6.78375542406684e-08,0.173117950558662,0.984901130199432,-6.78375542406684e-08,0.173117950558662,0.984901130199432,-1.43520367146266e-06,0.173117339611053,0.984901189804077,-3.67031873338419e-07,0.173117890954018,0.984901070594788,-2.4739583182054e-07,0.17311729490757,0.984901309013367,8.64734204242268e-08,0.173117652535439,0.984901130199432,-6.19554555214563e-07,0.173117995262146,0.984901130199432,-6.19554555214563e-07,0.173117995262146,0.984901130199432,8.64734204242268e-08,0.173117652535439,0.984901130199432,6.15988611230023e-08,0.173116758465767,0.984901249408722,8.64734204242268e-08,0.173117652535439,0.984901130199432,-1.02988747130439e-06,0.173117339611053,0.984901309013367,6.15988611230023e-08,0.173116758465767,0.984901249408722,6.15988611230023e-08,0.173116758465767,0.984901249408722,-1.02988747130439e-06,0.173117339611053,0.984901309013367,1.25861333799548e-06,0.173116281628609,0.984901309013367,1.25861333799548e-06,0.173116281628609,0.984901309013367,5.11835551719741e-08,0.173117578029633,0.984901130199432,6.15988611230023e-08,0.173116758465767,0.984901249408722,6.15988611230023e-08,0.173116758465767,0.984901249408722,5.11835551719741e-08,0.173117578029633,0.984901130199432,3.00675395692451e-07,0.173116981983185,0.984901309013367,6.15988611230023e-08,0.173116758465767,0.984901249408722,3.00675395692451e-07,0.173116981983185,0.984901309013367,-6.19554555214563e-07,0.173117995262146,0.984901130199432,-6.19554555214563e-07,0.173117995262146,0.984901130199432,3.00675395692451e-07,0.173116981983185,0.984901309013367,1.2622432450371e-06,0.173117265105247,0.984901189804077,3.00675395692451e-07,0.173116981983185,0.984901309013367,1.2306196595091e-06,0.173116937279701,0.984901309013367,1.2622432450371e-06,0.173117265105247,0.984901189804077,1.2622432450371e-06,0.173117265105247,0.984901189804077,1.2306196595091e-06,0.173116937279701,0.984901309013367,7.80038362790947e-07,0.173117265105247,0.984901249408722,5.11835551719741e-08,0.173117578029633,0.984901130199432,-2.08973062854056e-07,0.173117756843567,0.984901130199432, +3.00675395692451e-07,0.173116981983185,0.984901309013367,3.00675395692451e-07,0.173116981983185,0.984901309013367,-2.08973062854056e-07,0.173117756843567,0.984901130199432,1.2306196595091e-06,0.173116937279701,0.984901309013367,-2.08973062854056e-07,0.173117756843567,0.984901130199432,4.09487768138206e-07,0.173117026686668,0.984901249408722,1.2306196595091e-06,0.173116937279701,0.984901309013367,1.2306196595091e-06,0.173116937279701,0.984901309013367,4.09487768138206e-07,0.173117026686668,0.984901249408722,9.16294311537058e-07,0.1731166690588,0.984901368618011,1.2306196595091e-06,0.173116937279701,0.984901309013367,9.16294311537058e-07,0.1731166690588,0.984901368618011,7.80038362790947e-07,0.173117265105247,0.984901249408722,7.80038362790947e-07,0.173117265105247,0.984901249408722,9.16294311537058e-07,0.1731166690588,0.984901368618011,8.60900115640106e-07,0.173117235302925,0.984901249408722,-1.43520367146266e-06,0.173117339611053,0.984901189804077,-9.9857652458013e-07,0.173117056488991,0.984901130199432,-3.67031873338419e-07,0.173117890954018,0.984901070594788,-3.67031873338419e-07,0.173117890954018,0.984901070594788,-9.9857652458013e-07,0.173117056488991,0.984901130199432,2.70001009994303e-07,0.173116773366928,0.984901368618011,1.2622432450371e-06,0.173117265105247,0.984901189804077,7.80038362790947e-07,0.173117265105247,0.984901249408722,-1.43520367146266e-06,0.173117339611053,0.984901189804077,-1.43520367146266e-06,0.173117339611053,0.984901189804077,7.80038362790947e-07,0.173117265105247,0.984901249408722,-9.9857652458013e-07,0.173117056488991,0.984901130199432,7.80038362790947e-07,0.173117265105247,0.984901249408722,8.60900115640106e-07,0.173117235302925,0.984901249408722,-9.9857652458013e-07,0.173117056488991,0.984901130199432,-9.9857652458013e-07,0.173117056488991,0.984901130199432,8.60900115640106e-07,0.173117235302925,0.984901249408722,1.11812028080749e-06,0.173117145895958,0.984901249408722,-9.9857652458013e-07,0.173117056488991,0.984901130199432,1.11812028080749e-06,0.173117145895958,0.984901249408722,2.70001009994303e-07,0.173116773366928,0.984901368618011, +2.70001009994303e-07,0.173116773366928,0.984901368618011,1.11812028080749e-06,0.173117145895958,0.984901249408722,-1.82025829076338e-07,0.173116534948349,0.984901309013367,7.24923950201628e-07,0.173117339611053,0.984901189804077,-6.08416030445369e-07,0.173116773366928,0.984901249408722,-4.20247410204411e-08,0.17311680316925,0.984901309013367,-4.20247410204411e-08,0.17311680316925,0.984901309013367,-6.08416030445369e-07,0.173116773366928,0.984901249408722,3.26229837810388e-07,0.173116981983185,0.984901130199432,1.28045519431907e-06,0.173117607831955,0.984901130199432,-1.05359140434302e-06,0.173117265105247,0.984901249408722,7.24923950201628e-07,0.173117339611053,0.984901189804077,7.24923950201628e-07,0.173117339611053,0.984901189804077,-1.05359140434302e-06,0.173117265105247,0.984901249408722,-6.08416030445369e-07,0.173116773366928,0.984901249408722,-1.05359140434302e-06,0.173117265105247,0.984901249408722,1.57281135670928e-06,0.173116981983185,0.984901189804077,-6.08416030445369e-07,0.173116773366928,0.984901249408722,-6.08416030445369e-07,0.173116773366928,0.984901249408722,1.57281135670928e-06,0.173116981983185,0.984901189804077,1.18872230814304e-06,0.173117145895958,0.984901309013367,-6.08416030445369e-07,0.173116773366928,0.984901249408722,1.18872230814304e-06,0.173117145895958,0.984901309013367,3.26229837810388e-07,0.173116981983185,0.984901130199432,3.26229837810388e-07,0.173116981983185,0.984901130199432,1.18872230814304e-06,0.173117145895958,0.984901309013367,2.77704259588063e-07,0.173117056488991,0.984901130199432,1.90956916412688e-06,0.173117056488991,0.984901189804077,-9.87891667136864e-07,0.173117309808731,0.984901130199432,1.28045519431907e-06,0.173117607831955,0.984901130199432,1.28045519431907e-06,0.173117607831955,0.984901130199432,-9.87891667136864e-07,0.173117309808731,0.984901130199432,-1.05359140434302e-06,0.173117265105247,0.984901249408722,3.88967691833386e-06,0.173117429018021,0.984901130199432,-1.1349721944498e-06,0.173116758465767,0.984901309013367,1.90956916412688e-06,0.173117056488991,0.984901189804077, +1.90956916412688e-06,0.173117056488991,0.984901189804077,-1.1349721944498e-06,0.173116758465767,0.984901309013367,-9.87891667136864e-07,0.173117309808731,0.984901130199432,-1.1349721944498e-06,0.173116758465767,0.984901309013367,-2.092129761877e-06,0.173117235302925,0.984901189804077,-9.87891667136864e-07,0.173117309808731,0.984901130199432,-9.87891667136864e-07,0.173117309808731,0.984901130199432,-2.092129761877e-06,0.173117235302925,0.984901189804077,3.78422612357099e-07,0.173116981983185,0.984901309013367,-9.87891667136864e-07,0.173117309808731,0.984901130199432,3.78422612357099e-07,0.173116981983185,0.984901309013367,-1.05359140434302e-06,0.173117265105247,0.984901249408722,-1.05359140434302e-06,0.173117265105247,0.984901249408722,3.78422612357099e-07,0.173116981983185,0.984901309013367,1.57281135670928e-06,0.173116981983185,0.984901189804077,3.78422612357099e-07,0.173116981983185,0.984901309013367,6.28620512088673e-07,0.173117250204086,0.984901189804077,1.57281135670928e-06,0.173116981983185,0.984901189804077,1.57281135670928e-06,0.173116981983185,0.984901189804077,6.28620512088673e-07,0.173117250204086,0.984901189804077,-4.78482718335727e-07,0.173117399215698,0.984901189804077,-2.092129761877e-06,0.173117235302925,0.984901189804077,5.54675750663591e-07,0.173117130994797,0.984901189804077,3.78422612357099e-07,0.173116981983185,0.984901309013367,3.78422612357099e-07,0.173116981983185,0.984901309013367,5.54675750663591e-07,0.173117130994797,0.984901189804077,6.28620512088673e-07,0.173117250204086,0.984901189804077,5.54675750663591e-07,0.173117130994797,0.984901189804077,-6.5007930061256e-07,0.173117324709892,0.984901130199432,6.28620512088673e-07,0.173117250204086,0.984901189804077,6.28620512088673e-07,0.173117250204086,0.984901189804077,-6.5007930061256e-07,0.173117324709892,0.984901130199432,-5.53554091453634e-09,0.173117130994797,0.984901249408722,6.28620512088673e-07,0.173117250204086,0.984901189804077,-5.53554091453634e-09,0.173117130994797,0.984901249408722,-4.78482718335727e-07,0.173117399215698,0.984901189804077, +-4.78482718335727e-07,0.173117399215698,0.984901189804077,-5.53554091453634e-09,0.173117130994797,0.984901249408722,-5.07244578784594e-07,0.17311717569828,0.984901189804077,1.18872230814304e-06,0.173117145895958,0.984901309013367,1.38721247822104e-07,0.173117309808731,0.984901249408722,2.77704259588063e-07,0.173117056488991,0.984901130199432,2.77704259588063e-07,0.173117056488991,0.984901130199432,1.38721247822104e-07,0.173117309808731,0.984901249408722,5.08373830143682e-07,0.173117265105247,0.984901130199432,1.57281135670928e-06,0.173116981983185,0.984901189804077,-4.78482718335727e-07,0.173117399215698,0.984901189804077,1.18872230814304e-06,0.173117145895958,0.984901309013367,1.18872230814304e-06,0.173117145895958,0.984901309013367,-4.78482718335727e-07,0.173117399215698,0.984901189804077,1.38721247822104e-07,0.173117309808731,0.984901249408722,-4.78482718335727e-07,0.173117399215698,0.984901189804077,-5.07244578784594e-07,0.17311717569828,0.984901189804077,1.38721247822104e-07,0.173117309808731,0.984901249408722,1.38721247822104e-07,0.173117309808731,0.984901249408722,-5.07244578784594e-07,0.17311717569828,0.984901189804077,-8.60801094404451e-07,0.173117250204086,0.984901189804077,1.38721247822104e-07,0.173117309808731,0.984901249408722,-8.60801094404451e-07,0.173117250204086,0.984901189804077,5.08373830143682e-07,0.173117265105247,0.984901130199432,5.08373830143682e-07,0.173117265105247,0.984901130199432,-8.60801094404451e-07,0.173117250204086,0.984901189804077,-2.76880371075094e-07,0.173117116093636,0.984901249408722,-3.67884922525263e-06,0.173117339611053,0.984901130199432,-1.93491860045469e-06,0.173117116093636,0.984901309013367,1.13497583242861e-06,0.173116996884346,0.984901249408722,1.13497583242861e-06,0.173116996884346,0.984901249408722,-1.93491860045469e-06,0.173117116093636,0.984901309013367,1.11793519863568e-06,0.173117071390152,0.984901130199432,-1.93491860045469e-06,0.173117116093636,0.984901309013367,-1.14536646833585e-06,0.173116981983185,0.984901249408722,1.11793519863568e-06,0.173117071390152,0.984901130199432, +1.11793519863568e-06,0.173117071390152,0.984901130199432,-1.14536646833585e-06,0.173116981983185,0.984901249408722,1.03290324204863e-06,0.173117697238922,0.984901130199432,1.11793519863568e-06,0.173117071390152,0.984901130199432,1.03290324204863e-06,0.173117697238922,0.984901130199432,-4.89679550241817e-08,0.173117533326149,0.984901130199432,-4.89679550241817e-08,0.173117533326149,0.984901130199432,1.03290324204863e-06,0.173117697238922,0.984901130199432,-1.15787929644284e-06,0.173116996884346,0.984901309013367,1.13497583242861e-06,0.173116996884346,0.984901249408722,1.11793519863568e-06,0.173117071390152,0.984901130199432,1.04606101558602e-06,0.17311754822731,0.984901249408722,1.04606101558602e-06,0.17311754822731,0.984901249408722,1.11793519863568e-06,0.173117071390152,0.984901130199432,-4.89679550241817e-08,0.173117533326149,0.984901130199432,-1.14536646833585e-06,0.173116981983185,0.984901249408722,-7.43579334994138e-07,0.173117354512215,0.984901070594788,1.03290324204863e-06,0.173117697238922,0.984901130199432,1.03290324204863e-06,0.173117697238922,0.984901130199432,-7.43579334994138e-07,0.173117354512215,0.984901070594788,3.87806068147256e-07,0.173117533326149,0.984901130199432,-7.43579334994138e-07,0.173117354512215,0.984901070594788,-4.20247410204411e-08,0.17311680316925,0.984901309013367,3.87806068147256e-07,0.173117533326149,0.984901130199432,3.87806068147256e-07,0.173117533326149,0.984901130199432,-4.20247410204411e-08,0.17311680316925,0.984901309013367,3.26229837810388e-07,0.173116981983185,0.984901130199432,3.87806068147256e-07,0.173117533326149,0.984901130199432,3.26229837810388e-07,0.173116981983185,0.984901130199432,-1.40762517730764e-06,0.173116832971573,0.984901309013367,-1.40762517730764e-06,0.173116832971573,0.984901309013367,3.26229837810388e-07,0.173116981983185,0.984901130199432,2.77704259588063e-07,0.173117056488991,0.984901130199432,1.03290324204863e-06,0.173117697238922,0.984901130199432,3.87806068147256e-07,0.173117533326149,0.984901130199432,-1.15787929644284e-06,0.173116996884346,0.984901309013367, +-1.15787929644284e-06,0.173116996884346,0.984901309013367,3.87806068147256e-07,0.173117533326149,0.984901130199432,-1.40762517730764e-06,0.173116832971573,0.984901309013367,-1.15787929644284e-06,0.173116996884346,0.984901309013367,-1.40762517730764e-06,0.173116832971573,0.984901309013367,1.28439182844886e-06,0.173117339611053,0.984901249408722,1.28439182844886e-06,0.173117339611053,0.984901249408722,-1.40762517730764e-06,0.173116832971573,0.984901309013367,1.61835842504843e-07,0.173117235302925,0.984901189804077,-1.40762517730764e-06,0.173116832971573,0.984901309013367,2.77704259588063e-07,0.173117056488991,0.984901130199432,1.61835842504843e-07,0.173117235302925,0.984901189804077,1.61835842504843e-07,0.173117235302925,0.984901189804077,2.77704259588063e-07,0.173117056488991,0.984901130199432,5.08373830143682e-07,0.173117265105247,0.984901130199432,1.61835842504843e-07,0.173117235302925,0.984901189804077,5.08373830143682e-07,0.173117265105247,0.984901130199432,2.71986920097333e-07,0.173117220401764,0.984901249408722,2.71986920097333e-07,0.173117220401764,0.984901249408722,5.08373830143682e-07,0.173117265105247,0.984901130199432,-2.76880371075094e-07,0.173117116093636,0.984901249408722,1.28439182844886e-06,0.173117339611053,0.984901249408722,1.61835842504843e-07,0.173117235302925,0.984901189804077,2.6464408620086e-07,0.173117056488991,0.984901189804077,2.6464408620086e-07,0.173117056488991,0.984901189804077,1.61835842504843e-07,0.173117235302925,0.984901189804077,2.71986920097333e-07,0.173117220401764,0.984901249408722,1.04606101558602e-06,0.17311754822731,0.984901249408722,-4.89679550241817e-08,0.173117533326149,0.984901130199432,8.06084301530063e-07,0.17311692237854,0.984901249408722,8.06084301530063e-07,0.17311692237854,0.984901249408722,-4.89679550241817e-08,0.173117533326149,0.984901130199432,1.30402145259723e-06,0.173116981983185,0.984901249408722,-4.89679550241817e-08,0.173117533326149,0.984901130199432,-1.15787929644284e-06,0.173116996884346,0.984901309013367,1.30402145259723e-06,0.173116981983185,0.984901249408722, +1.30402145259723e-06,0.173116981983185,0.984901249408722,-1.15787929644284e-06,0.173116996884346,0.984901309013367,1.28439182844886e-06,0.173117339611053,0.984901249408722,1.30402145259723e-06,0.173116981983185,0.984901249408722,1.28439182844886e-06,0.173117339611053,0.984901249408722,-1.67546531315566e-07,0.17311717569828,0.984901309013367,-1.67546531315566e-07,0.17311717569828,0.984901309013367,1.28439182844886e-06,0.173117339611053,0.984901249408722,2.6464408620086e-07,0.173117056488991,0.984901189804077,8.06084301530063e-07,0.17311692237854,0.984901249408722,1.30402145259723e-06,0.173116981983185,0.984901249408722,2.10030535185979e-07,0.173117503523827,0.984901189804077,2.10030535185979e-07,0.173117503523827,0.984901189804077,1.30402145259723e-06,0.173116981983185,0.984901249408722,-1.67546531315566e-07,0.17311717569828,0.984901309013367,-8.60801094404451e-07,0.173117250204086,0.984901189804077,9.41585867053618e-08,0.173117369413376,0.984901249408722,-2.76880371075094e-07,0.173117116093636,0.984901249408722,-2.76880371075094e-07,0.173117116093636,0.984901249408722,9.41585867053618e-08,0.173117369413376,0.984901249408722,6.84083772739541e-07,0.173117309808731,0.984901249408722,-5.07244578784594e-07,0.17311717569828,0.984901189804077,2.68594885710627e-06,0.173117190599442,0.984901189804077,-8.60801094404451e-07,0.173117250204086,0.984901189804077,-8.60801094404451e-07,0.173117250204086,0.984901189804077,2.68594885710627e-06,0.173117190599442,0.984901189804077,9.41585867053618e-08,0.173117369413376,0.984901249408722,2.68594885710627e-06,0.173117190599442,0.984901189804077,1.03862487321749e-06,0.173117250204086,0.984901130199432,9.41585867053618e-08,0.173117369413376,0.984901249408722,9.41585867053618e-08,0.173117369413376,0.984901249408722,1.03862487321749e-06,0.173117250204086,0.984901130199432,2.08427854886395e-06,0.173117205500603,0.984901249408722,9.41585867053618e-08,0.173117369413376,0.984901249408722,2.08427854886395e-06,0.173117205500603,0.984901249408722,6.84083772739541e-07,0.173117309808731,0.984901249408722, +6.84083772739541e-07,0.173117309808731,0.984901249408722,2.08427854886395e-06,0.173117205500603,0.984901249408722,-1.06616880657384e-07,0.173117160797119,0.984901309013367,-5.53554091453634e-09,0.173117130994797,0.984901249408722,1.43552574627392e-06,0.173117220401764,0.984901249408722,-5.07244578784594e-07,0.17311717569828,0.984901189804077,-5.07244578784594e-07,0.17311717569828,0.984901189804077,1.43552574627392e-06,0.173117220401764,0.984901249408722,2.68594885710627e-06,0.173117190599442,0.984901189804077,-6.5007930061256e-07,0.173117324709892,0.984901130199432,-2.21453751692025e-06,0.173117145895958,0.984901189804077,-5.53554091453634e-09,0.173117130994797,0.984901249408722,-5.53554091453634e-09,0.173117130994797,0.984901249408722,-2.21453751692025e-06,0.173117145895958,0.984901189804077,1.43552574627392e-06,0.173117220401764,0.984901249408722,-2.21453751692025e-06,0.173117145895958,0.984901189804077,2.58110162576486e-07,0.17311717569828,0.984901249408722,1.43552574627392e-06,0.173117220401764,0.984901249408722,1.43552574627392e-06,0.173117220401764,0.984901249408722,2.58110162576486e-07,0.17311717569828,0.984901249408722,-5.62802256354189e-07,0.173117309808731,0.984901130199432,1.43552574627392e-06,0.173117220401764,0.984901249408722,-5.62802256354189e-07,0.173117309808731,0.984901130199432,2.68594885710627e-06,0.173117190599442,0.984901189804077,2.68594885710627e-06,0.173117190599442,0.984901189804077,-5.62802256354189e-07,0.173117309808731,0.984901130199432,1.03862487321749e-06,0.173117250204086,0.984901130199432,-5.62802256354189e-07,0.173117309808731,0.984901130199432,-2.01018292500521e-06,0.173117265105247,0.984901189804077,1.03862487321749e-06,0.173117250204086,0.984901130199432,1.03862487321749e-06,0.173117250204086,0.984901130199432,-2.01018292500521e-06,0.173117265105247,0.984901189804077,2.02654135250668e-07,0.173117235302925,0.984901189804077,2.58110162576486e-07,0.17311717569828,0.984901249408722,1.80292408913374e-06,0.173117309808731,0.984901130199432,-5.62802256354189e-07,0.173117309808731,0.984901130199432, +-5.62802256354189e-07,0.173117309808731,0.984901130199432,1.80292408913374e-06,0.173117309808731,0.984901130199432,-2.01018292500521e-06,0.173117265105247,0.984901189804077,1.80292408913374e-06,0.173117309808731,0.984901130199432,-3.50395197301623e-07,0.173117130994797,0.984901249408722,-2.01018292500521e-06,0.173117265105247,0.984901189804077,-2.01018292500521e-06,0.173117265105247,0.984901189804077,-3.50395197301623e-07,0.173117130994797,0.984901249408722,0,0.173117220401764,0.984901189804077,-2.01018292500521e-06,0.173117265105247,0.984901189804077,0,0.173117220401764,0.984901189804077,2.02654135250668e-07,0.173117235302925,0.984901189804077,2.02654135250668e-07,0.173117235302925,0.984901189804077,0,0.173117220401764,0.984901189804077,2.16362309402029e-07,0.173117324709892,0.984901249408722,2.08427854886395e-06,0.173117205500603,0.984901249408722,8.09378320809628e-07,0.173117250204086,0.984901189804077,-1.06616880657384e-07,0.173117160797119,0.984901309013367,-1.06616880657384e-07,0.173117160797119,0.984901309013367,8.09378320809628e-07,0.173117250204086,0.984901189804077,-3.95628603655496e-07,0.173117280006409,0.984901189804077,1.03862487321749e-06,0.173117250204086,0.984901130199432,2.02654135250668e-07,0.173117235302925,0.984901189804077,2.08427854886395e-06,0.173117205500603,0.984901249408722,2.08427854886395e-06,0.173117205500603,0.984901249408722,2.02654135250668e-07,0.173117235302925,0.984901189804077,8.09378320809628e-07,0.173117250204086,0.984901189804077,2.02654135250668e-07,0.173117235302925,0.984901189804077,2.16362309402029e-07,0.173117324709892,0.984901249408722,8.09378320809628e-07,0.173117250204086,0.984901189804077,8.09378320809628e-07,0.173117250204086,0.984901189804077,2.16362309402029e-07,0.173117324709892,0.984901249408722,-1.99632722797105e-06,0.173117473721504,0.984901189804077,8.09378320809628e-07,0.173117250204086,0.984901189804077,-1.99632722797105e-06,0.173117473721504,0.984901189804077,-3.95628603655496e-07,0.173117280006409,0.984901189804077,-3.95628603655496e-07,0.173117280006409,0.984901189804077, +-1.99632722797105e-06,0.173117473721504,0.984901189804077,-6.49837716082402e-07,0.173117458820343,0.984901130199432,2.10030535185979e-07,0.173117503523827,0.984901189804077,-1.67546531315566e-07,0.17311717569828,0.984901309013367,1.38888344736188e-06,0.173117205500603,0.984901189804077,1.38888344736188e-06,0.173117205500603,0.984901189804077,-1.67546531315566e-07,0.17311717569828,0.984901309013367,-1.22742483199545e-06,0.173117205500603,0.984901189804077,-1.67546531315566e-07,0.17311717569828,0.984901309013367,2.6464408620086e-07,0.173117056488991,0.984901189804077,-1.22742483199545e-06,0.173117205500603,0.984901189804077,-1.22742483199545e-06,0.173117205500603,0.984901189804077,2.6464408620086e-07,0.173117056488991,0.984901189804077,-2.11111455428181e-06,0.173117205500603,0.984901249408722,-1.22742483199545e-06,0.173117205500603,0.984901189804077,-2.11111455428181e-06,0.173117205500603,0.984901249408722,1.12907605398505e-06,0.173117384314537,0.984901130199432,1.12907605398505e-06,0.173117384314537,0.984901130199432,-2.11111455428181e-06,0.173117205500603,0.984901249408722,-9.2089283043606e-07,0.173117309808731,0.984901189804077,1.38888344736188e-06,0.173117205500603,0.984901189804077,-1.22742483199545e-06,0.173117205500603,0.984901189804077,6.04365936851536e-07,0.173117265105247,0.984901189804077,6.04365936851536e-07,0.173117265105247,0.984901189804077,-1.22742483199545e-06,0.173117205500603,0.984901189804077,1.12907605398505e-06,0.173117384314537,0.984901130199432,2.6464408620086e-07,0.173117056488991,0.984901189804077,2.71986920097333e-07,0.173117220401764,0.984901249408722,-2.11111455428181e-06,0.173117205500603,0.984901249408722,-2.11111455428181e-06,0.173117205500603,0.984901249408722,2.71986920097333e-07,0.173117220401764,0.984901249408722,6.60377963868086e-07,0.173117324709892,0.984901249408722,2.71986920097333e-07,0.173117220401764,0.984901249408722,-2.76880371075094e-07,0.173117116093636,0.984901249408722,6.60377963868086e-07,0.173117324709892,0.984901249408722,6.60377963868086e-07,0.173117324709892,0.984901249408722, +-2.76880371075094e-07,0.173117116093636,0.984901249408722,6.84083772739541e-07,0.173117309808731,0.984901249408722,6.60377963868086e-07,0.173117324709892,0.984901249408722,6.84083772739541e-07,0.173117309808731,0.984901249408722,-1.77603931206249e-06,0.17311717569828,0.984901249408722,-1.77603931206249e-06,0.17311717569828,0.984901249408722,6.84083772739541e-07,0.173117309808731,0.984901249408722,-1.06616880657384e-07,0.173117160797119,0.984901309013367,-2.11111455428181e-06,0.173117205500603,0.984901249408722,6.60377963868086e-07,0.173117324709892,0.984901249408722,-9.2089283043606e-07,0.173117309808731,0.984901189804077,-9.2089283043606e-07,0.173117309808731,0.984901189804077,6.60377963868086e-07,0.173117324709892,0.984901249408722,-1.77603931206249e-06,0.17311717569828,0.984901249408722,-9.2089283043606e-07,0.173117309808731,0.984901189804077,-1.77603931206249e-06,0.17311717569828,0.984901249408722,7.12261112312262e-07,0.173117220401764,0.984901130199432,7.12261112312262e-07,0.173117220401764,0.984901130199432,-1.77603931206249e-06,0.17311717569828,0.984901249408722,-1.19100673146022e-06,0.173117309808731,0.984901249408722,-1.77603931206249e-06,0.17311717569828,0.984901249408722,-1.06616880657384e-07,0.173117160797119,0.984901309013367,-1.19100673146022e-06,0.173117309808731,0.984901249408722,-1.19100673146022e-06,0.173117309808731,0.984901249408722,-1.06616880657384e-07,0.173117160797119,0.984901309013367,-3.95628603655496e-07,0.173117280006409,0.984901189804077,-1.19100673146022e-06,0.173117309808731,0.984901249408722,-3.95628603655496e-07,0.173117280006409,0.984901189804077,1.30393220842961e-06,0.173117384314537,0.984901249408722,1.30393220842961e-06,0.173117384314537,0.984901249408722,-3.95628603655496e-07,0.173117280006409,0.984901189804077,-6.49837716082402e-07,0.173117458820343,0.984901130199432,7.12261112312262e-07,0.173117220401764,0.984901130199432,-1.19100673146022e-06,0.173117309808731,0.984901249408722,1.82462613906864e-07,0.173117309808731,0.984901249408722,1.82462613906864e-07,0.173117309808731,0.984901249408722, +-1.19100673146022e-06,0.173117309808731,0.984901249408722,1.30393220842961e-06,0.173117384314537,0.984901249408722,6.04365936851536e-07,0.173117265105247,0.984901189804077,1.12907605398505e-06,0.173117384314537,0.984901130199432,6.97452378517482e-07,0.173117071390152,0.984901130199432,6.97452378517482e-07,0.173117071390152,0.984901130199432,1.12907605398505e-06,0.173117384314537,0.984901130199432,2.14541432796977e-06,0.17311704158783,0.984901189804077,1.12907605398505e-06,0.173117384314537,0.984901130199432,-9.2089283043606e-07,0.173117309808731,0.984901189804077,2.14541432796977e-06,0.17311704158783,0.984901189804077,2.14541432796977e-06,0.17311704158783,0.984901189804077,-9.2089283043606e-07,0.173117309808731,0.984901189804077,7.12261112312262e-07,0.173117220401764,0.984901130199432,2.14541432796977e-06,0.17311704158783,0.984901189804077,7.12261112312262e-07,0.173117220401764,0.984901130199432,-3.40116230290732e-07,0.17311729490757,0.984901249408722,-3.40116230290732e-07,0.17311729490757,0.984901249408722,7.12261112312262e-07,0.173117220401764,0.984901130199432,1.82462613906864e-07,0.173117309808731,0.984901249408722,6.97452378517482e-07,0.173117071390152,0.984901130199432,2.14541432796977e-06,0.17311704158783,0.984901189804077,3.50395765735811e-07,0.173117265105247,0.984901249408722,3.50395765735811e-07,0.173117265105247,0.984901249408722,2.14541432796977e-06,0.17311704158783,0.984901189804077,-3.40116230290732e-07,0.17311729490757,0.984901249408722,1.75123147982958e-06,-0.173117309808731,-0.984901189804077,4.87311694996606e-07,-0.173117429018021,-0.984901189804077,-1.73907426415099e-06,-0.173117503523827,-0.984901130199432,-1.73907426415099e-06,-0.173117503523827,-0.984901130199432,4.87311694996606e-07,-0.173117429018021,-0.984901189804077,4.02835098611831e-07,-0.173117160797119,-0.984901309013367,4.87311694996606e-07,-0.173117429018021,-0.984901189804077,-5.59482735695838e-08,-0.173116564750671,-0.984901309013367,4.02835098611831e-07,-0.173117160797119,-0.984901309013367,4.02835098611831e-07,-0.173117160797119,-0.984901309013367, +-5.59482735695838e-08,-0.173116564750671,-0.984901309013367,4.84624422369961e-07,-0.173117458820343,-0.984901249408722,6.51647951599443e-07,-0.173116862773895,-0.984901309013367,2.63034479530688e-07,-0.173117861151695,-0.984901070594788,4.87311694996606e-07,-0.173117429018021,-0.984901189804077,4.87311694996606e-07,-0.173117429018021,-0.984901189804077,2.63034479530688e-07,-0.173117861151695,-0.984901070594788,-5.59482735695838e-08,-0.173116564750671,-0.984901309013367,0,-0.17311692237854,-0.984901309013367,6.51647951599443e-07,-0.173116862773895,-0.984901309013367,1.75123147982958e-06,-0.173117309808731,-0.984901189804077,1.75123147982958e-06,-0.173117309808731,-0.984901189804077,6.51647951599443e-07,-0.173116862773895,-0.984901309013367,4.87311694996606e-07,-0.173117429018021,-0.984901189804077,-5.59482735695838e-08,-0.173116564750671,-0.984901309013367,8.93900704568296e-08,-0.173117160797119,-0.984901309013367,4.84624422369961e-07,-0.173117458820343,-0.984901249408722,4.84624422369961e-07,-0.173117458820343,-0.984901249408722,8.93900704568296e-08,-0.173117160797119,-0.984901309013367,-6.63254581922956e-07,-0.173117086291313,-0.984901189804077,8.93900704568296e-08,-0.173117160797119,-0.984901309013367,0,-0.173117592930794,-0.984901130199432,-6.63254581922956e-07,-0.173117086291313,-0.984901189804077,-6.63254581922956e-07,-0.173117086291313,-0.984901189804077,0,-0.173117592930794,-0.984901130199432,6.58457554973679e-13,-0.173117205500603,-0.984901130199432,-2.83848464732728e-07,-0.173116967082024,-0.984901249408722,1.34803778382986e-12,-0.173116818070412,-0.984901249408722,8.93900704568296e-08,-0.173117160797119,-0.984901309013367,8.93900704568296e-08,-0.173117160797119,-0.984901309013367,1.34803778382986e-12,-0.173116818070412,-0.984901249408722,0,-0.173117592930794,-0.984901130199432,2.63034479530688e-07,-0.173117861151695,-0.984901070594788,-2.83848464732728e-07,-0.173116967082024,-0.984901249408722,-5.59482735695838e-08,-0.173116564750671,-0.984901309013367,-5.59482735695838e-08,-0.173116564750671,-0.984901309013367, +-2.83848464732728e-07,-0.173116967082024,-0.984901249408722,8.93900704568296e-08,-0.173117160797119,-0.984901309013367,-4.34968370655042e-07,-0.173117280006409,-0.984901249408722,-1.83600249670235e-07,-0.173117458820343,-0.984901189804077,2.63034479530688e-07,-0.173117861151695,-0.984901070594788,2.63034479530688e-07,-0.173117861151695,-0.984901070594788,-1.83600249670235e-07,-0.173117458820343,-0.984901189804077,-2.83848464732728e-07,-0.173116967082024,-0.984901249408722,-1.83600249670235e-07,-0.173117458820343,-0.984901189804077,0,-0.173117697238922,-0.984901070594788,-2.83848464732728e-07,-0.173116967082024,-0.984901249408722,-2.83848464732728e-07,-0.173116967082024,-0.984901249408722,0,-0.173117697238922,-0.984901070594788,1.34803778382986e-12,-0.173116818070412,-0.984901249408722,1.60177080488211e-07,-0.173117622733116,-0.984901189804077,0,-0.173118352890015,-0.984901010990143,-1.83600249670235e-07,-0.173117458820343,-0.984901189804077,-1.83600249670235e-07,-0.173117458820343,-0.984901189804077,0,-0.173118352890015,-0.984901010990143,0,-0.173117697238922,-0.984901070594788,-8.8056999913988e-08,-0.173117190599442,-0.984901189804077,1.60177080488211e-07,-0.173117622733116,-0.984901189804077,-4.34968370655042e-07,-0.173117280006409,-0.984901249408722,-4.34968370655042e-07,-0.173117280006409,-0.984901249408722,1.60177080488211e-07,-0.173117622733116,-0.984901189804077,-1.83600249670235e-07,-0.173117458820343,-0.984901189804077,-5.99280838287086e-07,-0.173116907477379,-0.984901309013367,2.36198829384193e-07,-0.173117026686668,-0.984901309013367,0,-0.17311692237854,-0.984901309013367,0,-0.17311692237854,-0.984901309013367,2.36198829384193e-07,-0.173117026686668,-0.984901309013367,6.51647951599443e-07,-0.173116862773895,-0.984901309013367,2.36198829384193e-07,-0.173117026686668,-0.984901309013367,-4.34968370655042e-07,-0.173117280006409,-0.984901249408722,6.51647951599443e-07,-0.173116862773895,-0.984901309013367,6.51647951599443e-07,-0.173116862773895,-0.984901309013367,-4.34968370655042e-07,-0.173117280006409,-0.984901249408722, +2.63034479530688e-07,-0.173117861151695,-0.984901070594788,7.47062813388766e-07,-0.173116639256477,-0.984901309013367,-8.8056999913988e-08,-0.173117190599442,-0.984901189804077,2.36198829384193e-07,-0.173117026686668,-0.984901309013367,2.36198829384193e-07,-0.173117026686668,-0.984901309013367,-8.8056999913988e-08,-0.173117190599442,-0.984901189804077,-4.34968370655042e-07,-0.173117280006409,-0.984901249408722,-7.50936010263104e-07,-0.173117727041245,-0.984901130199432,7.47062813388766e-07,-0.173116639256477,-0.984901309013367,-5.99280838287086e-07,-0.173116907477379,-0.984901309013367,-5.99280838287086e-07,-0.173116907477379,-0.984901309013367,7.47062813388766e-07,-0.173116639256477,-0.984901309013367,2.36198829384193e-07,-0.173117026686668,-0.984901309013367,6.58457554973679e-13,-0.173117205500603,-0.984901130199432,0,-0.173117592930794,-0.984901130199432,8.43674399675365e-07,-0.173117518424988,-0.984901130199432,8.43674399675365e-07,-0.173117518424988,-0.984901130199432,0,-0.173117592930794,-0.984901130199432,-8.93889122721703e-08,-0.17311717569828,-0.984901189804077,8.43674399675365e-07,-0.173117518424988,-0.984901130199432,-8.93889122721703e-08,-0.17311717569828,-0.984901189804077,-6.78369531215139e-07,-0.173117592930794,-0.984901189804077,-6.78369531215139e-07,-0.173117592930794,-0.984901189804077,-8.93889122721703e-08,-0.17311717569828,-0.984901189804077,5.59484725215498e-08,-0.17311680316925,-0.984901249408722,-8.93889122721703e-08,-0.17311717569828,-0.984901189804077,2.8384982897478e-07,-0.173116818070412,-0.984901249408722,5.59484725215498e-08,-0.17311680316925,-0.984901249408722,5.59484725215498e-08,-0.17311680316925,-0.984901249408722,2.8384982897478e-07,-0.173116818070412,-0.984901249408722,-2.63034110048466e-07,-0.173117563128471,-0.984901189804077,0,-0.173117592930794,-0.984901130199432,1.34803778382986e-12,-0.173116818070412,-0.984901249408722,-8.93889122721703e-08,-0.17311717569828,-0.984901189804077,-8.93889122721703e-08,-0.17311717569828,-0.984901189804077,1.34803778382986e-12,-0.173116818070412,-0.984901249408722, +2.8384982897478e-07,-0.173116818070412,-0.984901249408722,-6.78369531215139e-07,-0.173117592930794,-0.984901189804077,5.59484725215498e-08,-0.17311680316925,-0.984901249408722,-4.0282918689627e-07,-0.173117533326149,-0.984901130199432,-4.0282918689627e-07,-0.173117533326149,-0.984901130199432,5.59484725215498e-08,-0.17311680316925,-0.984901249408722,-4.87310160224297e-07,-0.173117101192474,-0.984901249408722,-4.0282918689627e-07,-0.173117533326149,-0.984901130199432,-4.87310160224297e-07,-0.173117101192474,-0.984901249408722,1.73907756106928e-06,-0.173117965459824,-0.984901070594788,1.73907756106928e-06,-0.173117965459824,-0.984901070594788,-4.87310160224297e-07,-0.173117101192474,-0.984901249408722,-1.75122806922445e-06,-0.17311729490757,-0.984901070594788,-4.87310160224297e-07,-0.173117101192474,-0.984901249408722,-6.51646814731066e-07,-0.173117026686668,-0.984901249408722,-1.75122806922445e-06,-0.17311729490757,-0.984901070594788,-1.75122806922445e-06,-0.17311729490757,-0.984901070594788,-6.51646814731066e-07,-0.173117026686668,-0.984901249408722,0,-0.173117652535439,-0.984901189804077,5.59484725215498e-08,-0.17311680316925,-0.984901249408722,-2.63034110048466e-07,-0.173117563128471,-0.984901189804077,-4.87310160224297e-07,-0.173117101192474,-0.984901249408722,-4.87310160224297e-07,-0.173117101192474,-0.984901249408722,-2.63034110048466e-07,-0.173117563128471,-0.984901189804077,-6.51646814731066e-07,-0.173117026686668,-0.984901249408722,-2.63034110048466e-07,-0.173117563128471,-0.984901189804077,4.34966750617605e-07,-0.173117443919182,-0.984901189804077,-6.51646814731066e-07,-0.173117026686668,-0.984901249408722,-6.51646814731066e-07,-0.173117026686668,-0.984901249408722,4.34966750617605e-07,-0.173117443919182,-0.984901189804077,-2.36192477132136e-07,-0.173116907477379,-0.984901249408722,-6.51646814731066e-07,-0.173117026686668,-0.984901249408722,-2.36192477132136e-07,-0.173116907477379,-0.984901249408722,0,-0.173117652535439,-0.984901189804077,0,-0.173117652535439,-0.984901189804077,-2.36192477132136e-07,-0.173116907477379,-0.984901249408722, +5.99281975155463e-07,-0.173116952180862,-0.984901249408722,-2.36192477132136e-07,-0.173116907477379,-0.984901249408722,-7.47055082683801e-07,-0.173116475343704,-0.984901368618011,5.99281975155463e-07,-0.173116952180862,-0.984901249408722,5.99281975155463e-07,-0.173116952180862,-0.984901249408722,-7.47055082683801e-07,-0.173116475343704,-0.984901368618011,7.50934532334213e-07,-0.173117488622665,-0.984901249408722,4.34966750617605e-07,-0.173117443919182,-0.984901189804077,8.80593020724518e-08,-0.17311704158783,-0.984901189804077,-2.36192477132136e-07,-0.173116907477379,-0.984901249408722,-2.36192477132136e-07,-0.173116907477379,-0.984901249408722,8.80593020724518e-08,-0.17311704158783,-0.984901189804077,-7.47055082683801e-07,-0.173116475343704,-0.984901368618011,1.34803778382986e-12,-0.173116818070412,-0.984901249408722,0,-0.173117697238922,-0.984901070594788,2.8384982897478e-07,-0.173116818070412,-0.984901249408722,2.8384982897478e-07,-0.173116818070412,-0.984901249408722,0,-0.173117697238922,-0.984901070594788,1.83600135983397e-07,-0.173117533326149,-0.984901249408722,2.8384982897478e-07,-0.173116818070412,-0.984901249408722,1.83600135983397e-07,-0.173117533326149,-0.984901249408722,-2.63034110048466e-07,-0.173117563128471,-0.984901189804077,-2.63034110048466e-07,-0.173117563128471,-0.984901189804077,1.83600135983397e-07,-0.173117533326149,-0.984901249408722,4.34966750617605e-07,-0.173117443919182,-0.984901189804077,1.83600135983397e-07,-0.173117533326149,-0.984901249408722,-1.60177464181288e-07,-0.1731176674366,-0.984901130199432,4.34966750617605e-07,-0.173117443919182,-0.984901189804077,4.34966750617605e-07,-0.173117443919182,-0.984901189804077,-1.60177464181288e-07,-0.1731176674366,-0.984901130199432,8.80593020724518e-08,-0.17311704158783,-0.984901189804077,0,-0.173117697238922,-0.984901070594788,0,-0.173118352890015,-0.984901010990143,1.83600135983397e-07,-0.173117533326149,-0.984901249408722,1.83600135983397e-07,-0.173117533326149,-0.984901249408722,0,-0.173118352890015,-0.984901010990143,-1.60177464181288e-07,-0.1731176674366,-0.984901130199432, +-6.96246786446864e-07,-0.173118397593498,-0.984901010990143,1.37103143060813e-06,-0.173117011785507,-0.984901309013367,-7.50936010263104e-07,-0.173117727041245,-0.984901130199432,-7.50936010263104e-07,-0.173117727041245,-0.984901130199432,1.37103143060813e-06,-0.173117011785507,-0.984901309013367,7.47062813388766e-07,-0.173116639256477,-0.984901309013367,1.37103143060813e-06,-0.173117011785507,-0.984901309013367,-8.46426701173186e-07,-0.173116371035576,-0.984901428222656,7.47062813388766e-07,-0.173116639256477,-0.984901309013367,7.47062813388766e-07,-0.173116639256477,-0.984901309013367,-8.46426701173186e-07,-0.173116371035576,-0.984901428222656,-8.8056999913988e-08,-0.173117190599442,-0.984901189804077,1.37103143060813e-06,-0.173117011785507,-0.984901309013367,5.93229799505934e-07,-0.173117160797119,-0.984901249408722,-8.46426701173186e-07,-0.173116371035576,-0.984901428222656,-8.46426701173186e-07,-0.173116371035576,-0.984901428222656,5.93229799505934e-07,-0.173117160797119,-0.984901249408722,-7.79401943873381e-07,-0.173117235302925,-0.984901189804077,-6.96246786446864e-07,-0.173118397593498,-0.984901010990143,1.80931067461643e-06,-0.173116713762283,-0.984901368618011,1.37103143060813e-06,-0.173117011785507,-0.984901309013367,1.37103143060813e-06,-0.173117011785507,-0.984901309013367,1.80931067461643e-06,-0.173116713762283,-0.984901368618011,5.93229799505934e-07,-0.173117160797119,-0.984901249408722,-8.46426701173186e-07,-0.173116371035576,-0.984901428222656,-9.07264961824694e-07,-0.173117011785507,-0.984901249408722,-8.8056999913988e-08,-0.173117190599442,-0.984901189804077,-8.8056999913988e-08,-0.173117190599442,-0.984901189804077,-9.07264961824694e-07,-0.173117011785507,-0.984901249408722,1.60177080488211e-07,-0.173117622733116,-0.984901189804077,-9.07264961824694e-07,-0.173117011785507,-0.984901249408722,-7.07139831716483e-14,-0.17311717569828,-0.984901189804077,1.60177080488211e-07,-0.173117622733116,-0.984901189804077,1.60177080488211e-07,-0.173117622733116,-0.984901189804077,-7.07139831716483e-14,-0.17311717569828,-0.984901189804077, +0,-0.173118352890015,-0.984901010990143,-9.07264961824694e-07,-0.173117011785507,-0.984901249408722,-5.58820090645895e-07,-0.173116579651833,-0.984901368618011,-7.07139831716483e-14,-0.17311717569828,-0.984901189804077,-7.07139831716483e-14,-0.17311717569828,-0.984901189804077,-5.58820090645895e-07,-0.173116579651833,-0.984901368618011,-1.94537569104918e-13,-0.173116430640221,-0.984901309013367,-8.46426701173186e-07,-0.173116371035576,-0.984901428222656,-7.79401943873381e-07,-0.173117235302925,-0.984901189804077,-9.07264961824694e-07,-0.173117011785507,-0.984901249408722,-9.07264961824694e-07,-0.173117011785507,-0.984901249408722,-7.79401943873381e-07,-0.173117235302925,-0.984901189804077,-5.58820090645895e-07,-0.173116579651833,-0.984901368618011,-7.79401943873381e-07,-0.173117235302925,-0.984901189804077,-1.37029871893901e-07,-0.173117250204086,-0.984901130199432,-5.58820090645895e-07,-0.173116579651833,-0.984901368618011,-5.58820090645895e-07,-0.173116579651833,-0.984901368618011,-1.37029871893901e-07,-0.173117250204086,-0.984901130199432,-4.22512840714262e-07,-0.173117101192474,-0.984901249408722,-5.58820090645895e-07,-0.173116579651833,-0.984901368618011,-4.22512840714262e-07,-0.173117101192474,-0.984901249408722,-1.94537569104918e-13,-0.173116430640221,-0.984901309013367,-1.94537569104918e-13,-0.173116430640221,-0.984901309013367,-4.22512840714262e-07,-0.173117101192474,-0.984901249408722,3.04591286004116e-13,-0.173118114471436,-0.984901010990143,-4.22512840714262e-07,-0.173117101192474,-0.984901249408722,3.92511338986878e-07,-0.173117116093636,-0.984901189804077,3.04591286004116e-13,-0.173118114471436,-0.984901010990143,3.04591286004116e-13,-0.173118114471436,-0.984901010990143,3.92511338986878e-07,-0.173117116093636,-0.984901189804077,0,-0.173117890954018,-0.984901130199432,-1.37029871893901e-07,-0.173117250204086,-0.984901130199432,-9.78987827693345e-07,-0.173117339611053,-0.984901130199432,-4.22512840714262e-07,-0.173117101192474,-0.984901249408722,-4.22512840714262e-07,-0.173117101192474,-0.984901249408722, +-9.78987827693345e-07,-0.173117339611053,-0.984901130199432,3.92511338986878e-07,-0.173117116093636,-0.984901189804077,1.80931067461643e-06,-0.173116713762283,-0.984901368618011,1.44840373650368e-06,-0.173117369413376,-0.984901189804077,5.93229799505934e-07,-0.173117160797119,-0.984901249408722,5.93229799505934e-07,-0.173117160797119,-0.984901249408722,1.44840373650368e-06,-0.173117369413376,-0.984901189804077,2.91386612616407e-07,-0.173117443919182,-0.984901130199432,5.93229799505934e-07,-0.173117160797119,-0.984901249408722,2.91386612616407e-07,-0.173117443919182,-0.984901130199432,-7.79401943873381e-07,-0.173117235302925,-0.984901189804077,-7.79401943873381e-07,-0.173117235302925,-0.984901189804077,2.91386612616407e-07,-0.173117443919182,-0.984901130199432,-1.37029871893901e-07,-0.173117250204086,-0.984901130199432,2.91386612616407e-07,-0.173117443919182,-0.984901130199432,-9.17578461212543e-07,-0.173117369413376,-0.984901249408722,-1.37029871893901e-07,-0.173117250204086,-0.984901130199432,-1.37029871893901e-07,-0.173117250204086,-0.984901130199432,-9.17578461212543e-07,-0.173117369413376,-0.984901249408722,-9.78987827693345e-07,-0.173117339611053,-0.984901130199432,1.44840373650368e-06,-0.173117369413376,-0.984901189804077,5.29338819887926e-07,-0.173117697238922,-0.984901130199432,2.91386612616407e-07,-0.173117443919182,-0.984901130199432,2.91386612616407e-07,-0.173117443919182,-0.984901130199432,5.29338819887926e-07,-0.173117697238922,-0.984901130199432,-9.17578461212543e-07,-0.173117369413376,-0.984901249408722,0,-0.173118352890015,-0.984901010990143,-7.07139831716483e-14,-0.17311717569828,-0.984901189804077,-1.60177464181288e-07,-0.1731176674366,-0.984901130199432,-1.60177464181288e-07,-0.1731176674366,-0.984901130199432,-7.07139831716483e-14,-0.17311717569828,-0.984901189804077,9.07264052329992e-07,-0.173116788268089,-0.984901309013367,-1.60177464181288e-07,-0.1731176674366,-0.984901130199432,9.07264052329992e-07,-0.173116788268089,-0.984901309013367,8.80593020724518e-08,-0.17311704158783,-0.984901189804077, +8.80593020724518e-08,-0.17311704158783,-0.984901189804077,9.07264052329992e-07,-0.173116788268089,-0.984901309013367,8.46425905365322e-07,-0.173116058111191,-0.984901487827301,5.58823160190514e-07,-0.173116862773895,-0.984901249408722,7.79403080741758e-07,-0.173117116093636,-0.984901189804077,9.07264052329992e-07,-0.173116788268089,-0.984901309013367,9.07264052329992e-07,-0.173116788268089,-0.984901309013367,7.79403080741758e-07,-0.173117116093636,-0.984901189804077,8.46425905365322e-07,-0.173116058111191,-0.984901487827301,-1.94537569104918e-13,-0.173116430640221,-0.984901309013367,5.58823160190514e-07,-0.173116862773895,-0.984901249408722,-7.07139831716483e-14,-0.17311717569828,-0.984901189804077,-7.07139831716483e-14,-0.17311717569828,-0.984901189804077,5.58823160190514e-07,-0.173116862773895,-0.984901249408722,9.07264052329992e-07,-0.173116788268089,-0.984901309013367,8.80593020724518e-08,-0.17311704158783,-0.984901189804077,8.46425905365322e-07,-0.173116058111191,-0.984901487827301,-7.47055082683801e-07,-0.173116475343704,-0.984901368618011,-7.47055082683801e-07,-0.173116475343704,-0.984901368618011,8.46425905365322e-07,-0.173116058111191,-0.984901487827301,-1.37102870212402e-06,-0.173116952180862,-0.984901130199432,-7.47055082683801e-07,-0.173116475343704,-0.984901368618011,-1.37102870212402e-06,-0.173116952180862,-0.984901130199432,7.50934532334213e-07,-0.173117488622665,-0.984901249408722,7.50934532334213e-07,-0.173117488622665,-0.984901249408722,-1.37102870212402e-06,-0.173116952180862,-0.984901130199432,6.96249230713875e-07,-0.173118233680725,-0.984901010990143,-5.93229060541489e-07,-0.173117011785507,-0.984901249408722,-1.80931613158464e-06,-0.173117130994797,-0.984901130199432,-1.37102870212402e-06,-0.173116952180862,-0.984901130199432,-1.37102870212402e-06,-0.173116952180862,-0.984901130199432,-1.80931613158464e-06,-0.173117130994797,-0.984901130199432,6.96249230713875e-07,-0.173118233680725,-0.984901010990143,7.79403080741758e-07,-0.173117116093636,-0.984901189804077,-5.93229060541489e-07,-0.173117011785507,-0.984901249408722, +8.46425905365322e-07,-0.173116058111191,-0.984901487827301,8.46425905365322e-07,-0.173116058111191,-0.984901487827301,-5.93229060541489e-07,-0.173117011785507,-0.984901249408722,-1.37102870212402e-06,-0.173116952180862,-0.984901130199432,1.37028436597575e-07,-0.17311792075634,-0.984901130199432,-2.91385703121705e-07,-0.173117205500603,-0.984901189804077,7.79403080741758e-07,-0.173117116093636,-0.984901189804077,7.79403080741758e-07,-0.173117116093636,-0.984901189804077,-2.91385703121705e-07,-0.173117205500603,-0.984901189804077,-5.93229060541489e-07,-0.173117011785507,-0.984901249408722,-2.91385703121705e-07,-0.173117205500603,-0.984901189804077,-1.44840362281684e-06,-0.173117384314537,-0.984901189804077,-5.93229060541489e-07,-0.173117011785507,-0.984901249408722,-5.93229060541489e-07,-0.173117011785507,-0.984901249408722,-1.44840362281684e-06,-0.173117384314537,-0.984901189804077,-1.80931613158464e-06,-0.173117130994797,-0.984901130199432,9.17573061087751e-07,-0.173117741942406,-0.984901130199432,-5.29336887211684e-07,-0.173117682337761,-0.984901130199432,-2.91385703121705e-07,-0.173117205500603,-0.984901189804077,-2.91385703121705e-07,-0.173117205500603,-0.984901189804077,-5.29336887211684e-07,-0.173117682337761,-0.984901130199432,-1.44840362281684e-06,-0.173117384314537,-0.984901189804077,9.78983734967187e-07,-0.173117995262146,-0.984900951385498,9.17573061087751e-07,-0.173117741942406,-0.984901130199432,1.37028436597575e-07,-0.17311792075634,-0.984901130199432,1.37028436597575e-07,-0.17311792075634,-0.984901130199432,9.17573061087751e-07,-0.173117741942406,-0.984901130199432,-2.91385703121705e-07,-0.173117205500603,-0.984901189804077,3.04591286004116e-13,-0.173118114471436,-0.984901010990143,4.22513608100417e-07,-0.173117235302925,-0.984901249408722,-1.94537569104918e-13,-0.173116430640221,-0.984901309013367,-1.94537569104918e-13,-0.173116430640221,-0.984901309013367,4.22513608100417e-07,-0.173117235302925,-0.984901249408722,5.58823160190514e-07,-0.173116862773895,-0.984901249408722,4.22513608100417e-07,-0.173117235302925,-0.984901249408722, +1.37028436597575e-07,-0.17311792075634,-0.984901130199432,5.58823160190514e-07,-0.173116862773895,-0.984901249408722,5.58823160190514e-07,-0.173116862773895,-0.984901249408722,1.37028436597575e-07,-0.17311792075634,-0.984901130199432,7.79403080741758e-07,-0.173117116093636,-0.984901189804077,-3.9250974737115e-07,-0.173116132616997,-0.984901428222656,9.78983734967187e-07,-0.173117995262146,-0.984900951385498,4.22513608100417e-07,-0.173117235302925,-0.984901249408722,4.22513608100417e-07,-0.173117235302925,-0.984901249408722,9.78983734967187e-07,-0.173117995262146,-0.984900951385498,1.37028436597575e-07,-0.17311792075634,-0.984901130199432,0,-0.173117890954018,-0.984901130199432,-3.9250974737115e-07,-0.173116132616997,-0.984901428222656,3.04591286004116e-13,-0.173118114471436,-0.984901010990143,3.04591286004116e-13,-0.173118114471436,-0.984901010990143,-3.9250974737115e-07,-0.173116132616997,-0.984901428222656,4.22513608100417e-07,-0.173117235302925,-0.984901249408722,-2.73503415011353e-13,-0.173117160797119,-0.984901130199432,1.14322153876856e-06,-0.173117160797119,-0.984901189804077,6.58457554973679e-13,-0.173117205500603,-0.984901130199432,6.58457554973679e-13,-0.173117205500603,-0.984901130199432,1.14322153876856e-06,-0.173117160797119,-0.984901189804077,-6.63254581922956e-07,-0.173117086291313,-0.984901189804077,1.14322153876856e-06,-0.173117160797119,-0.984901189804077,-5.30481569782637e-09,-0.173117011785507,-0.984901368618011,-6.63254581922956e-07,-0.173117086291313,-0.984901189804077,-6.63254581922956e-07,-0.173117086291313,-0.984901189804077,-5.30481569782637e-09,-0.173117011785507,-0.984901368618011,4.84624422369961e-07,-0.173117458820343,-0.984901249408722,-1.03920228866627e-06,-0.173117026686668,-0.984901309013367,2.12082483130871e-07,-0.173117190599442,-0.984901309013367,1.14322153876856e-06,-0.173117160797119,-0.984901189804077,1.14322153876856e-06,-0.173117160797119,-0.984901189804077,2.12082483130871e-07,-0.173117190599442,-0.984901309013367,-5.30481569782637e-09,-0.173117011785507,-0.984901368618011, +-5.4436476485363e-14,-0.173116952180862,-0.984901130199432,-1.03920228866627e-06,-0.173117026686668,-0.984901309013367,-2.73503415011353e-13,-0.173117160797119,-0.984901130199432,-2.73503415011353e-13,-0.173117160797119,-0.984901130199432,-1.03920228866627e-06,-0.173117026686668,-0.984901309013367,1.14322153876856e-06,-0.173117160797119,-0.984901189804077,-5.30481569782637e-09,-0.173117011785507,-0.984901368618011,-3.67364293651917e-07,-0.173116877675056,-0.984901189804077,4.84624422369961e-07,-0.173117458820343,-0.984901249408722,4.84624422369961e-07,-0.173117458820343,-0.984901249408722,-3.67364293651917e-07,-0.173116877675056,-0.984901189804077,4.02835098611831e-07,-0.173117160797119,-0.984901309013367,-3.67364293651917e-07,-0.173116877675056,-0.984901189804077,1.46001326584155e-07,-0.173116892576218,-0.984901309013367,4.02835098611831e-07,-0.173117160797119,-0.984901309013367,4.02835098611831e-07,-0.173117160797119,-0.984901309013367,1.46001326584155e-07,-0.173116892576218,-0.984901309013367,-1.73907426415099e-06,-0.173117503523827,-0.984901130199432,1.16315845843928e-07,-0.173117071390152,-0.984901249408722,5.22413699854951e-07,-0.173117205500603,-0.984901130199432,-3.67364293651917e-07,-0.173116877675056,-0.984901189804077,-3.67364293651917e-07,-0.173116877675056,-0.984901189804077,5.22413699854951e-07,-0.173117205500603,-0.984901130199432,1.46001326584155e-07,-0.173116892576218,-0.984901309013367,2.12082483130871e-07,-0.173117190599442,-0.984901309013367,1.16315845843928e-07,-0.173117071390152,-0.984901249408722,-5.30481569782637e-09,-0.173117011785507,-0.984901368618011,-5.30481569782637e-09,-0.173117011785507,-0.984901368618011,1.16315845843928e-07,-0.173117071390152,-0.984901249408722,-3.67364293651917e-07,-0.173116877675056,-0.984901189804077,-5.91464527133212e-07,-0.173117220401764,-0.984901189804077,-1.15072353423784e-07,-0.173117622733116,-0.984901130199432,2.12082483130871e-07,-0.173117190599442,-0.984901309013367,2.12082483130871e-07,-0.173117190599442,-0.984901309013367,-1.15072353423784e-07,-0.173117622733116,-0.984901130199432, +1.16315845843928e-07,-0.173117071390152,-0.984901249408722,-1.15072353423784e-07,-0.173117622733116,-0.984901130199432,7.36970946491056e-07,-0.173117592930794,-0.984901070594788,1.16315845843928e-07,-0.173117071390152,-0.984901249408722,1.16315845843928e-07,-0.173117071390152,-0.984901249408722,7.36970946491056e-07,-0.173117592930794,-0.984901070594788,5.22413699854951e-07,-0.173117205500603,-0.984901130199432,-1.182732489724e-06,-0.173117369413376,-0.984901130199432,-6.55395695048355e-07,-0.173117443919182,-0.984901130199432,-1.15072353423784e-07,-0.173117622733116,-0.984901130199432,-1.15072353423784e-07,-0.173117622733116,-0.984901130199432,-6.55395695048355e-07,-0.173117443919182,-0.984901130199432,7.36970946491056e-07,-0.173117592930794,-0.984901070594788,-6.38119558971084e-07,-0.173117265105247,-0.984901189804077,-1.182732489724e-06,-0.173117369413376,-0.984901130199432,-5.91464527133212e-07,-0.173117220401764,-0.984901189804077,-5.91464527133212e-07,-0.173117220401764,-0.984901189804077,-1.182732489724e-06,-0.173117369413376,-0.984901130199432,-1.15072353423784e-07,-0.173117622733116,-0.984901130199432,-3.6738919063006e-14,-0.173117488622665,-0.984901189804077,-3.80921854059579e-08,-0.173117235302925,-0.984901249408722,-5.4436476485363e-14,-0.173116952180862,-0.984901130199432,-5.4436476485363e-14,-0.173116952180862,-0.984901130199432,-3.80921854059579e-08,-0.173117235302925,-0.984901249408722,-1.03920228866627e-06,-0.173117026686668,-0.984901309013367,-3.80921854059579e-08,-0.173117235302925,-0.984901249408722,-5.91464527133212e-07,-0.173117220401764,-0.984901189804077,-1.03920228866627e-06,-0.173117026686668,-0.984901309013367,-1.03920228866627e-06,-0.173117026686668,-0.984901309013367,-5.91464527133212e-07,-0.173117220401764,-0.984901189804077,2.12082483130871e-07,-0.173117190599442,-0.984901309013367,-6.883221992382e-09,-0.173117220401764,-0.984901309013367,-6.38119558971084e-07,-0.173117265105247,-0.984901189804077,-3.80921854059579e-08,-0.173117235302925,-0.984901249408722,-3.80921854059579e-08,-0.173117235302925,-0.984901249408722, +-6.38119558971084e-07,-0.173117265105247,-0.984901189804077,-5.91464527133212e-07,-0.173117220401764,-0.984901189804077,-3.74499791178096e-07,-0.17311729490757,-0.984901189804077,-6.883221992382e-09,-0.173117220401764,-0.984901309013367,-3.6738919063006e-14,-0.173117488622665,-0.984901189804077,-3.6738919063006e-14,-0.173117488622665,-0.984901189804077,-6.883221992382e-09,-0.173117220401764,-0.984901309013367,-3.80921854059579e-08,-0.173117235302925,-0.984901249408722,1.73907756106928e-06,-0.173117965459824,-0.984901070594788,-1.46001440270993e-07,-0.173116847872734,-0.984901189804077,-4.0282918689627e-07,-0.173117533326149,-0.984901130199432,-4.0282918689627e-07,-0.173117533326149,-0.984901130199432,-1.46001440270993e-07,-0.173116847872734,-0.984901189804077,-8.94121797045955e-07,-0.17311729490757,-0.984901130199432,-4.0282918689627e-07,-0.173117533326149,-0.984901130199432,-8.94121797045955e-07,-0.17311729490757,-0.984901130199432,-6.78369531215139e-07,-0.173117592930794,-0.984901189804077,-6.78369531215139e-07,-0.173117592930794,-0.984901189804077,-8.94121797045955e-07,-0.17311729490757,-0.984901130199432,7.10299786987889e-07,-0.173117205500603,-0.984901189804077,-8.94121797045955e-07,-0.17311729490757,-0.984901130199432,-1.03010518159863e-06,-0.173117130994797,-0.984901189804077,7.10299786987889e-07,-0.173117205500603,-0.984901189804077,7.10299786987889e-07,-0.173117205500603,-0.984901189804077,-1.03010518159863e-06,-0.173117130994797,-0.984901189804077,-1.30370636952648e-07,-0.173117190599442,-0.984901189804077,-1.46001440270993e-07,-0.173116847872734,-0.984901189804077,-5.22410687153751e-07,-0.173117280006409,-0.984901189804077,-8.94121797045955e-07,-0.17311729490757,-0.984901130199432,-8.94121797045955e-07,-0.17311729490757,-0.984901130199432,-5.22410687153751e-07,-0.173117280006409,-0.984901189804077,-1.03010518159863e-06,-0.173117130994797,-0.984901189804077,-6.78369531215139e-07,-0.173117592930794,-0.984901189804077,7.10299786987889e-07,-0.173117205500603,-0.984901189804077,8.43674399675365e-07,-0.173117518424988,-0.984901130199432, +8.43674399675365e-07,-0.173117518424988,-0.984901130199432,7.10299786987889e-07,-0.173117205500603,-0.984901189804077,1.29172588003712e-06,-0.173117026686668,-0.984901189804077,8.43674399675365e-07,-0.173117518424988,-0.984901130199432,1.29172588003712e-06,-0.173117026686668,-0.984901189804077,6.58457554973679e-13,-0.173117205500603,-0.984901130199432,6.58457554973679e-13,-0.173117205500603,-0.984901130199432,1.29172588003712e-06,-0.173117026686668,-0.984901189804077,-2.73503415011353e-13,-0.173117160797119,-0.984901130199432,1.29172588003712e-06,-0.173117026686668,-0.984901189804077,1.65152312092687e-06,-0.173117145895958,-0.984901309013367,-2.73503415011353e-13,-0.173117160797119,-0.984901130199432,-2.73503415011353e-13,-0.173117160797119,-0.984901130199432,1.65152312092687e-06,-0.173117145895958,-0.984901309013367,-5.4436476485363e-14,-0.173116952180862,-0.984901130199432,7.10299786987889e-07,-0.173117205500603,-0.984901189804077,-1.30370636952648e-07,-0.173117190599442,-0.984901189804077,1.29172588003712e-06,-0.173117026686668,-0.984901189804077,1.29172588003712e-06,-0.173117026686668,-0.984901189804077,-1.30370636952648e-07,-0.173117190599442,-0.984901189804077,1.65152312092687e-06,-0.173117145895958,-0.984901309013367,-1.30370636952648e-07,-0.173117190599442,-0.984901189804077,-4.62160244296683e-07,-0.173117235302925,-0.984901130199432,1.65152312092687e-06,-0.173117145895958,-0.984901309013367,1.65152312092687e-06,-0.173117145895958,-0.984901309013367,-4.62160244296683e-07,-0.173117235302925,-0.984901130199432,-7.00639930073521e-07,-0.173117265105247,-0.984901189804077,1.65152312092687e-06,-0.173117145895958,-0.984901309013367,-7.00639930073521e-07,-0.173117265105247,-0.984901189804077,-5.4436476485363e-14,-0.173116952180862,-0.984901130199432,-5.4436476485363e-14,-0.173116952180862,-0.984901130199432,-7.00639930073521e-07,-0.173117265105247,-0.984901189804077,-3.6738919063006e-14,-0.173117488622665,-0.984901189804077,-7.00639930073521e-07,-0.173117265105247,-0.984901189804077,-1.23531935969368e-06,-0.17311729490757,-0.984901189804077, +-3.6738919063006e-14,-0.173117488622665,-0.984901189804077,-3.6738919063006e-14,-0.173117488622665,-0.984901189804077,-1.23531935969368e-06,-0.17311729490757,-0.984901189804077,-3.74499791178096e-07,-0.17311729490757,-0.984901189804077,-4.62160244296683e-07,-0.173117235302925,-0.984901130199432,-1.40591069452967e-07,-0.173117190599442,-0.984901130199432,-7.00639930073521e-07,-0.173117265105247,-0.984901189804077,-7.00639930073521e-07,-0.173117265105247,-0.984901189804077,-1.40591069452967e-07,-0.173117190599442,-0.984901130199432,-1.23531935969368e-06,-0.17311729490757,-0.984901189804077,-5.22410687153751e-07,-0.173117280006409,-0.984901189804077,-7.36972140202852e-07,-0.173117652535439,-0.984901010990143,-1.03010518159863e-06,-0.173117130994797,-0.984901189804077,-1.03010518159863e-06,-0.173117130994797,-0.984901189804077,-7.36972140202852e-07,-0.173117652535439,-0.984901010990143,-6.2499657360604e-07,-0.173117503523827,-0.984901130199432,-1.03010518159863e-06,-0.173117130994797,-0.984901189804077,-6.2499657360604e-07,-0.173117503523827,-0.984901130199432,-1.30370636952648e-07,-0.173117190599442,-0.984901189804077,-1.30370636952648e-07,-0.173117190599442,-0.984901189804077,-6.2499657360604e-07,-0.173117503523827,-0.984901130199432,-4.62160244296683e-07,-0.173117235302925,-0.984901130199432,-6.2499657360604e-07,-0.173117503523827,-0.984901130199432,8.8398775233145e-07,-0.173117339611053,-0.984901189804077,-4.62160244296683e-07,-0.173117235302925,-0.984901130199432,-4.62160244296683e-07,-0.173117235302925,-0.984901130199432,8.8398775233145e-07,-0.173117339611053,-0.984901189804077,-1.40591069452967e-07,-0.173117190599442,-0.984901130199432,-7.36972140202852e-07,-0.173117652535439,-0.984901010990143,6.55394501336559e-07,-0.173117354512215,-0.984901189804077,-6.2499657360604e-07,-0.173117503523827,-0.984901130199432,-6.2499657360604e-07,-0.173117503523827,-0.984901130199432,6.55394501336559e-07,-0.173117354512215,-0.984901189804077,8.8398775233145e-07,-0.173117339611053,-0.984901189804077,7.52433777506667e-07,-0.173117086291313,-0.984901309013367, +6.46603552922898e-08,-0.173117160797119,-0.984901249408722,-3.74499791178096e-07,-0.17311729490757,-0.984901189804077,-3.74499791178096e-07,-0.17311729490757,-0.984901189804077,6.46603552922898e-08,-0.173117160797119,-0.984901249408722,-6.883221992382e-09,-0.173117220401764,-0.984901309013367,6.46603552922898e-08,-0.173117160797119,-0.984901249408722,6.1774341020282e-07,-0.173117130994797,-0.984901249408722,-6.883221992382e-09,-0.173117220401764,-0.984901309013367,-6.883221992382e-09,-0.173117220401764,-0.984901309013367,6.1774341020282e-07,-0.173117130994797,-0.984901249408722,-6.38119558971084e-07,-0.173117265105247,-0.984901189804077,7.09633738438242e-08,-0.173117250204086,-0.984901189804077,-3.37895954771739e-07,-0.173117220401764,-0.984901010990143,6.46603552922898e-08,-0.173117160797119,-0.984901249408722,6.46603552922898e-08,-0.173117160797119,-0.984901249408722,-3.37895954771739e-07,-0.173117220401764,-0.984901010990143,6.1774341020282e-07,-0.173117130994797,-0.984901249408722,2.12534796619618e-13,-0.173117324709892,-0.984901249408722,7.09633738438242e-08,-0.173117250204086,-0.984901189804077,7.52433777506667e-07,-0.173117086291313,-0.984901309013367,7.52433777506667e-07,-0.173117086291313,-0.984901309013367,7.09633738438242e-08,-0.173117250204086,-0.984901189804077,6.46603552922898e-08,-0.173117160797119,-0.984901249408722,6.1774341020282e-07,-0.173117130994797,-0.984901249408722,3.22292123655643e-07,-0.173117056488991,-0.984901189804077,-6.38119558971084e-07,-0.173117265105247,-0.984901189804077,-6.38119558971084e-07,-0.173117265105247,-0.984901189804077,3.22292123655643e-07,-0.173117056488991,-0.984901189804077,-1.182732489724e-06,-0.173117369413376,-0.984901130199432,3.22292123655643e-07,-0.173117056488991,-0.984901189804077,2.01058199422732e-07,-0.173116937279701,-0.984901070594788,-1.182732489724e-06,-0.173117369413376,-0.984901130199432,-1.182732489724e-06,-0.173117369413376,-0.984901130199432,2.01058199422732e-07,-0.173116937279701,-0.984901070594788,-6.55395695048355e-07,-0.173117443919182,-0.984901130199432, +-4.95571832459518e-08,-0.173117190599442,-0.984901249408722,-2.20993982225082e-07,-0.173117190599442,-0.984901249408722,3.22292123655643e-07,-0.173117056488991,-0.984901189804077,3.22292123655643e-07,-0.173117056488991,-0.984901189804077,-2.20993982225082e-07,-0.173117190599442,-0.984901249408722,2.01058199422732e-07,-0.173116937279701,-0.984901070594788,-3.37895954771739e-07,-0.173117220401764,-0.984901010990143,-4.95571832459518e-08,-0.173117190599442,-0.984901249408722,6.1774341020282e-07,-0.173117130994797,-0.984901249408722,6.1774341020282e-07,-0.173117130994797,-0.984901249408722,-4.95571832459518e-08,-0.173117190599442,-0.984901249408722,3.22292123655643e-07,-0.173117056488991,-0.984901189804077,-3.98832867176679e-07,-0.173117250204086,-0.984901189804077,4.34820094596944e-07,-0.173117160797119,-0.984901130199432,-3.37895954771739e-07,-0.173117220401764,-0.984901010990143,-3.37895954771739e-07,-0.173117220401764,-0.984901010990143,4.34820094596944e-07,-0.173117160797119,-0.984901130199432,-4.95571832459518e-08,-0.173117190599442,-0.984901249408722,4.34820094596944e-07,-0.173117160797119,-0.984901130199432,-2.60351202996389e-06,-0.173116981983185,-0.984901249408722,-4.95571832459518e-08,-0.173117190599442,-0.984901249408722,-4.95571832459518e-08,-0.173117190599442,-0.984901249408722,-2.60351202996389e-06,-0.173116981983185,-0.984901249408722,-2.20993982225082e-07,-0.173117190599442,-0.984901249408722,-6.23904909957673e-08,-0.173117235302925,-0.984901189804077,-8.7598884590534e-08,-0.17311729490757,-0.984901189804077,4.34820094596944e-07,-0.173117160797119,-0.984901130199432,4.34820094596944e-07,-0.173117160797119,-0.984901130199432,-8.7598884590534e-08,-0.17311729490757,-0.984901189804077,-2.60351202996389e-06,-0.173116981983185,-0.984901249408722,2.02118940251239e-06,-0.173117339611053,-0.984901189804077,-6.23904909957673e-08,-0.173117235302925,-0.984901189804077,-3.98832867176679e-07,-0.173117250204086,-0.984901189804077,-3.98832867176679e-07,-0.173117250204086,-0.984901189804077,-6.23904909957673e-08,-0.173117235302925,-0.984901189804077, +4.34820094596944e-07,-0.173117160797119,-0.984901130199432,2.87572361214704e-14,-0.17311729490757,-0.984901189804077,-1.85892213266925e-06,-0.173117280006409,-0.984901189804077,2.12534796619618e-13,-0.173117324709892,-0.984901249408722,2.12534796619618e-13,-0.173117324709892,-0.984901249408722,-1.85892213266925e-06,-0.173117280006409,-0.984901189804077,7.09633738438242e-08,-0.173117250204086,-0.984901189804077,-1.85892213266925e-06,-0.173117280006409,-0.984901189804077,-3.98832867176679e-07,-0.173117250204086,-0.984901189804077,7.09633738438242e-08,-0.173117250204086,-0.984901189804077,7.09633738438242e-08,-0.173117250204086,-0.984901189804077,-3.98832867176679e-07,-0.173117250204086,-0.984901189804077,-3.37895954771739e-07,-0.173117220401764,-0.984901010990143,2.69509246209054e-06,-0.173117324709892,-0.984901189804077,2.02118940251239e-06,-0.173117339611053,-0.984901189804077,-1.85892213266925e-06,-0.173117280006409,-0.984901189804077,-1.85892213266925e-06,-0.173117280006409,-0.984901189804077,2.02118940251239e-06,-0.173117339611053,-0.984901189804077,-3.98832867176679e-07,-0.173117250204086,-0.984901189804077,0,-0.173117220401764,-0.984901249408722,2.69509246209054e-06,-0.173117324709892,-0.984901189804077,2.87572361214704e-14,-0.17311729490757,-0.984901189804077,2.87572361214704e-14,-0.17311729490757,-0.984901189804077,2.69509246209054e-06,-0.173117324709892,-0.984901189804077,-1.85892213266925e-06,-0.173117280006409,-0.984901189804077,6.55394501336559e-07,-0.173117354512215,-0.984901189804077,-2.01058782067776e-07,-0.173116892576218,-0.984901249408722,8.8398775233145e-07,-0.173117339611053,-0.984901189804077,8.8398775233145e-07,-0.173117339611053,-0.984901189804077,-2.01058782067776e-07,-0.173116892576218,-0.984901249408722,1.38351845180296e-06,-0.17311717569828,-0.984901249408722,8.8398775233145e-07,-0.173117339611053,-0.984901189804077,1.38351845180296e-06,-0.17311717569828,-0.984901249408722,-1.40591069452967e-07,-0.173117190599442,-0.984901130199432,-1.40591069452967e-07,-0.173117190599442,-0.984901130199432, +1.38351845180296e-06,-0.17311717569828,-0.984901249408722,-3.93006644117122e-07,-0.173117324709892,-0.984901189804077,1.38351845180296e-06,-0.17311717569828,-0.984901249408722,1.34842025545368e-07,-0.173117205500603,-0.984901130199432,-3.93006644117122e-07,-0.173117324709892,-0.984901189804077,-3.93006644117122e-07,-0.173117324709892,-0.984901189804077,1.34842025545368e-07,-0.173117205500603,-0.984901130199432,8.84273049450712e-07,-0.173117160797119,-0.984901130199432,-2.01058782067776e-07,-0.173116892576218,-0.984901249408722,2.20993911170808e-07,-0.173117354512215,-0.984901189804077,1.38351845180296e-06,-0.17311717569828,-0.984901249408722,1.38351845180296e-06,-0.17311717569828,-0.984901249408722,2.20993911170808e-07,-0.173117354512215,-0.984901189804077,1.34842025545368e-07,-0.173117205500603,-0.984901130199432,-1.40591069452967e-07,-0.173117190599442,-0.984901130199432,-3.93006644117122e-07,-0.173117324709892,-0.984901189804077,-1.23531935969368e-06,-0.17311729490757,-0.984901189804077,-1.23531935969368e-06,-0.17311729490757,-0.984901189804077,-3.93006644117122e-07,-0.173117324709892,-0.984901189804077,3.64355230431102e-07,-0.173117145895958,-0.984901249408722,-1.23531935969368e-06,-0.17311729490757,-0.984901189804077,3.64355230431102e-07,-0.173117145895958,-0.984901249408722,-3.74499791178096e-07,-0.17311729490757,-0.984901189804077,-3.74499791178096e-07,-0.17311729490757,-0.984901189804077,3.64355230431102e-07,-0.173117145895958,-0.984901249408722,7.52433777506667e-07,-0.173117086291313,-0.984901309013367,3.64355230431102e-07,-0.173117145895958,-0.984901249408722,-7.40666123988376e-08,-0.173117190599442,-0.984901130199432,7.52433777506667e-07,-0.173117086291313,-0.984901309013367,7.52433777506667e-07,-0.173117086291313,-0.984901309013367,-7.40666123988376e-08,-0.173117190599442,-0.984901130199432,2.12534796619618e-13,-0.173117324709892,-0.984901249408722,-3.93006644117122e-07,-0.173117324709892,-0.984901189804077,8.84273049450712e-07,-0.173117160797119,-0.984901130199432,3.64355230431102e-07,-0.173117145895958,-0.984901249408722, +3.64355230431102e-07,-0.173117145895958,-0.984901249408722,8.84273049450712e-07,-0.173117160797119,-0.984901130199432,-7.40666123988376e-08,-0.173117190599442,-0.984901130199432,8.84273049450712e-07,-0.173117160797119,-0.984901130199432,1.20756126875676e-07,-0.173117190599442,-0.984901189804077,-7.40666123988376e-08,-0.173117190599442,-0.984901130199432,-7.40666123988376e-08,-0.173117190599442,-0.984901130199432,1.20756126875676e-07,-0.173117190599442,-0.984901189804077,1.85892190529557e-06,-0.173117235302925,-0.984901249408722,-7.40666123988376e-08,-0.173117190599442,-0.984901130199432,1.85892190529557e-06,-0.173117235302925,-0.984901249408722,2.12534796619618e-13,-0.173117324709892,-0.984901249408722,2.12534796619618e-13,-0.173117324709892,-0.984901249408722,1.85892190529557e-06,-0.173117235302925,-0.984901249408722,2.87572361214704e-14,-0.17311729490757,-0.984901189804077,1.85892190529557e-06,-0.173117235302925,-0.984901249408722,-2.69509132522217e-06,-0.173117235302925,-0.984901249408722,2.87572361214704e-14,-0.17311729490757,-0.984901189804077,2.87572361214704e-14,-0.17311729490757,-0.984901189804077,-2.69509132522217e-06,-0.173117235302925,-0.984901249408722,0,-0.173117220401764,-0.984901249408722,1.20756126875676e-07,-0.173117190599442,-0.984901189804077,-2.02118917513872e-06,-0.173117339611053,-0.984901189804077,1.85892190529557e-06,-0.173117235302925,-0.984901249408722,1.85892190529557e-06,-0.173117235302925,-0.984901249408722,-2.02118917513872e-06,-0.173117339611053,-0.984901189804077,-2.69509132522217e-06,-0.173117235302925,-0.984901249408722,2.20993911170808e-07,-0.173117354512215,-0.984901189804077,1.74363080418516e-07,-0.173117130994797,-0.984901249408722,1.34842025545368e-07,-0.173117205500603,-0.984901130199432,1.34842025545368e-07,-0.173117205500603,-0.984901130199432,1.74363080418516e-07,-0.173117130994797,-0.984901249408722,-8.1009079622163e-07,-0.173117235302925,-0.984901249408722,1.34842025545368e-07,-0.173117205500603,-0.984901130199432,-8.1009079622163e-07,-0.173117235302925,-0.984901249408722, +8.84273049450712e-07,-0.173117160797119,-0.984901130199432,8.84273049450712e-07,-0.173117160797119,-0.984901130199432,-8.1009079622163e-07,-0.173117235302925,-0.984901249408722,1.20756126875676e-07,-0.173117190599442,-0.984901189804077,-8.1009079622163e-07,-0.173117235302925,-0.984901249408722,0,-0.17311717569828,-0.984901189804077,1.20756126875676e-07,-0.173117190599442,-0.984901189804077,1.20756126875676e-07,-0.173117190599442,-0.984901189804077,0,-0.17311717569828,-0.984901189804077,-2.02118917513872e-06,-0.173117339611053,-0.984901189804077,1.74363080418516e-07,-0.173117130994797,-0.984901249408722,8.75988561688246e-08,-0.173117130994797,-0.984901309013367,-8.1009079622163e-07,-0.173117235302925,-0.984901249408722,-8.1009079622163e-07,-0.173117235302925,-0.984901249408722,8.75988561688246e-08,-0.173117130994797,-0.984901309013367,0,-0.17311717569828,-0.984901189804077,-0.983019590377808,-0.180729925632477,0.0317671187222004,-0.999880969524384,-0.0151933105662465,0.00267136422917247,-0.983019411563873,-0.180730193853378,0.0317670553922653,-0.983019411563873,-0.180730193853378,0.0317670553922653,-0.999880969524384,-0.0151933105662465,0.00267136422917247,-0.999880969524384,-0.0151935806497931,0.00267148506827652,-0.949243009090424,-0.309794366359711,0.0544533729553223,-0.983019590377808,-0.180729925632477,0.0317671187222004,-0.949243307113647,-0.309793621301651,0.054453294724226,-0.949243307113647,-0.309793621301651,0.054453294724226,-0.983019590377808,-0.180729925632477,0.0317671187222004,-0.983019411563873,-0.180730193853378,0.0317670553922653,-0.944087266921997,-0.324717879295349,0.0570753924548626,-0.949243009090424,-0.309794366359711,0.0544533729553223,-0.944087147712708,-0.324717879295349,0.0570765286684036,-0.944087147712708,-0.324717879295349,0.0570765286684036,-0.949243009090424,-0.309794366359711,0.0544533729553223,-0.949243307113647,-0.309793621301651,0.054453294724226,-0.988290727138519,-0.150278702378273,0.0264137014746666,-0.944087266921997,-0.324717879295349,0.0570753924548626,-0.98829060792923,-0.15027990937233,0.0264146346598864, +-0.98829060792923,-0.15027990937233,0.0264146346598864,-0.944087266921997,-0.324717879295349,0.0570753924548626,-0.944087147712708,-0.324717879295349,0.0570765286684036,0.999881029129028,-0.015193217433989,0.00267091230489314,0.983019351959229,-0.180730938911438,0.031766090542078,0.999880850315094,-0.0151940369978547,0.00267051625996828,0.999880850315094,-0.0151940369978547,0.00267051625996828,0.983019351959229,-0.180730938911438,0.031766090542078,0.983019232749939,-0.18073146045208,0.0317657515406609,0.983019351959229,-0.180730938911438,0.031766090542078,0.949242949485779,-0.309794545173645,0.0544522069394588,0.983019232749939,-0.18073146045208,0.0317657515406609,0.983019232749939,-0.18073146045208,0.0317657515406609,0.949242949485779,-0.309794545173645,0.0544522069394588,0.949243664741516,-0.309792518615723,0.0544521510601044,0.949242949485779,-0.309794545173645,0.0544522069394588,0.944087505340576,-0.32471689581871,0.0570759288966656,0.949243664741516,-0.309792518615723,0.0544521510601044,0.949243664741516,-0.309792518615723,0.0544521510601044,0.944087505340576,-0.32471689581871,0.0570759288966656,0.94408792257309,-0.324715822935104,0.057075209915638,0.944087505340576,-0.32471689581871,0.0570759288966656,0.988290846347809,-0.150277867913246,0.026414455845952,0.94408792257309,-0.324715822935104,0.057075209915638,0.94408792257309,-0.324715822935104,0.057075209915638,0.988290846347809,-0.150277867913246,0.026414455845952,0.988290667533875,-0.150279104709625,0.0264139380306005,-0.995939254760742,0.0886684730648994,-0.0155868837609887,-0.988290727138519,-0.150278702378273,0.0264137014746666,-0.995939254760742,0.0886682644486427,-0.0155860688537359,-0.995939254760742,0.0886682644486427,-0.0155860688537359,-0.988290727138519,-0.150278702378273,0.0264137014746666,-0.98829060792923,-0.15027990937233,0.0264146346598864,-0.969624876976013,0.240903660655022,-0.0423451997339725,-0.995939254760742,0.0886684730648994,-0.0155868837609887,-0.96962434053421,0.240905493497849,-0.0423465594649315,-0.96962434053421,0.240905493497849,-0.0423465594649315, +-0.995939254760742,0.0886684730648994,-0.0155868837609887,-0.995939254760742,0.0886682644486427,-0.0155860688537359,-7.51177537949843e-07,0.984900712966919,-0.173119872808456,-0.00856361165642738,0.984864890575409,-0.173111915588379,-1.05186165910709e-06,0.984901368618011,-0.173116162419319,-1.05186165910709e-06,0.984901368618011,-0.173116162419319,-0.00856361165642738,0.984864890575409,-0.173111915588379,-0.00856404285877943,0.984865128993988,-0.173110395669937,-0.00856361165642738,0.984864890575409,-0.173111915588379,-0.0146803399547935,0.984795570373535,-0.173095837235451,-0.00856404285877943,0.984865128993988,-0.173110395669937,-0.00856404285877943,0.984865128993988,-0.173110395669937,-0.0146803399547935,0.984795570373535,-0.173095837235451,-0.0146839693188667,0.984795212745667,-0.173097237944603,-0.945422351360321,0.320927351713181,-0.0564100667834282,-0.969624876976013,0.240903660655022,-0.0423451997339725,-0.945422172546387,0.320928335189819,-0.0564100444316864,-0.945422172546387,0.320928335189819,-0.0564100444316864,-0.969624876976013,0.240903660655022,-0.0423451997339725,-0.96962434053421,0.240905493497849,-0.0423465594649315,-0.0146803399547935,0.984795570373535,-0.173095837235451,-0.0183534566313028,0.984735786914825,-0.173085808753967,-0.0146839693188667,0.984795212745667,-0.173097237944603,-0.0146839693188667,0.984795212745667,-0.173097237944603,-0.0183534566313028,0.984735786914825,-0.173085808753967,-0.0183504931628704,0.984735012054443,-0.173090294003487,-0.0183534566313028,0.984735786914825,-0.173085808753967,-0.0195775721222162,0.984712481498718,-0.173083528876305,-0.0183504931628704,0.984735012054443,-0.173090294003487,-0.0183504931628704,0.984735012054443,-0.173090294003487,-0.0195775721222162,0.984712481498718,-0.173083528876305,-0.0195714198052883,0.984711945056915,-0.173087075352669,-0.936416745185852,0.345591455698013,-0.0607473663985729,-0.945422351360321,0.320927351713181,-0.0564100667834282,-0.936417400836945,0.345590442419052,-0.0607441291213036,-0.936417400836945,0.345590442419052,-0.0607441291213036, +-0.945422351360321,0.320927351713181,-0.0564100667834282,-0.945422172546387,0.320928335189819,-0.0564100444316864,0.988290846347809,-0.150277867913246,0.026414455845952,0.995939314365387,0.0886682197451591,-0.0155854197219014,0.988290667533875,-0.150279104709625,0.0264139380306005,0.988290667533875,-0.150279104709625,0.0264139380306005,0.995939314365387,0.0886682197451591,-0.0155854197219014,0.995939373970032,0.0886671990156174,-0.0155864404514432,0.995939314365387,0.0886682197451591,-0.0155854197219014,0.969624936580658,0.240903660655022,-0.0423446483910084,0.995939373970032,0.0886671990156174,-0.0155864404514432,0.995939373970032,0.0886671990156174,-0.0155864404514432,0.969624936580658,0.240903660655022,-0.0423446483910084,0.969624638557434,0.240904226899147,-0.0423457883298397,0.969624936580658,0.240903660655022,-0.0423446483910084,0.945421934127808,0.320928633213043,-0.0564105659723282,0.969624638557434,0.240904226899147,-0.0423457883298397,0.969624638557434,0.240904226899147,-0.0423457883298397,0.945421934127808,0.320928633213043,-0.0564105659723282,0.945421874523163,0.320928692817688,-0.0564107596874237,0.945421934127808,0.320928633213043,-0.0564105659723282,0.936417043209076,0.345591068267822,-0.0607451163232327,0.945421874523163,0.320928692817688,-0.0564107596874237,0.945421874523163,0.320928692817688,-0.0564107596874237,0.936417043209076,0.345591068267822,-0.0607451163232327,0.936417579650879,0.345589578151703,-0.0607448518276215,0.0195792950689793,0.98471200466156,-0.173086553812027,0.0183527488261461,0.984735190868378,-0.173088863492012,0.0195731464773417,0.984712958335876,-0.173082187771797,0.0195731464773417,0.984712958335876,-0.173082187771797,0.0183527488261461,0.984735190868378,-0.173088863492012,0.0183494929224253,0.984735548496246,-0.173087522387505,0.0183527488261461,0.984735190868378,-0.173088863492012,0.0146798826754093,0.984795212745667,-0.173097655177116,0.0183494929224253,0.984735548496246,-0.173087522387505,0.0183494929224253,0.984735548496246,-0.173087522387505,0.0146798826754093,0.984795212745667,-0.173097655177116, +0.0146826049312949,0.984794735908508,-0.173100411891937,0.0146798826754093,0.984795212745667,-0.173097655177116,0.00856586080044508,0.984864771366119,-0.173112571239471,0.0146826049312949,0.984794735908508,-0.173100411891937,0.0146826049312949,0.984794735908508,-0.173100411891937,0.00856586080044508,0.984864771366119,-0.173112571239471,0.00856539141386747,0.984865069389343,-0.173111021518707,0.00856586080044508,0.984864771366119,-0.173112571239471,-7.51177537949843e-07,0.984900712966919,-0.173119872808456,0.00856539141386747,0.984865069389343,-0.173111021518707,0.00856539141386747,0.984865069389343,-0.173111021518707,-7.51177537949843e-07,0.984900712966919,-0.173119872808456,-1.05186165910709e-06,0.984901368618011,-0.173116162419319,-0.999880969524384,-0.0151933105662465,0.00267136422917247,-0.996002674102783,0.0879747495055199,-0.0154629740864038,-0.999880969524384,-0.0151935806497931,0.00267148506827652,-0.999880969524384,-0.0151935806497931,0.00267148506827652,-0.996002674102783,0.0879747495055199,-0.0154629740864038,-0.996002674102783,0.0879748612642288,-0.0154631705954671,-0.996002674102783,0.0879747495055199,-0.0154629740864038,-0.993001580238342,0.116318546235561,-0.0204453859478235,-0.996002674102783,0.0879748612642288,-0.0154631705954671,-0.996002674102783,0.0879748612642288,-0.0154631705954671,-0.993001580238342,0.116318546235561,-0.0204453859478235,-0.993001520633698,0.116318561136723,-0.0204456020146608,-0.993001580238342,0.116318546235561,-0.0204453859478235,-0.994265079498291,0.105328179895878,-0.0185144394636154,-0.993001520633698,0.116318561136723,-0.0204456020146608,-0.993001520633698,0.116318561136723,-0.0204456020146608,-0.994265079498291,0.105328179895878,-0.0185144394636154,-0.994265019893646,0.105328164994717,-0.0185145940631628,-0.994265079498291,0.105328179895878,-0.0185144394636154,-0.99744588136673,0.0703462734818459,-0.0123656410723925,-0.994265019893646,0.105328164994717,-0.0185145940631628,-0.994265019893646,0.105328164994717,-0.0185145940631628,-0.99744588136673,0.0703462734818459,-0.0123656410723925, +-0.997446000576019,0.0703462660312653,-0.0123654762282968,0.996002674102783,0.0879744812846184,-0.0154631081968546,0.999881029129028,-0.015193217433989,0.00267091230489314,0.996002614498138,0.0879744738340378,-0.0154628735035658,0.996002614498138,0.0879744738340378,-0.0154628735035658,0.999881029129028,-0.015193217433989,0.00267091230489314,0.999880850315094,-0.0151940369978547,0.00267051625996828,0.993001639842987,0.116318419575691,-0.0204456653445959,0.996002674102783,0.0879744812846184,-0.0154631081968546,0.993001520633698,0.1163185313344,-0.0204452574253082,0.993001520633698,0.1163185313344,-0.0204452574253082,0.996002674102783,0.0879744812846184,-0.0154631081968546,0.996002614498138,0.0879744738340378,-0.0154628735035658,0.994265139102936,0.105328157544136,-0.0185145176947117,0.993001639842987,0.116318419575691,-0.0204456653445959,0.994265079498291,0.105328343808651,-0.0185142904520035,0.994265079498291,0.105328343808651,-0.0185142904520035,0.993001639842987,0.116318419575691,-0.0204456653445959,0.993001520633698,0.1163185313344,-0.0204452574253082,0.997445940971375,0.0703460350632668,-0.0123655935749412,0.994265139102936,0.105328157544136,-0.0185145176947117,0.997445940971375,0.0703459531068802,-0.0123657239601016,0.997445940971375,0.0703459531068802,-0.0123657239601016,0.994265139102936,0.105328157544136,-0.0185145176947117,0.994265079498291,0.105328343808651,-0.0185142904520035,-0.99744588136673,0.0703462734818459,-0.0123656410723925,-0.999346196651459,0.0356094352900982,-0.00625918619334698,-0.997446000576019,0.0703462660312653,-0.0123654762282968,-0.997446000576019,0.0703462660312653,-0.0123654762282968,-0.999346196651459,0.0356094352900982,-0.00625918619334698,-0.999346196651459,0.0356094874441624,-0.00625917222350836,-0.999346196651459,0.0356094352900982,-0.00625918619334698,-0.999887585639954,0.0147618809714913,-0.0025953350123018,-0.999346196651459,0.0356094874441624,-0.00625917222350836,-0.999346196651459,0.0356094874441624,-0.00625917222350836,-0.999887585639954,0.0147618809714913,-0.0025953350123018, +-0.999887585639954,0.0147618968039751,-0.00259533943608403,-0.999887585639954,0.0147618809714913,-0.0025953350123018,-0.999993443489075,0.00354648288339376,-0.00062344764592126,-0.999887585639954,0.0147618968039751,-0.00259533943608403,-0.999887585639954,0.0147618968039751,-0.00259533943608403,-0.999993443489075,0.00354648288339376,-0.00062344764592126,-0.999993503093719,0.0035464046522975,-0.000623184139840305,-0.999993443489075,0.00354648288339376,-0.00062344764592126,-0.999999940395355,-2.51667984230153e-07,1.00951376680314e-06,-0.999993503093719,0.0035464046522975,-0.000623184139840305,-0.999993503093719,0.0035464046522975,-0.000623184139840305,-0.999999940395355,-2.51667984230153e-07,1.00951376680314e-06,-0.999999940395355,-3.3313312997052e-07,1.33629407628177e-06,-0.856958448886871,-0.507603645324707,0.0892231836915016,-0.841694593429565,-0.531800985336304,0.0934770554304123,-0.856958031654358,-0.5076043009758,0.0892233178019524,-0.856958031654358,-0.5076043009758,0.0892233178019524,-0.841694593429565,-0.531800985336304,0.0934770554304123,-0.841694474220276,-0.531801223754883,0.0934762135148048,-0.841694593429565,-0.531800985336304,0.0934770554304123,-0.780150949954987,-0.616145610809326,0.108300507068634,-0.841694474220276,-0.531801223754883,0.0934762135148048,-0.841694474220276,-0.531801223754883,0.0934762135148048,-0.780150949954987,-0.616145610809326,0.108300507068634,-0.78015124797821,-0.616145312786102,0.108300231397152,-0.780150949954987,-0.616145610809326,0.108300507068634,-0.588266611099243,-0.796457231044769,0.139993265271187,-0.78015124797821,-0.616145312786102,0.108300231397152,-0.78015124797821,-0.616145312786102,0.108300231397152,-0.588266611099243,-0.796457231044769,0.139993265271187,-0.588266372680664,-0.79645711183548,0.139995440840721,-0.588266611099243,-0.796457231044769,0.139993265271187,-0.383843630552292,-0.909456014633179,0.159855410456657,-0.588266372680664,-0.79645711183548,0.139995440840721,-0.588266372680664,-0.79645711183548,0.139995440840721,-0.383843630552292,-0.909456014633179,0.159855410456657, +-0.383842945098877,-0.909455955028534,0.159858003258705,0.999346077442169,0.035609807819128,-0.00625917175784707,0.997445940971375,0.0703460350632668,-0.0123655935749412,0.999346196651459,0.0356097817420959,-0.00625920388847589,0.999346196651459,0.0356097817420959,-0.00625920388847589,0.997445940971375,0.0703460350632668,-0.0123655935749412,0.997445940971375,0.0703459531068802,-0.0123657239601016,0.999887645244598,0.0147615475580096,-0.00259531661868095,0.999346077442169,0.035609807819128,-0.00625917175784707,0.999887704849243,0.0147615559399128,-0.00259529938921332,0.999887704849243,0.0147615559399128,-0.00259529938921332,0.999346077442169,0.035609807819128,-0.00625917175784707,0.999346196651459,0.0356097817420959,-0.00625920388847589,0.383843570947647,-0.909456253051758,0.159854620695114,0.588266789913177,-0.796457350254059,0.13999255001545,0.383843719959259,-0.909456014633179,0.159855663776398,0.383843719959259,-0.909456014633179,0.159855663776398,0.588266789913177,-0.796457350254059,0.13999255001545,0.588266551494598,-0.796457231044769,0.139994367957115,0.588266789913177,-0.796457350254059,0.13999255001545,0.780150949954987,-0.616145551204681,0.108301006257534,0.588266551494598,-0.796457231044769,0.139994367957115,0.588266551494598,-0.796457231044769,0.139994367957115,0.780150949954987,-0.616145551204681,0.108301006257534,0.780150890350342,-0.616145431995392,0.108301788568497,0.999993503093719,0.00354642630554736,-0.000623189785983413,0.999887645244598,0.0147615475580096,-0.00259531661868095,0.999993443489075,0.00354628660716116,-0.000623417727183551,0.999993443489075,0.00354628660716116,-0.000623417727183551,0.999887645244598,0.0147615475580096,-0.00259531661868095,0.999887704849243,0.0147615559399128,-0.00259529938921332,0.780150949954987,-0.616145551204681,0.108301006257534,0.841694712638855,-0.531800866127014,0.0934762209653854,0.780150890350342,-0.616145431995392,0.108301788568497,0.780150890350342,-0.616145431995392,0.108301788568497,0.841694712638855,-0.531800866127014,0.0934762209653854,0.841694831848145,-0.531800866127014,0.0934760123491287, +0.841694712638855,-0.531800866127014,0.0934762209653854,0.856958091259003,-0.507604122161865,0.0892233848571777,0.841694831848145,-0.531800866127014,0.0934760123491287,0.841694831848145,-0.531800866127014,0.0934760123491287,0.856958091259003,-0.507604122161865,0.0892233848571777,0.856958091259003,-0.50760406255722,0.0892233848571777,0.99999988079071,2.22088729628922e-07,1.24765119835502e-06,0.999993503093719,0.00354642630554736,-0.000623189785983413,1,4.55808972787963e-08,9.64224682320491e-07,1,4.55808972787963e-08,9.64224682320491e-07,0.999993503093719,0.00354642630554736,-0.000623189785983413,0.999993443489075,0.00354628660716116,-0.000623417727183551 + } + NormalsW: *4488 { + 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *2422 { + a: 0.485824465751648,0.315321654081345,0.485824465751648,0.281638652086258,0.508174777030945,0.281284898519516,0.508174777030945,0.315321654081345,0.508174777030945,0.255104809999466,0.485824465751648,0.255730599164963,0.530200719833374,0.28093633055687,0.530200719833374,0.315321654081345,0.530200719833374,0.254488080739975,0.552100300788879,0.279239684343338,0.552100300788879,0.315321654081345,0.552100300788879,0.251486480236053,0.578549087047577,0.277190655469894,0.578549087047577,0.315321654081345,0.578549087047577,0.247861340641975,0.613761961460114,0.269865602254868,0.624488294124603,0.315321654081345,0.605511546134949,0.235709771513939,0.634942293167114,0.270952552556992,0.642705261707306,0.317821711301804,0.628971219062805,0.235709771513939,0.667107939720154,0.272603332996368,0.670370638370514,0.321618556976318,0.664598405361176,0.235709771513939,0.613761961460114,0.201553910970688,0.634942293167114,0.200466945767403,0.695141851902008,0.271426230669022,0.701132535934448,0.319920033216476,0.667107939720154,0.198816224932671,0.693711280822754,0.235709771513939,0.578549087047577,0.223558217287064,0.578549087047577,0.194228902459145,0.624488294124603,0.156097903847694,0.642705261707306,0.153597787022591,0.732311010360718,0.269865602254868,0.741918623447418,0.31766813993454,0.695141851902008,0.199993282556534,0.670370638370514,0.149800971150398,0.732311010360718,0.235709771513939,0.552100300788879,0.219933018088341,0.552100300788879,0.192179828882217,0.578549087047577,0.156097903847694,0.76698899269104,0.269865602254868,0.768766403198242,0.3137326836586,0.732311010360718,0.201553910970688,0.701132535934448,0.151499435305595,0.76698899269104,0.235709771513939,0.530200719833374,0.21693143248558,0.530200719833374,0.190483212471008,0.552100300788879,0.156097903847694,0.809512138366699,0.269865602254868,0.801688075065613,0.308906972408295,0.750935673713684,0.340191394090652,0.731723248958588,0.338116675615311,0.76698899269104,0.201553910970688,0.741918623447418,0.153751417994499,0.809512138366699, +0.235709771513939,0.508174777030945,0.216314688324928,0.508174777030945,0.190134599804878,0.530200719833374,0.156097903847694,0.824896693229675,0.260950714349747,0.821224331855774,0.29055842757225,0.774494767189026,0.342735439538956,0.734646260738373,0.364363104104996,0.722408950328827,0.356797784566879,0.768766403198242,0.157686859369278,0.809512138366699,0.201553910970688,0.824896693229675,0.235709771513939,0.485824465751648,0.215688869357109,0.485824465751648,0.189780876040459,0.508174777030945,0.156097903847694,0.838352382183075,0.253153413534164,0.838311374187469,0.274510115385056,0.749652028083801,0.373640030622482,0.717932939529419,0.387830197811127,0.709155440330505,0.382329404354095,0.731723248958588,0.133302822709084,0.750935673713684,0.131228148937225,0.801688075065613,0.162512570619583,0.824896693229675,0.210468798875809,0.838352382183075,0.235709771513939,0.485824465751648,0.156097903847694,0.72869598865509,0.394575417041779,0.701505124568939,0.410896211862564,0.696128487586975,0.407424718141556,0.708574414253235,0.352099239826202,0.697291791439056,0.378345131874084,0.722408950328827,0.114621683955193,0.734646260738373,0.107056364417076,0.774494767189026,0.128684103488922,0.821224331855774,0.180861100554466,0.838352382183075,0.218266114592552,0.842801868915558,0.261809527873993,0.842801868915558,0.235709771513939,0.708098173141479,0.415153086185455,0.674416661262512,0.44100946187973,0.660940706729889,0.432156443595886,0.686202108860016,0.404142439365387,0.709155440330505,0.089090071618557,0.717932939529419,0.0835893452167511,0.749652028083801,0.0977795198559761,0.838311374187469,0.196909382939339,0.842801868915558,0.209609985351562,0.889587342739105,0.235709771513939,0.888446569442749,0.261809527873993,0.690941214561462,0.451865285634995,0.656846106052399,0.464655667543411,0.650759041309357,0.46076425909996,0.653817772865295,0.426843702793121,0.708574414253235,0.119320273399353,0.697291791439056,0.0930744186043739,0.696128487586975,0.0639947578310966,0.701505124568939,0.0605232715606689,0.72869598865509, +0.0768441408872604,0.888446569442749,0.209609985351562,0.938084065914154,0.235709771513939,0.935760676860809,0.261809527873993,0.842801868915558,0.284490972757339,0.886261999607086,0.284490972757339,0.664310216903687,0.469427406787872,0.686202108860016,0.0672770366072655,0.660940706729889,0.0392630621790886,0.674416661262512,0.0304100681096315,0.708098173141479,0.056266438215971,0.842801868915558,0.186928540468216,0.886261999607086,0.186928540468216,0.935760676860809,0.209609985351562,0.93131160736084,0.284490972757339,0.653817772865295,0.0445758290588856,0.650759041309357,0.0106552476063371,0.656846106052399,0.00676385266706347,0.690941214561462,0.0195541772991419,0.93131160736084,0.186928540468216,0.664310216903687,0.00199207267723978,0.720445215702057,0.878274142742157,0.698869943618774,0.855592608451843,0.754423558712006,0.855592608451843,0.751122534275055,0.890574932098389,0.698869943618774,0.829492926597595,0.754423558712006,0.829492926597595,0.795303165912628,0.855592608451843,0.777235329151154,0.878274142742157,0.754423558712006,0.803393125534058,0.698869943618774,0.803393125534058,0.795303165912628,0.829492926597595,0.795303165912628,0.803393125534058,0.720445215702057,0.780711710453033,0.751122534275055,0.768410861492157,0.777235329151154,0.780711710453033,0.161204308271408,0.431901335716248,0.195241004228592,0.431901335716248,0.194887280464172,0.454251646995544,0.161204308271408,0.454251646995544,0.161204308271408,0.409875333309174,0.195589601993561,0.409875333309174,0.221421092748642,0.431901335716248,0.220795303583145,0.454251646995544,0.194887280464172,0.484619498252869,0.161204308271408,0.484619498252869,0.161204308271408,0.387975782155991,0.197286233305931,0.387975782155991,0.222037822008133,0.409875333309174,0.220795303583145,0.484619498252869,0.161204308271408,0.361526906490326,0.199335291981697,0.361526906490326,0.225039452314377,0.387975782155991,0.161204308271408,0.3155876994133,0.20666030049324,0.326314061880112,0.228664606809616,0.361526906490326,0.158704191446304,0.297370880842209,0.205573350191116, +0.305133819580078,0.240816161036491,0.334564596414566,0.154907375574112,0.269705533981323,0.203922614455223,0.272968173027039,0.240816161036491,0.31110492348671,0.1576147377491,0.236939936876297,0.205099686980247,0.244934141635895,0.240816161036491,0.275477766990662,0.276058971881866,0.305133819580078,0.274972021579742,0.326314061880112,0.161204308271408,0.193497493863106,0.20666030049324,0.207765102386475,0.240816161036491,0.246364712715149,0.277709692716599,0.272968173027039,0.322928100824356,0.297370880842209,0.320428043603897,0.3155876994133,0.252967715263367,0.361526906490326,0.282297015190125,0.361526906490326,0.161204323172569,0.169008925557137,0.20666030049324,0.173087179660797,0.240816161036491,0.207765102386475,0.276532649993896,0.244934141635895,0.326724946498871,0.269705533981323,0.320428043603897,0.361526906490326,0.256592899560928,0.387975782155991,0.284346103668213,0.387975782155991,0.138864621520042,0.210171490907669,0.13468037545681,0.189541667699814,0.161204308271408,0.147431045770645,0.20666030049324,0.130563989281654,0.240816161036491,0.173087179660797,0.274972021579742,0.207765102386475,0.324017584323883,0.236939936876297,0.320428043603897,0.387975782155991,0.25959450006485,0.409875333309174,0.286042720079422,0.409875333309174,0.118455842137337,0.225404381752014,0.110448978841305,0.208299621939659,0.129549488425255,0.172695264220238,0.182157665491104,0.123096220195293,0.215575203299522,0.115179464221001,0.240816161036491,0.130563989281654,0.274972021579742,0.173087179660797,0.320428043603897,0.193497493863106,0.320428043603897,0.409875333309174,0.260211229324341,0.431901335716248,0.286391317844391,0.431901335716248,0.0916638374328613,0.23795311152935,0.0858345553278923,0.22631798684597,0.100630715489388,0.195775836706161,0.127375811338425,0.157757148146629,0.161204308271408,0.130563989281654,0.200484231114388,0.101811960339546,0.223372504115105,0.101723730564117,0.240816161036491,0.115179464221001,0.274972021579742,0.130563989281654,0.320428043603897,0.169008925557137,0.320428043603897,0.431901335716248, +0.286745071411133,0.454251646995544,0.26083704829216,0.454251646995544,0.0653296560049057,0.250287353992462,0.0616407580673695,0.244028627872467,0.0786865279078484,0.216239705681801,0.0964712500572205,0.182600051164627,0.240816161036491,0.101723730564117,0.266057133674622,0.115179464221001,0.320428043603897,0.147431045770645,0.346951961517334,0.189541667699814,0.342767685651779,0.210171490907669,0.320428043603897,0.454251646995544,0.286745071411133,0.484619498252869,0.26083704829216,0.484619498252869,0.0981808230280876,0.242784351110458,0.0723834633827209,0.253874033689499,0.0435137711465359,0.280349612236023,0.0330174118280411,0.266079694032669,0.0571173280477524,0.236353904008865,0.0766247287392616,0.205076634883881,0.214716404676437,0.0972742810845375,0.240816161036491,0.0972742810845375,0.258259803056717,0.101723730564117,0.299474656581879,0.123096220195293,0.352082848548889,0.172695264220238,0.371183335781097,0.208299621939659,0.363176435232162,0.225404381752014,0.320428043603897,0.484619498252869,0.0105001525953412,0.292826026678085,0.00666479533538222,0.286837011575699,0.0201464630663395,0.248581677675247,0.0571173280477524,0.227169260382652,0.214716404676437,0.0516295693814754,0.240816161036491,0.0504887066781521,0.266915917396545,0.0972742810845375,0.281148105859756,0.101811960339546,0.354256510734558,0.157757148146629,0.320428043603897,0.130563989281654,0.381001621484756,0.195775836706161,0.39579775929451,0.22631798684597,0.389968514442444,0.23795311152935,0.00196178536862135,0.279493063688278,0.0201464630663395,0.239397183060646,0.192034959793091,0.0972742810845375,0.192034959793091,0.0538141578435898,0.214716404676437,0.00431548291817307,0.240816161036491,0.00199200515635312,0.266915917396545,0.0516295693814754,0.385161101818085,0.182600051164627,0.402945786714554,0.216239705681801,0.419991612434387,0.244028627872467,0.416302710771561,0.250287353992462,0.192034959793091,0.00876452587544918,0.266915917396545,0.00431548291817307,0.289597392082214,0.0538141578435898,0.289597392082214,0.0972742810845375,0.405007600784302, +0.205076634883881,0.424514979124069,0.236353904008865,0.448614925146103,0.266079694032669,0.438118577003479,0.280349612236023,0.409248888492584,0.253874033689499,0.383451521396637,0.242784351110458,0.289597392082214,0.00876452587544918,0.424514979124069,0.227169260382652,0.461485832929611,0.248581677675247,0.474967539310455,0.286837011575699,0.471132189035416,0.292826026678085,0.461485832929611,0.239397183060646,0.479670524597168,0.279493063688278,0.355310142040253,0.712796986103058,0.388993114233017,0.70365309715271,0.388993114233017,0.743474304676056,0.355310142040253,0.743474304676056,0.355310142040253,0.690222799777985,0.388993114233017,0.674350321292877,0.41490113735199,0.712796986103058,0.41490113735199,0.743474304676056,0.388993114233017,0.774583339691162,0.355310142040253,0.774583339691162,0.41490113735199,0.690222799777985,0.41490113735199,0.774583339691162,0.388993114233017,0.812725603580475,0.355310142040253,0.812725603580475,0.41490113735199,0.812725603580475,0.0712130889296532,0.703608095645905,0.101890414953232,0.703608095645905,0.101890414953232,0.725958406925201,0.0712130889296532,0.725958406925201,0.0712130889296532,0.67324036359787,0.101890414953232,0.67324036359787,0.124464601278305,0.703608095645905,0.124464601278305,0.725958406925201,0.101890414953232,0.747984409332275,0.0712130889296532,0.747984409332275,0.040104053914547,0.698955237865448,0.040104053914547,0.67324036359787,0.124464601278305,0.67324036359787,0.124464601278305,0.747984409332275,0.107528410851955,0.769883930683136,0.0712130889296532,0.769883930683136,0.00196178536862135,0.693250298500061,0.00196178536862135,0.67324036359787,0.134251266717911,0.769883930683136,0.114337563514709,0.796332776546478,0.0712130889296532,0.796332776546478,0.146071016788483,0.796332776546478,0.105191446840763,0.823295176029205,0.0496378317475319,0.823295176029205,0.146071016788483,0.823295176029205,0.882909595966339,0.503725945949554,0.913586974143982,0.503725945949554,0.913586974143982,0.526076257228851,0.882909595966339,0.526076257228851,0.882909595966339, +0.473358154296875,0.913586974143982,0.473358154296875,0.913586974143982,0.548102200031281,0.882909595966339,0.548102200031281,0.860335409641266,0.503725945949554,0.860335409641266,0.526076257228851,0.860335409641266,0.473358154296875,0.944696009159088,0.473358154296875,0.944696009159088,0.499072998762131,0.913586974143982,0.570001780986786,0.882909595966339,0.570001780986786,0.860335409641266,0.548102200031281,0.982838273048401,0.473358154296875,0.982838273048401,0.493368148803711,0.913586974143982,0.596450626850128,0.882909595966339,0.596450626850128,0.860335409641266,0.570001780986786,0.913586974143982,0.642389833927155,0.882909595966339,0.642389833927155,0.860335409641266,0.596450626850128,0.913586974143982,0.660606741905212,0.882909595966339,0.660606741905212,0.860335409641266,0.642389833927155,0.921636581420898,0.688272058963776,0.882909595966339,0.688272058963776,0.860335409641266,0.660606741905212,0.926590204238892,0.719034016132355,0.882909595966339,0.714903295040131,0.852285861968994,0.688272058963776,0.913586974143982,0.75982004404068,0.882909595966339,0.750212550163269,0.852285861968994,0.721037626266479,0.860335409641266,0.764480173587799,0.0967766717076302,0.827226042747498,0.109518021345139,0.835145235061646,0.109753929078579,0.841232299804688,0.0970125943422318,0.837177217006683,0.110043205320835,0.84869647026062,0.0973018705844879,0.849379658699036,0.0881954878568649,0.831636369228363,0.0884314104914665,0.83762538433075,0.116911113262177,0.875327467918396,0.0961120426654816,0.885065138339996,0.0887206867337227,0.844969272613525,0.0809014067053795,0.875880599021912,0.422844856977463,0.629193127155304,0.435068070888519,0.633448719978333,0.436183750629425,0.670419573783875,0.415384650230408,0.665905356407166,0.418473809957504,0.608615577220917,0.43573322892189,0.613941252231598,0.414026767015457,0.587680041790009,0.436409950256348,0.594094693660736,0.410589963197708,0.556775569915771,0.436932921409607,0.563190221786499,0.406828016042709,0.522947013378143,0.437505334615707,0.529361665248871,0.406828016042709, +0.504598498344421,0.437505334615707,0.50840836763382,0.406828016042709,0.488550245761871,0.437505334615707,0.490081787109375,0.460079520940781,0.529361665248871,0.460079520940781,0.50840836763382,0.460079520940781,0.490081787109375,0.0231271013617516,0.888995945453644,0.0384714305400848,0.894308686256409,0.0310783423483372,0.922916531562805,0.0183369908481836,0.925656735897064,0.00196178536862135,0.895164370536804,0.0097558069974184,0.928178012371063,0.645106196403503,0.856003284454346,0.645106196403503,0.812543153762817,0.675783514976501,0.812543153762817,0.687199234962463,0.856003284454346,0.62253201007843,0.812543153762817,0.610721826553345,0.856003284454346,0.645106196403503,0.901052892208099,0.675783514976501,0.901052892208099,0.61899346113205,0.901052892208099,0.189730763435364,0.853134036064148,0.179372981190681,0.88681697845459,0.159362986683846,0.88681697845459,0.159362986683846,0.853134036064148,0.179372981190681,0.827225983142853,0.159362986683846,0.827225983142853,0.295088797807693,0.883874535560608,0.261405855417252,0.896477282047272,0.261405855417252,0.865368247032166,0.295088797807693,0.858426928520203,0.261405855417252,0.827225983142853,0.295088797807693,0.827225983142853,0.320996850728989,0.896477282047272,0.320996850728989,0.865368247032166,0.320996850728989,0.827225983142853,0.103776514530182,0.924966871738434,0.0947818979620934,0.921380281448364,0.0904428064823151,0.888995945453644,0.111608140170574,0.894904673099518,0.334237664937973,0.865874886512756,0.350708514451981,0.859904050827026,0.351385205984116,0.886149883270264,0.33868470788002,0.892666876316071,0.330800861120224,0.845466077327728,0.350185543298721,0.847554266452789,0.327038913965225,0.823126375675201,0.349613100290298,0.834035992622375,0.376528471708298,0.845921516418457,0.373091697692871,0.864602625370026,0.380290448665619,0.825472891330719,0.856761634349823,0.967080950737,0.878118336200714,0.988656222820282,0.869462251663208,0.988656222820282,0.846780717372894,0.967080950737,0.855230033397675,0.936403632164001,0.834479987621307,0.936403632164001, +0.855230033397675,0.913829445838928,0.846780717372894,0.913829445838928,0.878118336200714,0.892222940921783,0.869462251663208,0.892222940921783,0.4820776283741,0.712796986103058,0.4820776283741,0.743474304676056,0.448394656181335,0.743474304676056,0.448394656181335,0.70365309715271,0.4820776283741,0.774583339691162,0.448394656181335,0.774583339691162,0.422486633062363,0.743474304676056,0.422486633062363,0.712796986103058,0.4820776283741,0.690222799777985,0.448394656181335,0.674350321292877,0.4820776283741,0.812725603580475,0.448394656181335,0.812725603580475,0.422486633062363,0.774583339691162,0.422486633062363,0.690222799777985,0.422486633062363,0.812725603580475,0.228638648986816,0.703608155250549,0.228638648986816,0.725958466529846,0.197961300611496,0.725958466529846,0.197961300611496,0.703608155250549,0.228638648986816,0.747984409332275,0.197961300611496,0.747984409332275,0.175387114286423,0.725958466529846,0.175387114286423,0.703608155250549,0.197961300611496,0.673240423202515,0.228638648986816,0.673240423202515,0.228638634085655,0.769883990287781,0.192323341965675,0.769883990287781,0.175387114286423,0.747984409332275,0.175387114286423,0.673240423202515,0.2597476541996,0.673240423202515,0.2597476541996,0.698955237865448,0.228638648986816,0.796332836151123,0.185514152050018,0.796332836151123,0.165600419044495,0.769883990287781,0.297889918088913,0.673240423202515,0.297889918088913,0.693250358104706,0.250213921070099,0.823295295238495,0.194660276174545,0.823295295238495,0.153780654072762,0.796332836151123,0.153780654072762,0.823295295238495,0.815620124340057,0.503725945949554,0.815620124340057,0.526076257228851,0.784942805767059,0.526076257228851,0.784942805767059,0.503725945949554,0.838194310665131,0.503725945949554,0.838194310665131,0.526076257228851,0.815620124340057,0.548102200031281,0.784942805767059,0.548102200031281,0.784942805767059,0.473358154296875,0.815620124340057,0.473358154296875,0.838194310665131,0.548102200031281,0.838194310665131,0.473358154296875,0.815620124340057,0.570001780986786,0.784942805767059, +0.570001780986786,0.753833770751953,0.499072998762131,0.753833770751953,0.473358154296875,0.838194310665131,0.570001780986786,0.815620124340057,0.596450626850128,0.784942805767059,0.596450626850128,0.71569150686264,0.493368148803711,0.71569150686264,0.473358154296875,0.838194310665131,0.596450626850128,0.815620124340057,0.642389833927155,0.784942805767059,0.642389833927155,0.838194310665131,0.642389833927155,0.815620124340057,0.660606741905212,0.784942805767059,0.660606741905212,0.838194310665131,0.660606741905212,0.815620124340057,0.688272058963776,0.776893138885498,0.688272058963776,0.846243917942047,0.688272058963776,0.815620124340057,0.714903295040131,0.771939516067505,0.719034016132355,0.846243917942047,0.721037626266479,0.815620124340057,0.750212550163269,0.784942805767059,0.75982004404068,0.838194310665131,0.764480173587799,0.0589841566979885,0.827226042747498,0.0587482675909996,0.837177217006683,0.0460069477558136,0.841232299804688,0.0462428368628025,0.835145235061646,0.0675653368234634,0.831636369228363,0.0673294514417648,0.83762538433075,0.0584589540958405,0.849379658699036,0.0457176342606544,0.84869647026062,0.0670401379466057,0.844969272613525,0.0388497337698936,0.875327467918396,0.0596488527953625,0.885065138339996,0.0748594179749489,0.875880599021912,0.482138425111771,0.529776692390442,0.474678218364716,0.493064373731613,0.495477348566055,0.488550245761871,0.494361639022827,0.525521099567413,0.477767378091812,0.550354361534119,0.495026797056198,0.545028507709503,0.473320364952087,0.571289777755737,0.495703518390656,0.564875066280365,0.469883531332016,0.602194249629974,0.496226489543915,0.595779597759247,0.466121584177017,0.636022806167603,0.496798902750015,0.629608154296875,0.496798902750015,0.650561451911926,0.466121584177017,0.654371321201324,0.519373118877411,0.629608154296875,0.519373118877411,0.650561451911926,0.496798902750015,0.668887972831726,0.466121584177017,0.670419573783875,0.519373118877411,0.668887972831726,0.0674636214971542,0.928178012371063,0.0626734867691994,0.891517162322998,0.0754148438572884, +0.894257366657257,0.0828079432249069,0.922865211963654,0.0462982840836048,0.922009527683258,0.0540923066437244,0.888995945453644,0.570295453071594,0.856003284454346,0.528202414512634,0.856003284454346,0.539618134498596,0.812543153762817,0.570295453071594,0.812543153762817,0.570295453071594,0.901052892208099,0.539618134498596,0.901052892208099,0.592869579792023,0.812543153762817,0.604679822921753,0.856003284454346,0.596408247947693,0.901052892208099,0.15332093834877,0.860908985137939,0.122953161597252,0.860908985137939,0.122953161597252,0.827226042747498,0.142963171005249,0.827226042747498,0.142963171005249,0.88681697845459,0.122953161597252,0.88681697845459,0.221680819988251,0.883874535560608,0.221680819988251,0.858426928520203,0.255363792181015,0.865368247032166,0.255363792181015,0.896477282047272,0.1957728266716,0.896477282047272,0.1957728266716,0.865368247032166,0.221680819988251,0.827225983142853,0.255363792181015,0.827225983142853,0.1957728266716,0.827225983142853,0.127064391970634,0.926718771457672,0.119232751429081,0.896656632423401,0.140398070216179,0.890747785568237,0.136058956384659,0.923132061958313,0.393531233072281,0.843448460102081,0.397978246212006,0.816656410694122,0.410678774118423,0.823173403739929,0.410002052783966,0.849419295787811,0.390094429254532,0.86385715007782,0.409479081630707,0.861769020557404,0.432385265827179,0.844720661640167,0.435822039842606,0.863401830196381,0.386332482099533,0.886196911334991,0.408906668424606,0.875287234783173,0.439583986997604,0.883850395679474,0.806156158447266,0.969363749027252,0.81613701581955,0.969363749027252,0.793455541133881,0.990939021110535,0.784799456596375,0.990939021110535,0.807687759399414,0.938686430454254,0.828437864780426,0.938686430454254,0.807687759399414,0.916112244129181,0.81613701581955,0.916112244129181,0.784799456596375,0.894505739212036,0.793455541133881,0.894505739212036,0.314686596393585,0.72030121088028,0.309513211250305,0.695643067359924,0.323020756244659,0.692809164524078,0.328194141387939,0.717467308044434,0.305407583713531,0.676074266433716, +0.318915128707886,0.67324036359787,0.32042133808136,0.747634947299957,0.333928793668747,0.744801044464111,0.326155990362167,0.77496874332428,0.339663535356522,0.772134721279144,0.331329345703125,0.799626886844635,0.344836831092834,0.796792984008789,0.335435003042221,0.819195687770844,0.348942518234253,0.816361725330353,0.687693178653717,0.678910911083221,0.690329134464264,0.704105913639069,0.676821649074554,0.704105913639069,0.674185633659363,0.678910911083221,0.691237449645996,0.732034742832184,0.677729904651642,0.732034742832184,0.690329134464264,0.759963572025299,0.676821649074554,0.759963572025299,0.687693178653717,0.785158574581146,0.674185633659363,0.785158574581146,0.683587551116943,0.805153489112854,0.670080006122589,0.805153489112854,0.624016165733337,0.802463471889496,0.629189491271973,0.777805328369141,0.642697036266327,0.780639231204987,0.637523651123047,0.805297374725342,0.634924232959747,0.750471532344818,0.648431718349457,0.753305494785309,0.640658915042877,0.72313779592514,0.654166460037231,0.725971698760986,0.645832300186157,0.698479652404785,0.659339725971222,0.701313614845276,0.649937927722931,0.678910851478577,0.66344541311264,0.681744754314423,0.911915361881256,0.874658465385437,0.914551258087158,0.849463522434235,0.928058743476868,0.849463522434235,0.92542290687561,0.874658465385437,0.91545957326889,0.821534693241119,0.928967118263245,0.821534693241119,0.914551258087158,0.793605864048004,0.928058743476868,0.793605864048004,0.911915361881256,0.768410861492157,0.92542290687561,0.768410861492157,0.260340183973312,0.505811154842377,0.284998327493668,0.492973685264587,0.312332093715668,0.578929901123047,0.312332093715668,0.488550215959549,0.240771368145943,0.525806069374084,0.339665859937668,0.492973685264587,0.228207394480705,0.551001071929932,0.364324003458023,0.505811214447021,0.223878175020218,0.578929901123047,0.383892774581909,0.525806069374084,0.228207394480705,0.606858789920807,0.396456718444824,0.551001071929932,0.240771368145943,0.632053792476654,0.400785952806473,0.578929901123047,0.260340183973312, +0.652048647403717,0.396456748247147,0.606858789920807,0.284998327493668,0.664886057376862,0.383892774581909,0.632053792476654,0.312332093715668,0.669309556484222,0.364324003458023,0.652048647403717,0.339665859937668,0.664886057376862,0.573069453239441,0.681590914726257,0.590831696987152,0.690838217735291,0.553379893302917,0.743508458137512,0.604927897453308,0.70524126291275,0.553379893302917,0.678404450416565,0.613978147506714,0.723390221595764,0.533690392971039,0.681590914726257,0.617096722126007,0.743508458137512,0.515928208827972,0.690838277339935,0.613978147506714,0.76362669467926,0.501832067966461,0.70524126291275,0.604927897453308,0.781775653362274,0.492781698703766,0.723390221595764,0.590831696987152,0.796178698539734,0.489663153886795,0.743508458137512,0.573069453239441,0.805426001548767,0.492781698703766,0.76362669467926,0.553379893302917,0.808612465858459,0.501832067966461,0.781775653362274,0.533690392971039,0.805426001548767,0.515928208827972,0.796178698539734,0.15671594440937,0.49297371506691,0.181374087929726,0.505811154842377,0.166834026575089,0.526259660720825,0.149071782827377,0.517012357711792,0.200942903757095,0.525806069374084,0.1809301674366,0.540662705898285,0.129382222890854,0.488550245761871,0.129382222890854,0.513825953006744,0.213506877422333,0.551001071929932,0.189980432391167,0.558811664581299,0.102048493921757,0.49297371506691,0.10969266295433,0.517012357711792,0.217836126685143,0.578929960727692,0.19309900701046,0.578929960727692,0.0773902907967567,0.505811214447021,0.0919304192066193,0.52625972032547,0.213506877422333,0.606858789920807,0.189980432391167,0.59904819726944,0.0578215382993221,0.525806069374084,0.0778342708945274,0.540662705898285,0.200942903757095,0.632053792476654,0.1809301674366,0.617197155952454,0.0452575609087944,0.551001071929932,0.0687840133905411,0.558811664581299,0.181374087929726,0.652048707008362,0.166833952069283,0.631600201129913,0.0409283153712749,0.578929960727692,0.0656654462218285,0.578929960727692,0.15671594440937,0.664886116981506,0.149071782827377,0.640847444534302, +0.0452575609087944,0.606858789920807,0.0687840133905411,0.59904819726944,0.129382222890854,0.669309556484222,0.129382222890854,0.644033849239349,0.0578215382993221,0.632053792476654,0.0778342708945274,0.617197155952454,0.102048426866531,0.664886116981506,0.10969266295433,0.640847444534302,0.0773902907967567,0.652048707008362,0.0919304192066193,0.631600201129913,0.809197664260864,0.817054688930511,0.805471122264862,0.7992924451828,0.885476768016815,0.782507002353668,0.889203190803528,0.800269246101379,0.802513659000397,0.785196304321289,0.882519245147705,0.768410861492157,0.813328623771667,0.836744248867035,0.893334209918976,0.819958806037903,0.817459583282471,0.856433808803558,0.897465229034424,0.839648365974426,0.821186125278473,0.87419605255127,0.901191711425781,0.857410550117493,0.824143528938293,0.888292193412781,0.904149174690247,0.871506690979004,0.776204347610474,0.894505620002747,0.778103053569794,0.91265457868576,0.698097467422485,0.91265457868576,0.696198761463165,0.894505620002747,0.778757393360138,0.932772815227509,0.69875180721283,0.932772815227509,0.778103053569794,0.952891051769257,0.698097467422485,0.952891051769257,0.776204347610474,0.971040010452271,0.696198761463165,0.971040010452271,0.773246884346008,0.98544305562973,0.693241238594055,0.98544305562973,0.884160280227661,0.981222569942474,0.887886822223663,0.963460385799408,0.967892348766327,0.98024582862854,0.964165925979614,0.998008012771606,0.892017781734467,0.943770885467529,0.972023367881775,0.960556328296661,0.89614874124527,0.924081265926361,0.976154386997223,0.940866708755493,0.899875283241272,0.906319081783295,0.979880928993225,0.923104524612427,0.902832686901093,0.892222940921783,0.982838332653046,0.909008383750916,0.445626050233841,0.816656410694122,0.463775008916855,0.818555176258087,0.463775008916855,0.89856082201004,0.445626050233841,0.896661996841431,0.483893245458603,0.819209456443787,0.483893245458603,0.899215042591095,0.504011452198029,0.818555176258087,0.504011452198029,0.89856082201004,0.522160410881042,0.816656410694122,0.522160410881042, +0.896661996841431,0.633599877357483,0.636351108551025,0.636624097824097,0.634845376014709,0.635994493961334,0.642492473125458,0.632760405540466,0.64371931552887,0.633030772209167,0.626463353633881,0.63619726896286,0.62479031085968,0.63964831829071,0.633527874946594,0.639228582382202,0.641418933868408,0.634790301322937,0.648360431194305,0.631154894828796,0.649251699447632,0.631572723388672,0.614088714122772,0.635103821754456,0.612236380577087,0.639363706111908,0.623326420783997,0.642672479152679,0.632586717605591,0.642462611198425,0.640652179718018,0.638425827026367,0.647580564022064,0.633493304252625,0.653078138828278,0.629425525665283,0.653631746768951,0.629745721817017,0.599259853363037,0.633733510971069,0.597092866897583,0.63863480091095,0.610615670681,0.642530202865601,0.622280716896057,0.645696759223938,0.632210314273834,0.645696759223938,0.640345394611359,0.642061233520508,0.647023499011993,0.637561082839966,0.652593731880188,0.632585406303406,0.65727436542511,0.62821489572525,0.657542943954468,0.628069400787354,0.582009494304657,0.632476329803467,0.579268991947174,0.637721240520477,0.595196783542633,0.642165780067444,0.609457969665527,0.645696759223938,0.621862530708313,0.648720860481262,0.632586717605591,0.648930788040161,0.640652179718018,0.645696759223938,0.646800696849823,0.641628921031952,0.652247726917267,0.636955857276917,0.657039403915405,0.632548332214355,0.661578118801117,0.628165543079376,0.661669135093689,0.627063691616058,0.562370300292969,0.631721973419189,0.558673679828644,0.636883139610291,0.576870977878571,0.641708970069885,0.593842446804047,0.645696759223938,0.608994901180267,0.648863196372986,0.622280716896057,0.651745140552521,0.633527874946594,0.652164876461029,0.641418933868408,0.649332165718079,0.647023499011993,0.645696759223938,0.652109324932098,0.641326308250427,0.656871497631073,0.636931180953979,0.661498486995697,0.633164525032043,0.665962398052216,0.62898713350296,0.665956437587738,0.626560807228088,0.540939450263977,0.631344735622406,0.53600001335144,0.636380195617676,0.555439174175262, +0.641289949417114,0.575158059597015,0.645696759223938,0.593300700187683,0.649227738380432,0.609457969665527,0.652029693126678,0.623326420783997,0.654769361019135,0.634845376014709,0.655398905277252,0.642492473125458,0.652967691421509,0.647580564022064,0.649764537811279,0.652247726917267,0.645696759223938,0.656804382801056,0.641313970088959,0.661441564559937,0.637341976165771,0.665967643260956,0.63421618938446,0.670400381088257,0.630389273166656,0.670351207256317,0.62639319896698,0.518314123153687,0.631219089031219,0.511940717697144,0.636128783226013,0.531678020954132,0.641038477420807,0.553128838539124,0.645696759223938,0.574472963809967,0.649684488773346,0.593842446804047,0.652758717536926,0.610615670681,0.655196189880371,0.62479031085968,0.657793521881104,0.636351108551025,0.65863299369812,0.64371931552887,0.656603097915649,0.648360431194305,0.653832316398621,0.652593731880188,0.650067150592804,0.656871497631073,0.645696759223938,0.661418855190277,0.64151930809021,0.665971338748932,0.638042986392975,0.670443534851074,0.635485470294952,0.674865305423737,0.632081747055054,0.674799621105194,0.62639319896698,0.495091617107391,0.631219089031219,0.487188547849655,0.636044919490814,0.506363928318024,0.640912711620331,0.52859091758728,0.645696759223938,0.552204668521881,0.650103569030762,0.575158059597015,0.653672218322754,0.595196783542633,0.65628969669342,0.612236380577087,0.658362746238708,0.626463353633881,0.66023862361908,0.649251699447632,0.657900094985962,0.653078138828278,0.654437601566315,0.657039403915405,0.650079548358917,0.661441564559937,0.645696759223938,0.665972828865051,0.641869843006134,0.670474290847778,0.638889253139496,0.67492264509201,0.636044919490814,0.480273336172104,0.640870869159698,0.50238049030304,0.645696759223938,0.527356028556824,0.650354981422424,0.553128778934479,0.654510378837585,0.576870977878571,0.657660007476807,0.597092866897583,0.659820675849915,0.614088714122772,0.661967933177948,0.653631746768951,0.658808052539825,0.65727436542511,0.654462277889252,0.661498486995697,0.649874091148376, +0.665971338748932,0.645696759223938,0.670486569404602,0.642292976379395,0.674963712692261,0.640870869159698,0.475333899259567,0.645696759223938,0.500787079334259,0.650480687618256,0.52859091758728,0.655013203620911,0.555439174175262,0.658917188644409,0.579268991947174,0.66164767742157,0.599259853363037,0.663178443908691,0.657542943954468,0.658845007419586,0.661578118801117,0.65405148267746,0.665967643260956,0.649523615837097,0.670474290847778,0.645696759223938,0.674980103969574,0.645696759223938,0.473358154296875,0.650522589683533,0.50238049030304,0.655264675617218,0.531678020954132,0.659671485424042,0.558673679828644,0.663323998451233,0.582009494304657,0.66322785615921,0.661669135093689,0.658228874206543,0.665962398052216,0.653350412845612,0.670443534851074,0.649100542068481,0.674963712692261,0.650522589683533,0.475333899259567,0.655348539352417,0.506363928318024,0.66004866361618,0.53600001335144,0.664329767227173,0.562370300292969,0.662406325340271,0.665956437587738,0.657177269458771,0.670400381088257,0.652504205703735,0.67492264509201,0.655348539352417,0.480273336172104,0.660174429416656,0.511940658092499,0.664832651615143,0.540939450263977,0.66100412607193,0.670351207256317,0.655907928943634,0.674865305423737,0.660174429416656,0.487188547849655,0.665000259876251,0.518314123153687,0.659311652183533,0.674799621105194,0.665000259876251,0.495091617107391,0.678249061107635,0.511987149715424,0.677409589290619,0.504618883132935,0.680643677711487,0.505845785140991,0.681273221969604,0.51349288225174,0.675803959369659,0.499086558818817,0.67943948507309,0.499977767467499,0.683877766132355,0.506919264793396,0.684297442436218,0.514810383319855,0.680846393108368,0.523547947406769,0.677679896354675,0.521874904632568,0.674074709415436,0.49470654129982,0.678142488002777,0.495260119438171,0.68307489156723,0.50075763463974,0.687111794948578,0.507686078548431,0.687321722507477,0.515751481056213,0.684012949466705,0.525011837482452,0.679752886295319,0.536101818084717,0.676221907138824,0.534249484539032,0.672864079475403,0.490795165300369, +0.677234530448914,0.49106377363205,0.682210266590118,0.495744466781616,0.68671041727066,0.501314759254456,0.690345823764801,0.507992804050446,0.690345823764801,0.516127824783325,0.687179386615753,0.526057541370392,0.683283865451813,0.537722587585449,0.678382635116577,0.551245391368866,0.674394905567169,0.549078345298767,0.672814786434174,0.486669093370438,0.677197515964508,0.48676010966301,0.681604981422424,0.491298854351044,0.68627804517746,0.49609050154686,0.690345823764801,0.501537442207336,0.693579971790314,0.507686078548431,0.69337010383606,0.515751481056213,0.690345823764801,0.526475727558136,0.686814844608307,0.538880288600922,0.68237042427063,0.553141415119171,0.67712539434433,0.56906920671463,0.672718584537506,0.566328644752502,0.673636317253113,0.482381820678711,0.677813708782196,0.482375800609589,0.681580305099487,0.486839771270752,0.685975432395935,0.491466760635376,0.690345823764801,0.496228843927383,0.693981409072876,0.501314759254456,0.696814000606537,0.506919264793396,0.696394264698029,0.514810383319855,0.693512380123138,0.526057541370392,0.690345823764801,0.539343297481537,0.686358094215393,0.554495751857758,0.681532204151154,0.571467220783234,0.676371097564697,0.589664459228516,0.671712815761566,0.585967838764191,0.675038456916809,0.477986991405487,0.678865313529968,0.477937757968903,0.681991100311279,0.482370615005493,0.685963094234467,0.486896693706512,0.690345823764801,0.491533786058426,0.694413602352142,0.49609050154686,0.697616755962372,0.50075763463974,0.70004814863205,0.505845785140991,0.699418485164642,0.51349288225174,0.696678876876831,0.525011837482452,0.693876802921295,0.538880288600922,0.690345823764801,0.555037558078766,0.685939013957977,0.573180198669434,0.681029319763184,0.592899084091187,0.675993919372559,0.612338185310364,0.671209931373596,0.607398748397827,0.676730930805206,0.47353857755661,0.680134654045105,0.47347292304039,0.682692170143127,0.477894723415375,0.686168491840363,0.48236683011055,0.690345823764801,0.486919432878494,0.694716393947601,0.491466760635376,0.698481500148773, +0.495744466781616,0.701252341270447,0.499977767467499,0.703282177448273,0.504618883132935,0.702442705631256,0.511987149715424,0.699845373630524,0.523547947406769,0.697407782077789,0.537722587585449,0.694333612918854,0.554495751857758,0.690345823764801,0.573865234851837,0.685687601566315,0.595209419727325,0.680777907371521,0.616660296916962,0.675868153572083,0.636397540569305,0.671042323112488,0.630024135112762,0.683538377285004,0.473415464162827,0.686519026756287,0.477863967418671,0.690345823764801,0.482365339994431,0.694728672504425,0.486896693706512,0.699086785316467,0.491298854351044,0.702549278736115,0.495260119438171,0.704887747764587,0.499086558818817,0.703011810779572,0.521874904632568,0.700938820838928,0.536101818084717,0.698321342468262,0.553141415119171,0.694752633571625,0.573180198669434,0.690345823764801,0.596133530139923,0.685561895370483,0.619747281074524,0.680694103240967,0.641974270343781,0.675868153572083,0.661149621009827,0.671042323112488,0.653246641159058,0.686942160129547,0.473374456167221,0.690345823764801,0.477851688861847,0.694523334503174,0.48236683011055,0.699111461639404,0.486839771270752,0.703457236289978,0.49106377363205,0.706617116928101,0.49470654129982,0.704469799995422,0.534249484539032,0.70230907201767,0.551245391368866,0.699159502983093,0.571467220783234,0.695004105567932,0.595209419727325,0.690345823764801,0.620982229709625,0.685519993305206,0.645957767963409,0.680694103240967,0.668064832687378,0.690345823764801,0.473358064889908,0.694172739982605,0.477863967418671,0.698700666427612,0.482370615005493,0.703494250774384,0.48676010966301,0.707827687263489,0.490795165300369,0.706296861171722,0.549078345298767,0.703566312789917,0.56906920671463,0.699662387371063,0.592899084091187,0.695129871368408,0.619747281074524,0.690345823764801,0.647551000118256,0.685519993305206,0.673004269599915,0.693749606609344,0.473374456167221,0.697999596595764,0.477894723415375,0.702878057956696,0.482375800609589,0.707877039909363,0.486669093370438,0.707973122596741,0.566328644752502,0.704320728778839,0.589664459228516, +0.699913859367371,0.616660296916962,0.695171773433685,0.645957767963409,0.690345823764801,0.674980103969574,0.697153389453888,0.473415464162827,0.701826512813568,0.477937757968903,0.707055449485779,0.482381820678711,0.708978950977325,0.585967838764191,0.704697787761688,0.612338185310364,0.699997663497925,0.641974270343781,0.695171773433685,0.673004269599915,0.700557112693787,0.47347292304039,0.705653369426727,0.477986991405487,0.709481775760651,0.607398748397827,0.70482349395752,0.636397540569305,0.699997663497925,0.668064832687378,0.70396089553833,0.47353857755661,0.709649443626404,0.630024135112762,0.70482349395752,0.661149621009827,0.709649443626404,0.653246641159058,0.581367135047913,0.6417436003685,0.582662284374237,0.634375274181366,0.592048943042755,0.636025249958038,0.590753793716431,0.643393456935883,0.584400236606598,0.624487519264221,0.593786954879761,0.626137435436249,0.580394744873047,0.647275865077972,0.589781403541565,0.648925840854645,0.586575388908386,0.612112939357758,0.59596198797226,0.61376279592514,0.579624891281128,0.651655912399292,0.589011549949646,0.65330582857132,0.589181840419769,0.597284078598022,0.598568499088287,0.598934054374695,0.578937351703644,0.655567288398743,0.588324010372162,0.657217085361481,0.592213928699493,0.580033779144287,0.601600646972656,0.58168363571167,0.578212082386017,0.659693360328674,0.587598741054535,0.661343276500702,0.595665991306305,0.560394585132599,0.605052590370178,0.562044501304626,0.577458500862122,0.663980603218079,0.586845219135284,0.665630578994751,0.599432945251465,0.538963735103607,0.608819544315338,0.54061359167099,0.576686084270477,0.668375432491302,0.586072742938995,0.670025289058685,0.603409826755524,0.516338407993317,0.612796485424042,0.517988264560699,0.575904130935669,0.672823846340179,0.585290789604187,0.674473762512207,0.607491612434387,0.493115872144699,0.616878271102905,0.494765788316727,0.608880758285522,0.485212773084641,0.618267416954041,0.486862689256668,0.610096275806427,0.478297591209412,0.619482934474945,0.479947507381439,0.610964477062225, +0.473358154296875,0.620351135730743,0.475008070468903,0.563103973865509,0.634375274181366,0.564399063587189,0.6417436003685,0.555012404918671,0.643393456935883,0.553717315196991,0.636025249958038,0.565371513366699,0.647275865077972,0.555984854698181,0.648925840854645,0.561365962028503,0.624487519264221,0.551979303359985,0.626137435436249,0.566141366958618,0.651655912399292,0.5567547082901,0.65330582857132,0.55919086933136,0.612112939357758,0.549804210662842,0.61376279592514,0.566828846931458,0.655567288398743,0.557442188262939,0.657217085361481,0.556584417819977,0.597284078598022,0.547197759151459,0.598934054374695,0.567554116249084,0.659693360328674,0.558167457580566,0.661343276500702,0.553552329540253,0.580033779144287,0.544165670871735,0.58168363571167,0.56830769777298,0.663980603218079,0.558921098709106,0.665630578994751,0.550100266933441,0.560394585132599,0.540713608264923,0.562044501304626,0.569080233573914,0.668375432491302,0.559693515300751,0.670025289058685,0.546333372592926,0.538963735103607,0.536946713924408,0.54061359167099,0.569862127304077,0.672823846340179,0.560475468635559,0.674473762512207,0.542356431484222,0.516338407993317,0.532969772815704,0.517988264560699,0.538274645805359,0.493115872144699,0.528887987136841,0.494765788316727,0.536885440349579,0.485212773084641,0.527498781681061,0.486862689256668,0.535669982433319,0.478297591209412,0.526283323764801,0.479947507381439,0.534801781177521,0.473358154296875,0.525415122509003,0.475008070468903,0.157441034913063,0.904362738132477,0.157438144087791,0.907766461372375,0.148051470518112,0.907766461372375,0.148054376244545,0.904362738132477,0.157430917024612,0.911170244216919,0.148044258356094,0.911170244216919,0.157438144087791,0.900958955287933,0.148051470518112,0.900958955287933,0.157420873641968,0.914573967456818,0.14803421497345,0.914573967456818,0.157430917024612,0.89755517244339,0.148044258356094,0.89755517244339,0.157409340143204,0.917977690696716,0.148022681474686,0.917977690696716,0.157420873641968,0.894151508808136,0.14803421497345,0.894151508808136, +0.157409340143204,0.890747725963593,0.148022681474686,0.890747725963593,0.165296629071236,0.890747725963593,0.170122519135475,0.891094982624054,0.170122519135475,0.900481700897217,0.165296629071236,0.900134384632111,0.174948409199715,0.890747725963593,0.174948439002037,0.900134384632111 + } + UVIndex: *4488 { + a: 0,1,3,3,1,2,135,136,134,134,136,137,150,151,149,149,151,152,298,299,297,297,299,300,312,313,315,315,313,314,337,338,340,340,338,339,7,6,10,10,6,9,321,320,327,327,320,326,153,159,154,154,159,160,344,343,351,351,343,350,13,12,16,16,12,15,331,334,332,332,334,335,164,163,167,167,163,166,356,355,359,359,355,358,15,18,16,16,18,19,167,166,170,170,166,169,358,361,359,359,361,362,22,21,27,27,21,26,173,172,176,176,172,175,365,364,368,368,364,367,34,42,35,35,42,43,181,180,189,189,180,188,374,375,377,377,375,376,449,447,446,446,447,444,43,52,35,35,52,53,396,397,394,394,397,395,188,180,197,197,180,196,64,75,85,85,75,86,63,74,64,64,74,75,392,393,390,390,393,391,207,206,218,218,206,217,84,96,97,97,96,108,83,95,84,84,95,96,386,387,389,389,387,388,231,230,245,245,230,244,406,407,405,405,407,408,96,95,107,107,95,106,382,383,378,378,383,379,244,256,245,245,256,257,51,50,61,61,50,60,198,209,199,199,209,210,397,396,399,399,396,398,117,92,118,118,92,104,271,272,248,248,272,260,412,413,411,411,413,414,152,151,158,158,151,157,313,312,317,317,312,316,420,421,423,423,421,422,337,341,338,338,341,342,427,428,426,426,428,429,338,342,349,349,342,348,300,299,306,306,299,305,312,322,316,316,322,323,92,93,104,104,93,103,135,138,136,136,138,139,248,260,249,249,260,261,199,210,211,211,210,224,190,181,200,200,181,189,177,173,182,182,173,176,171,167,174,174,167,170,164,167,168,168,167,171,161,154,165,165,154,160,151,150,156,156,150,155,157,151,162,162,151,156,298,303,299,299,303,304,305,299,308,308,299,304,420,423,424,424,423,425,432,426,433,433,426,429,4,2,5,5,2,1,11,9,8,8,9,6,12,14,15,15,14,17,18,15,20,20,15,17,26,21,29,29,21,23,46,42,38,38,42,34,67,60,56,56,60,50,402,397,403,403,397,399,221,198,220,220,198,208,233,219,247,247,219,232,259,246,270,270,246,258,383,385,379,379,385,384,374,377,380,380,377,381,405,408,409,409,408,410,436,437,435,435,437,438,440,441,439,439,441,442,445,446,443,443,446,444,365,368,369,369,368,372,363,359,366,366,359,362,360,356,363,363,356,359,352,344,357,357,344,351,345,337,346,346,337,340,337,345, +341,341,345,347,302,298,301,301,298,297,303,298,307,307,298,302,318,313,324,324,313,317,314,313,319,319,313,318,320,325,326,326,325,330,334,331,336,336,331,333,140,136,144,144,136,139,137,136,141,141,136,140,412,411,415,415,411,416,43,42,51,51,42,50,52,43,62,62,43,51,74,63,82,82,63,73,95,83,105,105,83,94,106,95,119,119,95,105,376,378,377,377,378,379,381,377,384,384,377,379,258,245,269,269,245,257,231,245,246,246,245,258,207,218,219,219,218,232,198,188,208,208,188,197,188,198,189,189,198,199,200,189,211,211,189,199,50,42,56,56,42,46,451,452,450,450,452,453,450,453,454,454,453,455,456,454,457,457,454,455,458,456,459,459,456,457,234,223,249,249,223,248,92,71,93,93,71,80,428,430,429,429,430,431,433,429,434,434,429,431,322,328,323,323,328,329,309,305,311,311,305,308,306,305,310,310,305,309,349,348,354,354,348,353,368,367,371,371,367,370,368,371,372,372,371,373,176,175,181,181,175,180,182,176,190,190,176,181,34,26,38,38,26,29,26,34,27,27,34,35,19,18,22,22,18,21,362,361,365,365,361,364,362,365,366,366,365,369,170,169,173,173,169,172,174,170,177,177,170,173,21,18,23,23,18,20,10,9,13,13,9,12,351,350,356,356,350,355,357,351,360,360,351,356,159,163,160,160,163,164,160,164,165,165,164,168,326,330,331,331,330,333,327,326,332,332,326,331,9,11,12,12,11,14,3,2,7,7,2,6,340,339,344,344,339,343,346,340,352,352,340,344,154,150,153,153,150,149,150,154,155,155,154,161,320,314,325,325,314,319,315,314,321,321,314,320,2,4,6,6,4,8,63,52,73,73,52,62,52,63,53,53,63,64,447,448,444,444,448,440,443,444,439,439,444,440,197,196,207,207,196,206,208,197,219,219,197,207,220,208,233,233,208,219,394,395,392,392,395,393,83,74,94,94,74,82,74,83,75,75,83,84,75,84,86,86,84,97,242,243,217,217,243,230,218,217,231,231,217,230,232,218,246,246,218,231,247,232,259,259,232,246,390,391,386,386,391,387,417,411,418,418,411,414,416,411,419,419,411,417,260,272,273,273,272,280,260,273,261,261,273,274,104,103,116,116,103,115,104,116,118,118,116,127,81,70,69,69,70,58,147,142,146,146,142,143,239,228,227,227,228,216,461,462,460,460,462,463,475,476,478,478,476,477,500,501, +503,503,501,502,59,49,48,48,49,40,479,485,480,480,485,486,195,203,205,205,203,214,506,512,507,507,512,513,41,32,31,31,32,24,496,497,491,491,497,492,187,179,193,193,179,185,517,522,518,518,522,523,33,25,32,32,25,24,179,178,185,185,178,184,525,526,522,522,526,523,37,45,28,28,45,36,183,191,192,192,191,202,528,531,529,529,531,532,65,54,55,55,54,44,201,212,213,213,212,226,537,538,540,540,538,539,607,609,611,611,609,612,76,77,55,55,77,65,559,557,560,560,557,558,226,237,213,213,237,238,110,98,109,109,98,87,98,99,87,87,99,88,555,553,556,556,553,554,253,267,254,254,267,268,128,121,120,120,121,111,121,122,111,111,122,112,549,550,552,552,550,551,278,286,279,279,286,287,569,570,568,568,570,571,121,129,122,122,129,130,546,544,547,547,544,543,293,294,286,286,294,287,78,90,66,66,90,79,235,251,225,225,251,236,560,561,559,559,561,562,124,125,102,102,125,114,275,282,262,262,282,283,575,576,574,574,576,577,239,255,228,228,255,240,478,483,475,475,483,484,583,584,586,586,584,585,508,509,503,503,509,500,590,591,589,589,591,592,503,514,508,508,514,515,461,464,462,462,464,465,489,490,484,484,490,475,102,114,93,93,114,103,139,138,142,142,138,143,261,275,249,249,275,262,224,235,211,211,235,225,190,200,201,201,200,212,177,182,183,183,182,191,171,174,179,179,174,178,171,179,186,186,179,187,204,194,205,205,194,195,228,229,216,216,229,215,240,241,228,228,241,229,466,467,462,462,467,463,465,472,462,462,472,466,588,584,587,587,584,583,593,594,589,589,594,590,57,68,58,58,68,69,39,47,40,40,47,48,17,30,24,24,30,31,17,24,20,20,24,25,36,29,28,28,29,23,46,38,54,54,38,44,67,56,79,79,56,66,563,564,560,560,564,561,252,236,264,264,236,265,277,266,284,284,266,276,292,285,295,295,285,291,545,548,543,543,548,547,542,538,541,541,538,537,573,569,572,572,569,568,599,600,598,598,600,601,603,604,602,602,604,605,610,606,611,611,606,607,533,531,530,530,531,528,524,527,522,522,527,525,521,524,517,517,524,522,510,516,506,506,516,512,504,505,500,500,505,501,511,504,509,509,504,500,460,463,468,468,463,469,467,473,463,463,473,469,482,488,478,478,488,483,477,481,478,478, +481,482,493,487,486,486,487,480,497,499,492,492,499,498,145,144,142,142,144,139,147,148,142,142,148,145,581,574,580,580,574,577,65,78,54,54,78,66,77,89,65,65,89,78,99,113,88,88,113,100,122,131,112,112,131,123,130,133,122,122,133,131,543,544,538,538,544,539,542,545,538,538,545,543,292,296,286,286,296,293,292,286,285,285,286,278,277,267,266,266,267,253,236,252,226,226,252,237,225,236,212,212,236,226,200,211,212,212,211,225,66,56,54,54,56,46,614,615,613,613,615,616,618,614,617,617,614,613,619,620,617,617,620,618,621,622,619,619,622,620,234,249,250,250,249,262,102,93,91,91,93,80,595,596,590,590,596,591,594,597,590,590,597,595,494,495,489,489,495,490,471,474,465,465,474,472,464,470,465,465,470,471,514,519,515,515,519,520,531,534,532,532,534,535,536,534,533,533,534,531,191,201,202,202,201,213,182,190,191,191,190,201,44,38,36,36,38,29,55,44,45,45,44,36,33,37,25,25,37,28,525,528,526,526,528,529,530,528,527,527,528,525,178,183,184,184,183,192,174,177,178,178,177,183,28,23,25,25,23,20,49,41,40,40,41,31,512,517,513,513,517,518,516,521,512,512,521,517,187,193,195,195,193,203,186,187,194,194,187,195,498,493,492,492,493,486,485,491,486,486,491,492,30,39,31,31,39,40,70,59,58,58,59,48,501,506,502,502,506,507,505,510,501,501,510,506,227,216,214,214,216,205,204,205,215,215,205,216,480,487,477,477,487,481,476,479,477,477,479,480,47,57,48,48,57,58,88,100,77,77,100,89,87,88,76,76,88,77,605,608,607,607,608,609,606,602,607,607,602,605,237,253,238,238,253,254,252,266,237,237,266,253,266,252,276,276,252,264,557,555,558,558,555,556,112,123,99,99,123,113,111,112,98,98,112,99,120,111,110,110,111,98,279,288,268,268,288,289,267,278,268,268,278,279,277,285,267,267,285,278,285,277,291,291,277,284,553,549,554,554,549,552,578,579,574,574,579,575,581,582,574,574,582,578,275,281,282,282,281,290,274,281,261,261,281,275,114,126,103,103,126,115,132,126,125,125,126,114,399,398,401,401,398,400,403,399,404,404,399,401,209,222,210,210,222,223,210,223,224,224,223,234,235,224,250,250,224,234,251,235,263,263,235,250,564,567,561,561,567,565,561,565,562,562,565, +566,90,101,79,79,101,91,80,67,91,91,67,79,80,71,67,67,71,60,61,60,72,72,60,71,623,624,626,626,624,625,624,627,625,625,627,628,637,638,640,640,638,639,638,641,639,639,641,642,641,643,642,642,643,644,643,645,644,644,645,646,645,647,646,646,647,648,649,650,652,652,650,651,650,653,651,651,653,654,653,655,654,654,655,656,655,657,656,656,657,658,657,659,658,658,659,660,661,662,664,664,662,663,662,665,663,663,665,666,665,667,666,666,667,668,667,669,668,668,669,670,635,633,636,636,633,634,633,631,634,634,631,632,631,629,632,632,629,630,629,623,630,630,623,626,671,672,673,675,671,673,677,675,673,679,677,673,681,679,673,683,681,673,685,683,673,687,685,673,689,687,673,691,689,673,690,691,673,688,690,673,686,688,673,684,686,673,682,684,673,680,682,673,678,680,673,676,678,673,674,676,673,672,674,673,692,693,694,693,695,694,695,697,694,697,699,694,699,701,694,701,703,694,703,705,694,705,707,694,707,709,694,709,711,694,711,712,694,712,710,694,710,708,694,708,706,694,706,704,694,704,702,694,702,700,694,700,698,694,698,696,694,696,692,694,713,714,716,716,714,715,714,717,715,715,717,718,717,721,718,718,721,722,721,725,722,722,725,726,725,729,726,726,729,730,729,733,730,730,733,734,733,737,734,734,737,738,737,741,738,738,741,742,741,745,742,742,745,746,745,749,746,746,749,750,749,751,750,750,751,752,751,747,752,752,747,748,747,743,748,748,743,744,743,739,744,744,739,740,739,735,740,740,735,736,735,731,736,736,731,732,731,727,732,732,727,728,727,723,728,728,723,724,723,719,724,724,719,720,719,713,720,720,713,716,753,754,756,756,754,755,754,757,755,755,757,758,767,768,770,770,768,769,768,771,769,769,771,772,771,773,772,772,773,774,773,775,774,774,775,776,775,777,776,776,777,778,779,780,782,782,780,781,780,783,781,781,783,784,783,785,784,784,785,786,785,787,786,786,787,788,787,789,788,788,789,790,791,792,794,794,792,793,792,795,793,793,795,796,795,797,796,796,797,798,797,799,798,798,799,800,765,763,766,766,763,764,763,761,764,764,761,762,761,759,762,762,759,760,759,753,760,760,753,756,802,803,801,801,803,804,807,808,802,802,808,803,808, +816,803,803,816,809,803,809,804,804,809,810,814,815,807,807,815,808,823,824,814,814,824,815,824,836,815,815,836,825,815,825,808,808,825,816,825,837,816,816,837,826,836,850,825,825,850,837,850,866,837,837,866,851,837,851,826,826,851,838,809,817,810,810,817,818,816,826,809,809,826,817,826,838,817,817,838,827,817,827,818,818,827,828,823,834,824,824,834,835,834,847,835,835,847,848,835,848,849,849,848,864,824,835,836,836,835,849,847,862,848,848,862,863,862,879,863,863,879,880,863,880,881,881,880,898,848,863,864,864,863,881,864,881,882,882,881,899,881,898,899,899,898,912,899,912,913,913,912,924,882,899,900,900,899,913,836,849,850,850,849,865,849,864,865,865,864,882,865,882,883,883,882,900,850,865,866,866,865,883,827,839,828,828,839,840,838,852,827,827,852,839,839,852,853,853,852,868,840,839,854,854,839,853,851,867,838,838,867,852,866,884,851,851,884,867,867,884,885,885,884,902,852,867,868,868,867,885,868,885,886,886,885,903,885,902,903,903,902,916,903,916,917,917,916,928,886,903,904,904,903,917,854,853,870,870,853,869,853,868,869,869,868,886,869,886,887,887,886,904,870,869,888,888,869,887,866,883,884,884,883,901,883,900,901,901,900,914,914,926,901,901,926,915,901,915,884,884,915,902,900,913,914,914,913,925,913,924,925,925,924,934,934,942,925,925,942,935,925,935,914,914,935,926,935,943,926,926,943,936,942,948,935,935,948,943,948,952,943,943,952,949,943,949,936,936,949,944,915,927,902,902,927,916,926,936,915,915,936,927,936,944,927,927,944,937,927,937,916,916,937,928,814,822,823,823,822,833,807,813,814,814,813,822,813,821,822,822,821,832,822,832,833,833,832,845,802,806,807,807,806,813,801,805,802,802,805,806,805,811,806,806,811,812,806,812,813,813,812,821,812,820,821,821,820,831,811,819,812,812,819,820,819,829,820,820,829,830,820,830,831,831,830,843,832,844,845,845,844,859,821,831,832,832,831,844,831,843,844,844,843,858,844,858,859,859,858,875,879,862,897,897,862,878,862,847,878,878,847,861,878,861,896,896,861,877,897,878,911,911,878,896,847,834,861,861,834,846,834,823,846,846,823,833,846,833,860,860,833,845,861,846,877,877, +846,860,877,860,895,895,860,876,860,845,876,876,845,859,876,859,894,894,859,875,895,876,909,909,876,894,911,896,923,923,896,910,896,877,910,910,877,895,910,895,922,922,895,909,923,910,933,933,910,922,858,874,875,875,874,893,843,857,858,858,857,874,857,873,874,874,873,892,874,892,893,893,892,907,830,842,843,843,842,857,829,841,830,830,841,842,841,855,842,842,855,856,842,856,857,857,856,873,856,872,873,873,872,891,855,871,856,856,871,872,871,889,872,872,889,890,872,890,891,891,890,905,892,906,907,907,906,919,873,891,892,892,891,906,891,905,906,906,905,918,906,918,919,919,918,929,933,922,941,941,922,932,922,909,932,932,909,921,932,921,940,940,921,931,941,932,947,947,932,940,909,894,921,921,894,908,894,875,908,908,875,893,908,893,920,920,893,907,921,908,931,931,908,920,931,920,939,939,920,930,920,907,930,930,907,919,930,919,938,938,919,929,939,930,945,945,930,938,947,940,951,951,940,946,940,931,946,946,931,939,946,939,950,950,939,945,951,946,953,953,946,950,955,956,954,954,956,957,956,960,957,957,960,961,959,966,956,956,966,960,958,959,955,955,959,956,960,967,961,961,967,968,967,976,968,968,976,977,975,986,967,967,986,976,966,975,960,960,975,967,974,985,966,966,985,975,985,998,975,975,998,986,997,1012,985,985,1012,998,984,997,974,974,997,985,964,965,958,958,965,959,965,974,959,959,974,966,973,984,965,965,984,974,972,973,964,964,973,965,977,976,988,988,976,987,988,987,1001,1001,987,1000,987,999,1000,1000,999,1014,976,986,987,987,986,999,1001,1000,1016,1016,1000,1015,1016,1015,1033,1033,1015,1032,1015,1031,1032,1032,1031,1048,1000,1014,1015,1015,1014,1031,1014,1030,1031,1031,1030,1047,1031,1047,1048,1048,1047,1063,1047,1062,1063,1063,1062,1075,1030,1046,1047,1047,1046,1062,986,998,999,999,998,1013,999,1013,1014,1014,1013,1030,1013,1029,1030,1030,1029,1046,998,1012,1013,1013,1012,1029,982,983,972,972,983,973,983,996,973,973,996,984,983,995,996,996,995,1010,982,994,983,983,994,995,996,1011,984,984,1011,997,1011,1028,997,997,1028,1012,1011,1027,1028,1028,1027,1044,996,1010,1011,1011,1010,1027,1010,1026,1027,1027,1026,1043, +1027,1043,1044,1044,1043,1059,1043,1058,1059,1059,1058,1071,1026,1042,1043,1043,1042,1058,994,1008,995,995,1008,1009,995,1009,1010,1010,1009,1026,1009,1025,1026,1026,1025,1042,1008,1024,1009,1009,1024,1025,1012,1028,1029,1029,1028,1045,1029,1045,1046,1046,1045,1061,1060,1073,1045,1045,1073,1061,1044,1060,1028,1028,1060,1045,1046,1061,1062,1062,1061,1074,1062,1074,1075,1075,1074,1085,1084,1093,1074,1074,1093,1085,1073,1084,1061,1061,1084,1074,1083,1092,1073,1073,1092,1084,1092,1099,1084,1084,1099,1093,1098,1103,1092,1092,1103,1099,1091,1098,1083,1083,1098,1092,1059,1072,1044,1044,1072,1060,1072,1083,1060,1060,1083,1073,1082,1091,1072,1072,1091,1083,1071,1082,1059,1059,1082,1072,989,978,977,977,978,968,978,969,968,968,969,961,990,979,978,978,979,969,1003,990,989,989,990,978,969,962,961,961,962,957,962,963,957,957,963,954,970,971,962,962,971,963,979,970,969,969,970,962,991,980,979,979,980,970,980,981,970,970,981,971,992,993,980,980,993,981,1005,992,991,991,992,980,1019,1004,1003,1003,1004,990,1004,991,990,990,991,979,1020,1005,1004,1004,1005,991,1037,1020,1019,1019,1020,1004,1033,1049,1016,1016,1049,1034,1016,1034,1001,1001,1034,1017,1034,1050,1017,1017,1050,1035,1049,1064,1034,1034,1064,1050,1001,1017,988,988,1017,1002,988,1002,977,977,1002,989,1002,1018,989,989,1018,1003,1017,1035,1002,1002,1035,1018,1035,1051,1018,1018,1051,1036,1018,1036,1003,1003,1036,1019,1036,1052,1019,1019,1052,1037,1051,1066,1036,1036,1066,1052,1064,1076,1050,1050,1076,1065,1050,1065,1035,1035,1065,1051,1065,1077,1051,1051,1077,1066,1076,1086,1065,1065,1086,1077,1053,1038,1037,1037,1038,1020,1038,1021,1020,1020,1021,1005,1054,1039,1038,1038,1039,1021,1068,1054,1053,1053,1054,1038,1021,1006,1005,1005,1006,992,1006,1007,992,992,1007,993,1022,1023,1006,1006,1023,1007,1039,1022,1021,1021,1022,1006,1055,1040,1039,1039,1040,1022,1040,1041,1022,1022,1041,1023,1056,1057,1040,1040,1057,1041,1070,1056,1055,1055,1056,1040,1080,1069,1068,1068,1069,1054,1069,1055,1054,1054,1055,1039,1081,1070,1069,1069,1070,1055,1090,1081,1080,1080,1081,1069,1086,1094,1077, +1077,1094,1087,1077,1087,1066,1066,1087,1078,1087,1095,1078,1078,1095,1088,1094,1100,1087,1087,1100,1095,1066,1078,1052,1052,1078,1067,1052,1067,1037,1037,1067,1053,1067,1079,1053,1053,1079,1068,1078,1088,1067,1067,1088,1079,1088,1096,1079,1079,1096,1089,1079,1089,1068,1068,1089,1080,1089,1097,1080,1080,1097,1090,1096,1102,1089,1089,1102,1097,1100,1104,1095,1095,1104,1101,1095,1101,1088,1088,1101,1096,1101,1105,1096,1096,1105,1102,1104,1106,1101,1101,1106,1105,1107,1108,1110,1110,1108,1109,1113,1107,1114,1114,1107,1110,1117,1113,1118,1118,1113,1114,1121,1117,1122,1122,1117,1118,1147,1148,1150,1150,1148,1149,1148,1151,1149,1149,1151,1152,1151,1155,1152,1152,1155,1156,1155,1159,1156,1156,1159,1160,1125,1121,1126,1126,1121,1122,1129,1125,1130,1130,1125,1126,1187,1188,1190,1190,1188,1189,1188,1191,1189,1189,1191,1192,1133,1129,1134,1134,1129,1130,1191,1195,1192,1192,1195,1196,1195,1199,1196,1196,1199,1200,1137,1133,1138,1138,1133,1134,1159,1163,1160,1160,1163,1164,1163,1167,1164,1164,1167,1168,1167,1171,1168,1168,1171,1172,1171,1175,1172,1172,1175,1176,1203,1201,1204,1204,1201,1202,1201,1197,1202,1202,1197,1198,1197,1193,1198,1198,1193,1194,1193,1187,1194,1194,1187,1190,1108,1111,1109,1109,1111,1112,1111,1115,1112,1112,1115,1116,1115,1119,1116,1116,1119,1120,1119,1123,1120,1120,1123,1124,1153,1147,1154,1154,1147,1150,1157,1153,1158,1158,1153,1154,1161,1157,1162,1162,1157,1158,1165,1161,1166,1166,1161,1162,1123,1127,1124,1124,1127,1128,1127,1131,1128,1128,1131,1132,1131,1135,1132,1132,1135,1136,1135,1139,1136,1136,1139,1140,1139,1141,1140,1140,1141,1142,1141,1143,1142,1142,1143,1144,1143,1145,1144,1144,1145,1146,1205,1206,1208,1208,1206,1207,1169,1165,1170,1170,1165,1166,1173,1169,1174,1174,1169,1170,1206,1209,1207,1207,1209,1210,1185,1183,1186,1186,1183,1184,1177,1173,1178,1178,1173,1174,1183,1181,1184,1184,1181,1182,1181,1179,1182,1182,1179,1180,1179,1177,1180,1180,1177,1178 + } + } + LayerElementUV: 1 { + Version: 101 + Name: "map11" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *830 { + a: 0,0,0.116758249700069,0.1640625,0.116758249700069,0.171875,0,0.125,0.233516499400139,0.216796875,0.233516484498978,0.20703125,0.233516529202461,0.2705078125,0.116758242249489,0.26171875,0,0.25,0.350274741649628,0.234375,0.350274741649628,0.21875,0.467032998800278,0.234375,0.467032968997955,0.21875,0.467033088207245,0.2734375,0.350274741649628,0.2734375,0.350274741649628,0.375,0.233516484498978,0.375,0.4670330286026,0.375,0.467033118009567,0.5,0.35027477145195,0.5,0.233516544103622,0.5,0.116758242249489,0.375,0,0.375,0.116758242249489,0.5,0,0.5,0.583791255950928,0.234375,0.583791255950928,0.21875,0.700549483299255,0.216796875,0.700549423694611,0.20703125,0.700549602508545,0.2705078125,0.583791255950928,0.2734375,0.817307710647583,0.1640625,0.817307710647583,0.171875,0.934065997600555,0,0.934065997600555,0.125,0.934065997600555,0.25,0.817307651042938,0.26171875,0.817307710647583,0.375,0.700549483299255,0.375,0.934065997600555,0.375,0.934065997600555,0.5,0.817307651042938,0.5,0.70054966211319,0.5,0.583791255950928,0.375,0.583791255950928,0.5,0.116758242249489,0.625,0,0.625,0.233516484498978,0.625,0.233516529202461,0.75,0.116758242249489,0.75,0,0.75,0.350274741649628,0.625,0.4670330286026,0.625,0.467033088207245,0.75,0.350274741649628,0.75,0.350274741649628,0.875,0.233516484498978,0.875,0.467032968997955,0.875,0.467032998800278,1,0.350274741649628,1,0.233516499400139,1,0.116758249700069,0.875,0,0.875,0.116758249700069,1,0,1,0.583791255950928,0.625,0.700549423694611,0.625,0.700549602508545,0.75,0.583791255950928,0.75,0.817307710647583,0.625,0.934065997600555,0.625,0.934065997600555,0.75,0.817307651042938,0.75,0.817307710647583,0.875,0.700549483299255,0.875,0.934065997600555,0.875,0.934065997600555,1,0.817307710647583,1,0.700549483299255,1,0.583791255950928,0.875,0.583791255950928,1,0,0.234375,0.25,0.234375,0.25,0.34375,0,0.34375,0.5,0.216796875,0.5,0.33203125,0.5,0.5205078125,0.25,0.5234375,0,0.5234375,0.75,0.1640625,0.75,0.296875,1,0,1,0.25,1,0.5,0.75,0.51171875,0.75,0.75,0.5,0.75,1,0.75,1,1,0.75, +1,0.5,1,0.25,0.75,0,0.75,0.25,1,0,1,0,0,0.25,0.1640625,0.25,0.296875,0,0.25,0.5,0.216796875,0.5,0.33203125,0.5,0.5205078125,0.25,0.51171875,0,0.5,0.75,0.234375,0.75,0.34375,1,0.234375,1,0.34375,1,0.5234375,0.75,0.5234375,0.75,0.75,0.5,0.75,1,0.75,1,1,0.75,1,0.5,1,0.25,0.75,0,0.75,0.25,1,0,1,0,0,0.25,0,0.25,0.25,0,0.25,0.5,0,0.5,0.25,0.5,0.5,0.25,0.5,0,0.5,0.75,0,0.75,0.25,1,0,1,0.25,1,0.5,0.75,0.5,0.75,0.75,0.5,0.75,1,0.75,1,1,0.75,1,0.5,1,0.25,0.75,0,0.75,0.25,1,0,1,0,0,0.25,0,0.25,0.25,0,0.25,0.5,0,0.5,0.25,0.5,0.5,0.25,0.5,0,0.5,0.75,0,0.75,0.25,1,0,1,0.25,1,0.5,0.75,0.5,0.75,0.75,0.5,0.75,1,0.75,1,1,0.75,1,0.5,1,0.25,0.75,0,0.75,0.25,1,0,1,0,0,0,0.125,0.116758249700069,0.171875,0.116758249700069,0.1640625,0.233516484498978,0.20703125,0.233516499400139,0.216796875,0.116758242249489,0.26171875,0.233516529202461,0.2705078125,0,0.25,0.350274741649628,0.21875,0.350274741649628,0.234375,0.467032968997955,0.21875,0.467032998800278,0.234375,0.350274741649628,0.2734375,0.467033088207245,0.2734375,0.233516484498978,0.375,0.350274741649628,0.375,0.4670330286026,0.375,0.35027477145195,0.5,0.467033118009567,0.5,0.233516544103622,0.5,0,0.375,0.116758242249489,0.375,0.116758242249489,0.5,0,0.5,0.583791255950928,0.21875,0.583791255950928,0.234375,0.700549423694611,0.20703125,0.700549483299255,0.216796875,0.583791255950928,0.2734375,0.700549602508545,0.2705078125,0.817307710647583,0.171875,0.817307710647583,0.1640625,0.934065997600555,0.125,0.934065997600555,0,0.817307651042938,0.26171875,0.934065997600555,0.25,0.700549483299255,0.375,0.817307710647583,0.375,0.934065997600555,0.375,0.817307651042938,0.5,0.934065997600555,0.5,0.70054966211319,0.5,0.583791255950928,0.375,0.583791255950928,0.5,0,0.625,0.116758242249489,0.625,0.233516484498978,0.625,0.116758242249489,0.75,0.233516529202461,0.75,0,0.75,0.350274741649628,0.625,0.4670330286026,0.625,0.350274741649628,0.75,0.467033088207245,0.75,0.233516484498978,0.875,0.350274741649628,0.875,0.467032968997955,0.875,0.350274741649628,1,0.467032998800278,1,0.233516499400139,1,0,0.875,0.116758249700069, +0.875,0.116758249700069,1,0,1,0.583791255950928,0.625,0.700549423694611,0.625,0.583791255950928,0.75,0.700549602508545,0.75,0.817307710647583,0.625,0.934065997600555,0.625,0.817307651042938,0.75,0.934065997600555,0.75,0.700549483299255,0.875,0.817307710647583,0.875,0.934065997600555,0.875,0.817307710647583,1,0.934065997600555,1,0.700549483299255,1,0.583791255950928,0.875,0.583791255950928,1,0,0.234375,0,0.34375,0.25,0.34375,0.25,0.234375,0.5,0.33203125,0.5,0.216796875,0.25,0.5234375,0.5,0.5205078125,0,0.5234375,0.75,0.296875,0.75,0.1640625,1,0.25,1,0,0.75,0.51171875,1,0.5,0.5,0.75,0.75,0.75,1,0.75,0.75,1,1,1,0.5,1,0,0.75,0.25,0.75,0.25,1,0,1,0,0,0,0.25,0.25,0.296875,0.25,0.1640625,0.5,0.33203125,0.5,0.216796875,0.25,0.51171875,0.5,0.5205078125,0,0.5,0.75,0.34375,0.75,0.234375,1,0.34375,1,0.234375,0.75,0.5234375,1,0.5234375,0.5,0.75,0.75,0.75,1,0.75,0.75,1,1,1,0.5,1,0,0.75,0.25,0.75,0.25,1,0,1,0,0,0,0.25,0.25,0.25,0.25,0,0.5,0.25,0.5,0,0.25,0.5,0.5,0.5,0,0.5,0.75,0.25,0.75,0,1,0.25,1,0,0.75,0.5,1,0.5,0.5,0.75,0.75,0.75,1,0.75,0.75,1,1,1,0.5,1,0,0.75,0.25,0.75,0.25,1,0,1,0,0,0,0.25,0.25,0.25,0.25,0,0.5,0.25,0.5,0,0.25,0.5,0.5,0.5,0,0.5,0.75,0.25,0.75,0,1,0.25,1,0,0.75,0.5,1,0.5,0.5,0.75,0.75,0.75,1,0.75,0.75,1,1,1,0.5,1,0,0.75,0.25,0.75,0.25,1,0,1,0,0.125,0,0,0,0.25,0,0.375,0,0.5,0.934065997600555,0,0.934065997600555,0.125,0.934065997600555,0.25,0.934065997600555,0.375,0.934065997600555,0.5,0,0.625,0,0.75,0.467032998800278,1,0.350274741649628,1,0.233516499400139,1,0,0.875,0.116758249700069,1,0,1,0.934065997600555,0.625,0.934065997600555,0.75,0.934065997600555,0.875,0.934065997600555,1,0.817307710647583,1,0.700549483299255,1,0.583791255950928,1,1,0,1,0.25,1,0.5,1,0.75,1,1,0,0.25,0,0,0,0.5,0,0.75,0,1,1,0,1,0.25,1,0.5,1,0.75,1,1,0.75,1,0.5,1,0.25,1,0,1,0,0.25,0,0,0,0.5,1,1,0.75,1,0.5,1,0,0.75,0.25,1,0,1 + } + UVIndex: *4488 { + 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,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1, +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,2,0,0,2,3,4,5,1,1,5,2,5,6,2,2,6,7,2,7,3,3,7,8,9,10,4,4,10,5,11,12,9,9,12,10,12,13,10,10,13,14,10,14,5,5,14,6,14,15,6,6,15,16,13,17,14,14,17,15,17,18,15,15,18,19,15,19,16,16,19,20, +7,21,8,8,21,22,6,16,7,7,16,21,16,20,21,21,20,23,21,23,22,22,23,24,11,25,12,12,25,26,25,27,26,26,27,28,26,28,30,30,28,29,12,26,13,13,26,30,27,31,28,28,31,32,31,33,32,32,33,34,32,34,36,36,34,35,28,32,29,29,32,36,29,36,38,38,36,37,36,35,37,37,35,39,37,39,41,41,39,40,38,37,42,42,37,41,13,30,17,17,30,43,30,29,43,43,29,38,43,38,44,44,38,42,17,43,18,18,43,44,23,45,24,24,45,46,20,47,23,23,47,45,45,47,49,49,47,48,46,45,50,50,45,49,19,51,20,20,51,47,18,52,19,19,52,51,51,52,54,54,52,53,47,51,48,48,51,54,48,54,56,56,54,55,54,53,55,55,53,57,55,57,59,59,57,58,56,55,60,60,55,59,50,49,62,62,49,61,49,48,61,61,48,56,61,56,63,63,56,60,62,61,64,64,61,63,18,44,52,52,44,65,44,42,65,65,42,66,66,67,65,65,67,68,65,68,52,52,68,53,42,41,66,66,41,69,41,40,69,69,40,70,70,71,69,69,71,72,69,72,66,66,72,67,72,73,67,67,73,74,71,75,72,72,75,73,75,76,73,73,76,77,73,77,74,74,77,78,68,79,53,53,79,57,67,74,68,68,74,79,74,78,79,79,78,80,79,80,57,57,80,58,82,83,81,81,83,84,85,86,82,82,86,83,86,87,83,83,87,88,83,88,84,84,88,89,90,91,85,85,91,86,92,93,90,90,93,91,93,94,91,91,94,95,91,95,86,86,95,87,95,96,87,87,96,97,94,98,95,95,98,96,98,99,96,96,99,100,96,100,97,97,100,101,88,102,89,89,102,103,87,97,88,88,97,102,97,101,102,102,101,104,102,104,103,103,104,105,106,107,109,109,107,108,107,110,108,108,110,111,108,111,113,113,111,112,109,108,114,114,108,113,110,115,111,111,115,116,115,117,116,116,117,118,116,118,120,120,118,119,111,116,112,112,116,120,112,120,122,122,120,121,120,119,121,121,119,123,121,123,125,125,123,124,122,121,126,126,121,125,114,113,128,128,113,127,113,112,127,127,112,122,127,122,129,129,122,126,128,127,130,130,127,129,132,133,131,131,133,134,135,136,132,132,136,133,136,137,133,133,137,138,133,138,134,134,138,139,140,141,135,135,141,136,142,143,140,140,143,141,143,144,141,141,144,145,141,145,136,136,145,137,145,146,137,137,146,147,144,148,145,145,148,146,148,149,146,146,149,150,146,150,147,147,150,151,138,152,139,139,152,153,137,147,138,138,147,152,147,151,152,152,151,154,152,154,153,153,154,155,156,157,159,159,157,158,157,160,158,158,160, +161,158,161,163,163,161,162,159,158,164,164,158,163,160,165,161,161,165,166,165,167,166,166,167,168,166,168,170,170,168,169,161,166,162,162,166,170,162,170,172,172,170,171,170,169,171,171,169,173,171,173,175,175,173,174,172,171,176,176,171,175,164,163,178,178,163,177,163,162,177,177,162,172,177,172,179,179,172,176,178,177,180,180,177,179,182,183,181,181,183,184,183,185,184,184,185,186,187,188,183,183,188,185,189,187,182,182,187,183,185,190,186,186,190,191,190,192,191,191,192,193,194,195,190,190,195,192,188,194,185,185,194,190,196,197,188,188,197,194,197,198,194,194,198,195,199,200,197,197,200,198,201,199,196,196,199,197,202,203,189,189,203,187,203,196,187,187,196,188,204,201,203,203,201,196,205,204,202,202,204,203,193,192,207,207,192,206,207,206,209,209,206,208,206,210,208,208,210,211,192,195,206,206,195,210,209,208,213,213,208,212,213,212,215,215,212,214,212,216,214,214,216,217,208,211,212,212,211,216,211,218,216,216,218,219,216,219,217,217,219,220,219,221,220,220,221,222,218,223,219,219,223,221,195,198,210,210,198,224,210,224,211,211,224,218,224,225,218,218,225,223,198,200,224,224,200,225,226,227,205,205,227,204,227,228,204,204,228,201,227,229,228,228,229,230,226,231,227,227,231,229,228,232,201,201,232,199,232,233,199,199,233,200,232,234,233,233,234,235,228,230,232,232,230,234,230,236,234,234,236,237,234,237,235,235,237,238,237,239,238,238,239,240,236,241,237,237,241,239,231,242,229,229,242,243,229,243,230,230,243,236,243,244,236,236,244,241,242,245,243,243,245,244,200,233,225,225,233,246,225,246,223,223,246,247,248,249,246,246,249,247,235,248,233,233,248,246,223,247,221,221,247,250,221,250,222,222,250,251,252,253,250,250,253,251,249,252,247,247,252,250,254,255,249,249,255,252,255,256,252,252,256,253,257,258,255,255,258,256,259,257,254,254,257,255,238,260,235,235,260,248,260,254,248,248,254,249,261,259,260,260,259,254,240,261,238,238,261,260,263,264,262,262,264,265,264,266,265,265,266,267,268,269,264,264,269,266,270,268,263,263,268,264,266,271,267,267,271,272,271,273,272,272,273,274,275,276,271,271,276,273,269,275, +266,266,275,271,277,278,269,269,278,275,278,279,275,275,279,276,280,281,278,278,281,279,282,280,277,277,280,278,283,284,270,270,284,268,284,277,268,268,277,269,285,282,284,284,282,277,286,285,283,283,285,284,287,288,290,290,288,289,290,289,292,292,289,291,289,293,291,291,293,294,288,295,289,289,295,293,292,291,297,297,291,296,297,296,299,299,296,298,296,300,298,298,300,301,291,294,296,296,294,300,294,302,300,300,302,303,300,303,301,301,303,304,303,305,304,304,305,306,302,307,303,303,307,305,295,308,293,293,308,309,293,309,294,294,309,302,309,310,302,302,310,307,308,311,309,309,311,310,313,314,312,312,314,315,314,316,315,315,316,317,318,319,314,314,319,316,320,318,313,313,318,314,316,321,317,317,321,322,321,323,322,322,323,324,325,326,321,321,326,323,319,325,316,316,325,321,327,328,319,319,328,325,328,329,325,325,329,326,330,331,328,328,331,329,332,330,327,327,330,328,333,334,320,320,334,318,334,327,318,318,327,319,335,332,334,334,332,327,336,335,333,333,335,334,337,338,340,340,338,339,340,339,342,342,339,341,339,343,341,341,343,344,338,345,339,339,345,343,342,341,347,347,341,346,347,346,349,349,346,348,346,350,348,348,350,351,341,344,346,346,344,350,344,352,350,350,352,353,350,353,351,351,353,354,353,355,354,354,355,356,352,357,353,353,357,355,345,358,343,343,358,359,343,359,344,344,359,352,359,360,352,352,360,357,358,361,359,359,361,360,362,363,3,3,363,0,364,362,8,8,362,3,365,364,22,22,364,8,366,365,24,24,365,22,367,368,33,33,368,34,368,369,34,34,369,35,369,370,35,35,370,39,370,371,39,39,371,40,372,366,46,46,366,24,373,372,50,50,372,46,374,375,58,58,375,59,375,376,59,59,376,60,377,373,62,62,373,50,376,378,60,60,378,63,378,379,63,63,379,64,379,377,64,64,377,62,371,380,40,40,380,70,380,381,70,70,381,71,381,382,71,71,382,75,382,383,75,75,383,76,383,384,76,76,384,77,384,385,77,77,385,78,385,386,78,78,386,80,386,374,80,80,374,58,387,388,92,92,388,93,388,389,93,93,389,94,389,390,94,94,390,98,390,391,98,98,391,99,392,393,109,109,393,106,394,392,114,114,392,109,395,394,128,128,394,114,396,395,130,130,395,128,397,398,142, +142,398,143,398,399,143,143,399,144,399,400,144,144,400,148,400,401,148,148,401,149,401,402,149,149,402,150,402,403,150,150,403,151,403,404,151,151,404,154,404,405,154,154,405,155,406,407,159,159,407,156,408,406,164,164,406,159,409,410,174,174,410,175,410,411,175,175,411,176,412,408,178,178,408,164,411,413,176,176,413,179,413,414,179,179,414,180,414,412,180,180,412,178 + } + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: *2244 { + a: 0,1,1,1,0,0,1,1,0,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,0,1,0,1,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,0,1,0,1,1,0,1,1,1,0,1,1,1,0,1,0,1,0,1,1,0,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,0,1,0,1,1,1,1,0,1,1,1,0,1,1,1,0,1,0,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,0,1,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,0,0,1,1,0,0,1,1,0,0,1,0,1,0,1,1,0,0,1,0,0,1,1,0,1,0,1,1,0,1,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,0,1,0,1,0,1,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,0,1,0,1,1,1,0,1,0,1,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,0,1,1,0,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,0,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,0,1,1,1,1,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,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,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,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,0,1,0,0,1,0,1,1,0,1,1,1,1,1,1,0,1,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,0,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *1496 { + 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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementSmoothing" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + Layer: 1 { + Version: 100 + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 1 + } + } + } + NodeAttribute: 140263206812448, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",37.1181158608786 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263218634784, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",38.014039735327 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263218674992, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",38.014039735327 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263209309376, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",32.6724174599509 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263218656400, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",29.3905538339584 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263209618560, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",31.4512923050161 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263218680992, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",31.4512923050161 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263218618416, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",32.6724174599509 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263218621296, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",29.3905538339584 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263218652384, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",31.4512923050161 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263218626176, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",31.4512923050161 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263209025344, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",54.9860143661267 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263212244432, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",54.9860143661267 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263212432592, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",30.9635793891986 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263218226384, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",33.9114527094548 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263217625536, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",33.9114527094548 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263213044496, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",16.6666666666667 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263213099200, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",30.9635793891986 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263218346160, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",33.9114527094548 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263217853008, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",33.9114527094548 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263212727344, "NodeAttribute::", "LimbNode" { + Properties70: { + P: "Size", "double", "Number", "",16.6666666666667 + } + TypeFlags: "Skeleton" + } + NodeAttribute: 140263694442496, "NodeAttribute::bottom", "Camera" { + Properties70: { + P: "Position", "Vector", "", "A",0,-100.1,0 + P: "UpVector", "Vector", "", "A",0,2.22044604925031e-16,1 + P: "InterestPosition", "Vector", "", "A",0,2.8421709430404e-14,-2.22266649529956e-14 + P: "BackgroundColor", "Color", "", "A",0,0,0 + P: "AspectWidth", "double", "Number", "",960 + P: "AspectHeight", "double", "Number", "",540 + P: "FilmWidth", "double", "Number", "",1.41732 + P: "FilmHeight", "double", "Number", "",0.94488 + P: "FilmAspectRatio", "double", "Number", "",1.5 + P: "ApertureMode", "enum", "", "",3 + P: "GateFit", "enum", "", "",2 + P: "FocalLength", "Number", "", "A",35 + P: "NearPlane", "double", "Number", "",0.1 + P: "FarPlane", "double", "Number", "",10000 + P: "AutoComputeClipPanes", "bool", "", "",1 + P: "CameraProjectionType", "enum", "", "",1 + P: "FocusDistance", "double", "Number", "",5 + } + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0,-100.1,0 + Up: 0,2.22044604925031e-16,1 + LookAt: 0,2.8421709430404e-14,-2.22266649529956e-14 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Geometry: 140263217850480, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: -7.25666061252283,31.2525629713602,-5.64900664208432,1,1.18932461049596e-15,31.4661966396391,-8.65611616071856,1,7.25666061252282,31.6798303079181,-5.64900664208432,1,10.2624678557684,31.7683202706987,1.61079794134369,1,7.25666061252283,31.6798303079181,8.87060252477171,1,3.07378211159403e-15,31.4661966396391,11.877712043406,1,-7.25666061252282,31.2525629713602,8.87060252477171,1,-10.2624678557684,31.1640730085796,1.6107979413437,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263223012640, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: -8.28118008967363,34.6034221528079,-5.24033319554123,1,-10.5169129441403,41.5103940792762,-8.24744271417548,1,-12.7526457986069,48.4173660057444,-5.24033319554124,1,-13.6787166687701,51.2783274526178,2.01947138788678,1,-12.7526457986069,48.4173660057444,9.27927597131479,1,-10.5169129441403,41.5103940792762,12.286385489949,1,-8.28118008967364,34.6034221528079,9.2792759713148,1,-7.35510921951045,31.7424607059345,2.01947138788678,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263223017056, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: -14.6790925737562,29.0013976438842,-6.1274323530567,1,-18.5779005325745,35.1254534151698,-9.13454187169094,1,-22.4767084913929,41.2495091864555,-6.1274323530567,1,-24.0916476250236,43.7861761436512,1.13237223037131,1,-22.4767084913929,41.2495091864555,8.39217681379933,1,-18.5779005325745,35.1254534151698,11.3992863324336,1,-14.6790925737562,29.0013976438842,8.39217681379933,1,-13.0641534401255,26.4647306866884,1.13237223037132,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263223018064, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: -20.5661357598203,23.980882233533,-4.65277680607327,1,-25.0401076395946,29.6982538506794,-7.65988632470752,1,-29.5140795193688,35.4156254678259,-4.65277680607328,1,-31.3672593496472,37.7838383327749,2.60702777735474,1,-29.5140795193688,35.4156254678259,9.86683236078276,1,-25.0401076395946,29.6982538506794,12.873941879417,1,-20.5661357598203,23.980882233533,9.86683236078276,1,-18.712955929542,21.6126693685839,2.60702777735475,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263212622656, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: 9.28051838617013,34.3566511160549,-5.24033458342801,1,10.5169,41.5104,-8.24744410206226,1,11.7532816138299,48.6641488839451,-5.24033458342802,1,12.2654076465469,51.6273286934866,2.01947,1,11.7532816138299,48.6641488839451,9.27927458342802,1,10.5169,41.5104,12.2863841020623,1,9.28051838617013,34.3566511160549,9.27927458342802,1,8.76839235345307,31.3934713065134,2.01947000000001,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263212325120, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: 15.3445844036232,28.6254667044092,-6.12743458342801,1,18.5779,35.1255,-9.13454410206226,1,21.8112155963768,41.6255332955908,-6.12743458342802,1,23.1504987678286,44.3179352425012,1.13237,1,21.8112155963768,41.6255332955908,8.39217458342802,1,18.5779,35.1255,11.3992841020623,1,15.3445844036232,28.6254667044092,8.39217458342802,1,14.0053012321714,25.9330647574988,1.13237000000001,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263213083760, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: 20.9604049621208,23.6932312254174,-4.65277458342801,1,25.0401,29.6983,-7.65988410206226,1,29.1197950378792,35.7033687745826,-4.65277458342802,1,30.8096600529149,38.1907497039978,2.60703,1,29.1197950378792,35.7033687745826,9.86683458342801,1,25.0401,29.6983,12.8739441020623,1,20.9604049621208,23.6932312254174,9.86683458342802,1,19.2705399470851,21.2058502960021,2.60703,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263208688320, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: -7.31823321918895,48.7192539330208,-5.25698111901031,1,-0.0615726066661219,48.9328876012998,-8.26409063764456,1,7.1950880058567,49.1465212695787,-5.25698111901031,1,10.2008952491023,49.2350112323594,2.0028234644177,1,7.1950880058567,49.1465212695787,9.26262804784572,1,-0.06157260666612,48.9328876012998,12.26973756648,1,-7.31823321918894,48.7192539330208,9.26262804784572,1,-10.3240404624346,48.6307639702402,2.00282346441771,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263212645984, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: -14.2268402629884,18.1280787892138,-5.78206361752313,1,-6.97017965046555,18.3417124574927,-8.78917313615738,1,0.286480962057271,18.5553461257716,-5.78206361752314,1,3.29228820530288,18.6438360885523,1.47774096590488,1,0.286480962057273,18.5553461257716,8.7375455493329,1,-6.97017965046555,18.3417124574927,11.7446550679671,1,-14.2268402629884,18.1280787892138,8.7375455493329,1,-17.232647506234,18.0395888264331,1.47774096590489,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263208765824, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: -14.2268402629884,7.79514195968959,-4.7549833689247,1,-6.97017965046555,8.00877562796853,-7.76209288755895,1,0.28648096205727,8.22240929624746,-4.75498336892471,1,3.29228820530288,8.31089925902811,2.50482121450331,1,0.286480962057272,8.22240929624746,9.76462579793133,1,-6.97017965046555,8.00877562796853,12.7717353165656,1,-14.2268402629884,7.79514195968959,9.76462579793133,1,-17.232647506234,7.70665199690894,2.50482121450332,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263217485488, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: -14.2268402629884,-2.16610649467186,-6.26487706349996,1,-6.97017965046555,-1.95247282639292,-9.27198658213421,1,0.286480962057274,-1.73883915811399,-6.26487706349996,1,3.29228820530288,-1.65034919533334,0.994927519928049,1,0.286480962057276,-1.73883915811399,8.25473210335607,1,-6.97017965046555,-1.95247282639292,11.2618416219903,1,-14.2268402629884,-2.16610649467186,8.25473210335607,1,-17.232647506234,-2.25459645745251,0.994927519928057,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263212998576, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: -0.286480612522831,18.1280663317211,-5.78206458342801,1,6.97018,18.3417,-8.78917410206226,1,14.2268406125228,18.5553336682789,-5.78206458342802,1,17.2326478557684,18.6438236310596,1.47774,1,14.2268406125228,18.5553336682789,8.73754458342801,1,6.97018,18.3417,11.7446541020623,1,-0.286480612522819,18.1280663317211,8.73754458342802,1,-3.29228785576843,18.0395763689404,1.47774000000001,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263212636096, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: -0.286480612522831,7.79514633172107,-4.75498458342801,1,6.97018,8.00878,-7.76209410206226,1,14.2268406125228,8.22241366827894,-4.75498458342802,1,17.2326478557684,8.31090363105959,2.50482,1,14.2268406125228,8.22241366827894,9.76462458342802,1,6.97018,8.00878,12.7717341020623,1,-0.286480612522819,7.79514633172107,9.76462458342802,1,-3.29228785576843,7.70665636894042,2.50482000000001,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Geometry: 140263212641648, "Geometry::", "NurbsCurve" { + GeometryVersion: 124 + Type: "NurbsCurve" + NurbsCurveVersion: 100 + Order: 4 + Dimension: 3 + Form: "Periodic" + Rational: 0 + Points: *32 { + a: -0.286480612522833,-2.16610366827894,-6.26487658342801,1,6.97018,-1.95247,-9.27198610206226,1,14.2268406125228,-1.73883633172107,-6.26487658342802,1,17.2326478557684,-1.65034636894042,0.994927999999997,1,14.2268406125228,-1.73883633172106,8.25473258342802,1,6.97018,-1.95247,11.2618421020623,1,-0.286480612522821,-2.16610366827893,8.25473258342802,1,-3.29228785576843,-2.25459363105958,0.994928000000006,1 + } + KnotVector: *15 { + a: -3,-2,-1,0,1,2,3,4,5,6,7,8,9,10,11 + } + } + Model: 140263460708352, "Model::left", "Camera" { + Version: 232 + Properties70: { + P: "PostRotation", "Vector3D", "Vector", "",0,-90,0 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",-100.1,28.9816517603175,1.18633139355766 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,-90,0 + P: "Visibility", "Visibility", "", "A",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694215680, "Model::pCube4", "Mesh" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "AL7",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "AL7",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "AL7",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Model: 140263591793664, "Model::joint1", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-6.16297582203915e-32,18.1669210438599,1.6107979413437 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,90 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263656025088, "Model::joint2", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",13.2992755957793,2.95303239545392e-15,0 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263655555072, "Model::joint3", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",12.6229187014955,8.90550006284658e-31,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,-90 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263593026560, "Model::joint4", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-10.5169129441403,-2.57872126185848,0.408673446543083 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-25.1324598336974,208.20018217294,69.7807747573361 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263593032704, "Model::joint5", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",10.2833354601049,-4.68168380665176e-15,0.88709915751546 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",13.2542937377157,24.4742439031339,9.61687346064374 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263654427648, "Model::joint6", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",8.43872689782861,0.0500414896794807,-1.47465554698342 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-1.28192078162372,33.8275498619728,4.6845678959859 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263654432256, "Model::joint7", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",9.5750828702427,9.05941988094128e-14,-1.17218269368983e-15 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,180,39.928 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263654438400, "Model::joint14", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",10.5169,-2.57871534113465,0.408672058656304 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",12.7259165318994,-33.2090738490162,122.949925280128 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263654255616, "Model::joint15", "LimbNode" { + Version: 232 + Properties70: { + P: "PreRotation", "Vector3D", "Vector", "",1.47877933359243e-06,0,0 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-10.283319940974,-3.95824845824677e-05,-0.8871 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",3.29145516947993,32.9614652108254,-26.5438907896113 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263654260224, "Model::joint16", "LimbNode" { + Version: 232 + Properties70: { + P: "PreRotation", "Vector3D", "Vector", "",2.2589156907759e-06,-0,0 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-8.43872176476769,-0.0500365169369275,1.47466000129142 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",1.47880199058779e-06,1.72157516957459e-08,0.436669445610624 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263654266368, "Model::joint17", "LimbNode" { + Version: 232 + Properties70: { + P: "PreRotation", "Vector3D", "Vector", "",2.53311926572749e-06,0,0 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",-9.57515757814447,6.0848124377344e-05,1.87947479801664e-09 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,180,39.928 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263470197248, "Model::joint8", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-0.0615726066661259,4.84377226016513,0.392025523074009 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",4.96840587988316e-15,-16.2122624824406,90 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263470199808, "Model::joint9", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",23.2252216656868,5.16397406295761e-15,0 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263471538176, "Model::joint10", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0.174791413632857,6.97017965046555,-0.133056975438815 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",1.29802123993536e-14,37.6853984526463,180 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694239744, "Model::joint11", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",10.3329368295242,-4.07072971542725e-15,1.02708024859843 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",9.0754819163185e-15,30.5788142773509,9.0754819163185e-15 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263471540736, "Model::joint12", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",9.96124845436145,4.52693781491609e-16,-1.50989369457526 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-26.8186235688724,0,90 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263471848448, "Model::joint13", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",-0.188053598160623,-0.372455547387736,14.5592109315801 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263471853056, "Model::joint18", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0.174778956140141,-6.97018,-0.133057941343696 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-180,22.2001861887618,3.30679327708753e-16 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694421504, "Model::joint19", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-10.33292,1.77635683940025e-15,-1.02708 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",9.41261086315571e-15,14.8554739636778,-1.16027596106472e-14 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694427648, "Model::joint20", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-9.96125,8.88178419700125e-16,1.509892 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",7.72014889128425,7.95138670365879e-16,90 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694433792, "Model::joint21", "LimbNode" { + Version: 232 + Properties70: { + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",2 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0.18805,0.37246,-14.559172 + P: "lockInfluenceWeights", "Bool", "", "A+U",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694439936, "Model::bottom", "Camera" { + Version: 232 + Properties70: { + P: "PostRotation", "Vector3D", "Vector", "",0,-90,0 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,-100.1,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",90,-0,0 + P: "Visibility", "Visibility", "", "A",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694448128, "Model::nurbsCircle8", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",-2.42821247388343e-30,31.4661966396391,1.6107979413437 + P: "ScalingPivot", "Vector3D", "Vector", "",-2.42821247388343e-30,31.4661966396391,1.6107979413437 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694455808, "Model::nurbsCircle1", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",-10.5169129441403,41.5103940792762,2.01947138788678 + P: "ScalingPivot", "Vector3D", "Vector", "",-10.5169129441403,41.5103940792762,2.01947138788678 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,37.0730448312694,24.9893668427472 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694461952, "Model::nurbsCircle2", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",-18.5779005325745,35.1254534151698,1.13237223037132 + P: "ScalingPivot", "Vector3D", "Vector", "",-18.5779005325745,35.1254534151698,1.13237223037132 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-25.7498612798811,10.3996371898307,-11.0957000739183 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694468096, "Model::nurbsCircle3", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",-25.0401076395946,29.6982538506794,2.60702777735474 + P: "ScalingPivot", "Vector3D", "Vector", "",-25.0401076395946,29.6982538506794,2.60702777735474 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-22.4434318177934,26.0293462368022,-9.88894134373056 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694474240, "Model::nurbsCircle4", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",10.5169,41.5104,2.01947 + P: "ScalingPivot", "Vector3D", "Vector", "",10.5169,41.5104,2.01947 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",13.4769580635899,32.9406818774497,-10.8576141446904 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694482432, "Model::nurbsCircle5", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",18.5779,35.1255,1.13237 + P: "ScalingPivot", "Vector3D", "Vector", "",18.5779,35.1255,1.13237 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-24.9140139271498,-22.5415057150611,-20.4938076908625 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694488576, "Model::nurbsCircle6", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",25.0401,29.6983,2.60703 + P: "ScalingPivot", "Vector3D", "Vector", "",25.0401,29.6983,2.60703 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694494720, "Model::nurbsCircle7", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",-0.0615726066661231,48.9328876012998,2.00282346441771 + P: "ScalingPivot", "Vector3D", "Vector", "",-0.0615726066661231,48.9328876012998,2.00282346441771 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",16.2122624824406,0,0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694500864, "Model::nurbsCircle9", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",-6.97017965046555,18.3417124574927,1.47774096590488 + P: "ScalingPivot", "Vector3D", "Vector", "",-6.97017965046555,18.3417124574927,1.47774096590488 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",37.6853984526463,0,0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694507008, "Model::nurbsCircle14", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",-6.97017965046555,8.00877562796853,2.50482121450331 + P: "ScalingPivot", "Vector3D", "Vector", "",-6.97017965046555,8.00877562796853,2.50482121450331 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",30.5788142773509,0,0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694513152, "Model::nurbsCircle13", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",-6.97017965046555,-1.95247282639292,0.994927519928052 + P: "ScalingPivot", "Vector3D", "Vector", "",-6.97017965046555,-1.95247282639292,0.994927519928052 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-26.8186235688724,0,0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694519296, "Model::nurbsCircle10", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",6.97018,18.3417,1.47774 + P: "ScalingPivot", "Vector3D", "Vector", "",6.97018,18.3417,1.47774 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",-22.2001861887618,0,0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694525440, "Model::nurbsCircle11", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",6.97018,8.00878,2.50482 + P: "ScalingPivot", "Vector3D", "Vector", "",6.97018,8.00878,2.50482 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",14.8554739636778,0,0 + } + Shading: Y + Culling: "CullingOff" + } + Model: 140263694531584, "Model::nurbsCircle12", "NurbsCurve" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",6.97018,-1.95247,0.994928 + P: "ScalingPivot", "Vector3D", "Vector", "",6.97018,-1.95247,0.994928 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",7.72014889128426,0,0 + } + Shading: Y + Culling: "CullingOff" + } + Pose: 140263217785488, "Pose::skinCluster1", "BindPose" { + Type: "BindPose" + Version: 100 + NbPoseNodes: 22 + PoseNode: { + Node: 140263694215680 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1 + } + } + PoseNode: { + Node: 140263591793664 + Matrix: *16 { + a: 2.22044604925031e-16,1,0,0,-1,2.22044604925031e-16,0,0,0,0,1,0,-6.16297582203915e-32,18.1669210438599,1.6107979413437,1 + } + } + PoseNode: { + Node: 140263656025088 + Matrix: *16 { + a: 2.22044604925031e-16,1,0,0,-1,2.22044604925031e-16,0,0,0,0,1,0,-2.42821247388343e-30,31.4661966396391,1.6107979413437,1 + } + } + PoseNode: { + Node: 140263655555072 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,2.80285099607435e-15,44.0891153411346,1.6107979413437,1 + } + } + PoseNode: { + Node: 140263593026560 + Matrix: *16 { + a: -0.78388842022198,-0.620901718987707,-1.22464679914735e-16,0,-0.620901718987707,0.78388842022198,0,0,9.59986444713523e-17,7.60385302743385e-17,-1,0,-10.5169129441403,41.5103940792762,2.01947138788678,1 + } + } + PoseNode: { + Node: 140263593032704 + Matrix: *16 { + a: -0.761939317759459,-0.647648420095541,-1.22391375672897e-16,0,-0.647648420095541,0.761939317759459,-4.23662454252353e-18,0,9.59986444713523e-17,7.60385302743385e-17,-1,0,-18.5779005325745,35.1254534151698,1.13237223037132,1 + } + } + PoseNode: { + Node: 140263654427648 + Matrix: *16 { + a: -0.76685307722419,-0.641822684198518,-1.22420109525394e-16,0,-0.641822684198518,0.76685307722419,-3.30372674554142e-18,0,9.59986444713523e-17,7.60385302743385e-17,-1,0,-25.0401076395946,29.6982538506794,2.60702777735474,1 + } + } + PoseNode: { + Node: 140263654432256 + Matrix: *16 { + a: 1,1.11022302462516e-16,2.18463324386088e-16,0,5.55111512312578e-17,1,7.60385302743384e-17,0,-2.18463324386088e-16,-7.60385302743385e-17,1,0,-32.3827894033169,23.5527484614771,2.60702777735474,1 + } + } + PoseNode: { + Node: 140263654438400 + Matrix: *16 { + a: -0.78388842022198,0.620901718987707,0,0,-0.620901718987707,-0.78388842022198,0,0,0,0,1,0,10.5169,41.5104,2.01947,1 + } + } + PoseNode: { + Node: 140263654255616 + Matrix: *16 { + a: -0.761939317759459,0.647648420095542,1.03397576569128e-25,0,-0.647648420095541,-0.761939317759459,2.58095682816355e-08,0,1.67155261209493e-08,1.96653248481756e-08,1,0,18.5779,35.1255,1.13237,1 + } + } + PoseNode: { + Node: 140263654260224 + Matrix: *16 { + a: -0.766853077224181,0.64182268419853,1.96701063579038e-10,0,-0.641822684198527,-0.766853077224178,9.1043153766584e-08,0,5.85844021442673e-08,6.96904754214882e-08,0.999999999999996,0,25.0401,29.6983,2.60703,1 + } + } + PoseNode: { + Node: 140263654266368 + Matrix: *16 { + a: 1,-5.68828509513697e-16,-1.65646856716111e-08,0,-3.65779541400614e-17,-1,2.54792038888424e-08,0,-1.65646856716111e-08,-2.54792038888424e-08,-1,0,32.3828,23.5527,2.60703000000157,1 + } + } + PoseNode: { + Node: 140263470197248 + Matrix: *16 { + a: 2.22044604925031e-16,1,0,0,-1,2.22044604925031e-16,0,0,0,0,1,0,-0.0615726066661231,48.9328876012998,2.00282346441771,1 + } + } + PoseNode: { + Node: 140263470199808 + Matrix: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-0.0615726066661231,72.1581092669866,2.00282346441771,1 + } + } + PoseNode: { + Node: 140263471538176 + Matrix: *16 { + a: 3.44509284839767e-16,-1,-0,0,1,3.44509284839767e-16,0,0,0,0,1,0,-6.97017965046555,18.3417124574927,1.47774096590488,1 + } + } + PoseNode: { + Node: 140263694239744 + Matrix: *16 { + a: 3.44509284839767e-16,-1,0,0,1,3.44509284839767e-16,0,0,0,0,1,0,-6.97017965046555,8.00877562796853,2.50482121450331,1 + } + } + PoseNode: { + Node: 140263471540736 + Matrix: *16 { + a: 1,1.22464679914735e-16,0,0,-1.22464679914735e-16,1,0,0,0,0,1,0,-6.97017965046555,-1.95247282639292,0.994927519928052,1 + } + } + PoseNode: { + Node: 140263471848448 + Matrix: *16 { + a: 1,1.22464679914735e-16,0,0,-1.22464679914735e-16,1,0,0,0,0,1,0,-7.15823324862617,-2.32492837378066,15.5541384515081,1 + } + } + PoseNode: { + Node: 140263471853056 + Matrix: *16 { + a: 2.22044604925031e-16,1,0,0,1,-2.22044604925031e-16,-1.22464679914735e-16,0,-1.22464679914735e-16,2.71926214689378e-32,-1,0,6.97018,18.3417,1.47774,1 + } + } + PoseNode: { + Node: 140263694421504 + Matrix: *16 { + a: 2.22044604925031e-16,1,0,0,1,-2.22044604925031e-16,-1.22464679914735e-16,0,-1.22464679914735e-16,2.71926214689378e-32,-1,0,6.97018,8.00878,2.50482,1 + } + } + PoseNode: { + Node: 140263694427648 + Matrix: *16 { + a: 1,0,-1.22464679914735e-16,0,0,-1,-2.71926214689378e-32,0,-1.22464679914735e-16,2.71926214689378e-32,-1,0,6.97018,-1.95247,0.994928,1 + } + } + PoseNode: { + Node: 140263694433792 + Matrix: *16 { + a: 1,0,-1.22464679914735e-16,0,0,-1,-2.71926214689378e-32,0,-1.22464679914735e-16,2.71926214689378e-32,-1,0,7.15823,-2.32493,15.5541,1 + } + } + } + Material: 140263218610960, "Material::white", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties70: { + P: "AmbientColor", "Color", "", "A",0,0,0 + P: "DiffuseColor", "Color", "", "A",1,1,1 + P: "DiffuseFactor", "Number", "", "A",0.800000011920929 + P: "TransparencyFactor", "Number", "", "A",1 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "Ambient", "Vector3D", "Vector", "",0,0,0 + P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929 + P: "Opacity", "double", "Number", "",1 + } + } + Material: 140263209925776, "Material::black", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties70: { + P: "AmbientColor", "Color", "", "A",0,0,0 + P: "DiffuseColor", "Color", "", "A",0,0,0 + P: "DiffuseFactor", "Number", "", "A",0.800000011920929 + P: "TransparencyFactor", "Number", "", "A",1 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "Ambient", "Vector3D", "Vector", "",0,0,0 + P: "Diffuse", "Vector3D", "Vector", "",0,0,0 + P: "Opacity", "double", "Number", "",1 + } + } + Deformer: 140263212725344, "Deformer::", "Skin" { + Version: 101 + Link_DeformAcuracy: 50 + SkinningType: "Linear" + } + Deformer: 140263218639408, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *251 { + a: 2,4,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,65,66,67,68,69,76,77,78,79,80,93,94,95,96,103,104,108,109,119,120,121,122,136,137,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,197,198,199,200,201,202,203,204,205,206,242,243,244,254,255,256,257,270,271,272,280,283,284,294,295,311,312,313,314,315,316,317,318,319,320,321,322,323,324,448,449,450,457,458,459,460,461,462,468,469,470,471,472,473,474,475,476,477,478,479,480,484,489,490,491,492,495,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,557,559,560,564,568,569,570,573,575,578,583,588,593,596,598,599,600,602,605,610,612,626,628,632,634,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,702,703,704,705,706,707,708,709,710,711,714,715,716,717,721,722,723,725,726,727,728,729,730,731,732,733,734,735,736,737,741,742,743,745,746,747,748,749,750,751,752,753 + } + Weights: *251 { + a: 0.00631989396613149,0.0141877706122642,0.0587234293305808,0.105934746563435,0.0626878187485059,0.0224307431907154,0.299048858810311,0.526288986206055,0.0436224042799517,0.2100673513543,0.882235705852509,1,0.967353582382202,0.660697340965271,0.0146142604529354,0.0126751609359754,0.0109042313135957,0.00682957124015552,0.00950735318833225,0.928881645202637,0.179262850059238,0.0601497021007421,0.020925461754548,0.00409703439067289,0.107656508684158,0.477525502443314,1,0.00386675910564321,0.780285179615021,0.411702861163618,0.0516830121755937,0.011472746925778,0.0615082883677907,0.210544488586318,0.0670892840461958,0.00653528665356527,0.00672844640983456,0.108816467460551,0.134054498108801,0.102134017814252,0.005424645977693,0.0212340541183949,0.0428130440413952,0.154571577906609,0.105381228029728,0.833055198192596,0.75579571723938,0.78993546962738,0.944060146808624,0.553750865609198,0.433708700273172,0.89401376247406,0.0107185716946841,0.0160539523530846,0.0284847305543979,0.0380751426853124,0.0584734390983369,0.0645680284293157,0.00793834836402414,0.0164894873102392,0.00547216357127183,0.00727686250964015,0.00599915552690044,0.00228257478921817,0.0190933682024479,0.00604240109065979,0.00346302289584708,0.21422290802002,0.126828658896987,1,0.883542716503143,0.0280735344262639,0.0192660242099463,0.0243739696172504,0.950923442840576,0.0785325961263791,0.0734314024448395,0.366517454385757,1,0.00900984835824905,0.911718249320984,0.0808160115332926,0.00461266000081188,0.0643024930400128,0.0992404777181483,0.00628473041150465,0.00164814018239386,0.11045476677188,0.00666005676612258,0.813689827919006,0.832454204559326,0.628919422626495,0.804205596446991,0.970711290836334,0.00318714764756427,0.00541132118281123,0.0074862698319635,0.00428559776311507,0.00527157718472293,0.00119981972550882,0.00540393277362437,0.00507232446302665,0.0202174641083511,0.056897783414871,0.0282571101305802,0.358380812535636,0.412137449464113,0.208170030164911,1,1,1,0.260583546090182,0.292748347636652,0.292748351074762,0.428903335477749, +0.445009615671606,0.445009611079948,0.260623432474919,0.100500073480956,1,1,1,1,0.0488945891931795,0.0553439482210686,0.163464438095186,0.16349160995943,1,1,0.043844240821443,0.100447895519064,0.0906573284396469,0.174104658512386,0.0748821150849067,0.149961265682951,0.279746240863395,0.238245299081034,0.380165075937698,0.298640271891702,0.407595439026764,0.0749251098809667,0.0906809467168592,0.150000528970545,0.174118477059509,0.279746241421837,0.407595444595307,0.238298340723532,0.237253300496186,0.447164367803979,0.453535705804825,1,0.418157345531516,1,1,1,1,1,1,0.0428896384546235,0.10566329939295,1,1,1,1,1,1,0.0525653134127477,0.0829121778536348,0.0969441574972263,0.0510914555212039,0.0969564730312354,0.179903229523048,0.396832737957189,0.207591316962078,1,0.0829462153784019,0.135469128265228,0.135519354749458,0.830929577350616,0.0546152544402137,1,1,1,0.00783106595447694,0.014698182522011,0.0259734349270256,0.0316463258916209,0.0329045259199909,0.0318321464200498,0.0296371696129165,0.0236754486742174,0.110321865355968,0.113946834499824,0.103927398616882,0.170334364347477,0.180506958901681,0.18623250256272,0.0960349468769125,0.0868394002499271,0.143659865786843,0.157484773143575,0.166013220478723,0.125062075360928,0.197809205259781,0.0254005272633001,0.00778986373244828,0.00217720830760925,0.0957650073816428,0.0850068794258331,0.0960809082195954,0.0878471446376145,0.103959334058156,0.17036893051976,0.157534885339418,0.143723801947395,0.11033840856037,0.18052471973107,0.09337043070373,0.122107898281506,0.173611544458217,0.21006833513702,0.00145300749720065,0.00601060587565406,0.439878702163696,0.652933418750763,0.756355345249176,0.00127651491345065,0.0893916338682175,0.18243396282196,0.914910912513733,0.986417591571808,0.752691030502319,1,1,1,0.977066397666931,1,1,1,0.477706551551819,0.283136695623398,0.0281998459249735,0.65780383348465,1,1,1,1,1,0.98430347442627,1,1 + } + Transform: *16 { + a: 2.83276944882399e-16,-1,0,0,1,2.83276944882399e-16,0,0,0,0,1,0,-18.1669210438599,-5.14626989122438e-15,-1.6107979413437,1 + } + TransformLink: *16 { + a: 2.83276944882399e-16,1,0,0,-1,2.83276944882399e-16,0,0,0,-0,1,0,-0,18.1669210438599,1.6107979413437,1 + } + } + Deformer: 140263209966640, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *181 { + a: 16,18,19,20,21,22,23,27,50,62,65,66,78,80,92,93,106,108,109,119,120,121,122,136,137,138,139,140,141,142,143,144,146,149,204,205,206,208,228,239,242,243,257,269,281,283,284,294,295,297,307,308,309,310,311,312,313,316,385,448,449,450,457,458,459,468,469,470,471,472,473,474,475,480,484,489,490,495,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,541,548,549,557,559,560,564,568,569,570,573,578,583,588,593,596,602,605,610,612,626,628,632,634,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,734,738,739,740,741,742,743,744,745,751 + } + Weights: *181 { + a: 0.0970876134775416,0.0259429948651628,0.236637303188236,0.0762705185686738,0.97986513376236,0.986175894737244,0.0373599675002931,0.00229143872015644,0.0110488375207655,0.017669810214569,0.9829221367836,0.0451183007153051,0.00354713840359872,0.991349339485168,0.249478888172082,0.203477598588459,0.00106473079286835,0.186845535405792,0.0131378458000992,0.0141176031661167,0.307138564299239,0.510569770887767,0.380357789849037,0.964106023311615,0.975582623835125,0.995954692363739,0.99927431344986,0.957174656589674,0.844175636289566,0.893356886615798,0.0123207658978441,0.00283119047617355,0.00141695216874269,0.0129409583607945,0.0135163211425024,0.0344131530529285,0.0260162800586875,0.00133943707430849,0.0228594369037954,0.0176763726304571,0.957249402999878,0.0270980352669577,0.980267465114594,0.012803044970253,0.0010454945986861,0.28019582319524,0.0128062719596038,0.00350811252186517,0.316175619763854,0.00260813678875919,0.996237814426422,0.999768197536469,0.998222172260284,0.999904870986938,0.99297358336575,0.0145768716463847,0.00192412148219845,0.0010092489175302,0.00436672948857149,0.175758493406276,0.439986944831195,0.245650343638188,0.426892445624437,0.441378255086338,0.667103230953217,0.462618287411094,0.477400972759186,0.477400978160145,0.425484460757087,0.426225016298193,0.426225015708296,0.462689095665929,0.86538028717041,0.40967431844358,0.433489969646888,0.48451643930051,0.484596410964464,0.367358838116723,0.487584859252126,0.462315386770132,0.497420595187049,0.418224815252954,0.466662840132845,0.472809982038998,0.44638786624974,0.433962350762823,0.479984601176202,0.440061414339613,0.418464942342496,0.462436300834347,0.466785023132691,0.497460075651149,0.472809982982842,0.440061420351704,0.44648724762561,0.646747410297394,0.424681098574758,0.416845668964273,0.418109475813324,0.940316557884216,0.8622967004776,0.42413944724554,0.442308571991339,0.477534528652966,0.412247169146878,0.477595193151744,0.506151832286174,0.437878161704094,0.705942511558533,0.442490150733612,0.443546703934293,0.443711153147302, +0.112453797692178,0.427782363224259,0.0462616312717046,0.0836889423735133,0.143793167055273,0.173140028130971,0.182164812952007,0.181246800553722,0.175080094316573,0.145286688606249,0.412732476401452,0.420765160547401,0.401209162375468,0.418903816160876,0.429907134374709,0.437725565213157,0.38658076379355,0.36539271121743,0.38658945042433,0.404456770706838,0.611250698566437,0.731611907482147,0.483278930187225,0.953824579715729,0.986835718154907,0.996510446071625,0.804726958274841,0.830763280391693,0.998814702033997,0.999407172203064,0.386765785307097,0.369632980645494,0.401332531792318,0.418988766884219,0.4045854779643,0.386761502966874,0.412794364692551,0.429949436552873,0.809609711170197,0.737951695919037,0.999457597732544,0.999131500720978,0.593593180179596,0.451509356498718,0.997544527053833,0.98907482624054,0.999918341636658,0.999956607818604,0.999825060367584,0.55781291180318,0.345257812457421,0.242403290498785,0.999510169029236,0.998027443885803,0.907702112568879,0.814827918388459,0.0746021808947312,0.0111706698790285,0.22517705345408,0.0177859175588126,0.999989628791809,0.999982833862305,0.999988198280334,0.521508160461612,0.716546221657112,0.971667383476841,0.99997889995575,0.341054002911842,0.0151207047434434 + } + Transform: *16 { + a: 2.83276944882399e-16,-1,0,0,1,2.83276944882399e-16,0,0,0,0,1,0,-31.4661966396391,-8.91364805114579e-15,-1.6107979413437,1 + } + TransformLink: *16 { + a: 2.83276944882399e-16,1,0,0,-1,2.83276944882399e-16,0,0,0,-0,1,0,-2.36658271566304e-30,31.4661966396391,1.6107979413437,1 + } + } + Deformer: 140263209919664, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *296 { + a: 20,21,22,23,24,25,26,27,50,62,64,65,80,81,83,92,106,108,109,119,120,121,122,125,136,205,206,207,208,228,239,241,242,257,258,260,269,281,283,284,294,295,297,340,354,355,356,357,358,359,360,361,362,363,364,365,385,448,449,450,451,452,453,454,455,456,457,458,459,463,464,465,466,467,468,469,470,471,472,473,474,475,480,481,482,483,484,485,486,487,488,489,490,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,541,548,549,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,698,699,702,703,704,705,706,707,708,709,710,711,714,715,717,730 + } + Weights: *296 { + a: 0.1407892299668,0.00358506529805868,0.00157683762920578,0.0879223264477529,0.616800755262375,1,1,0.77938050031662,0.0304816314043242,0.0473322132818828,1,0.00364571726705733,0.00220933492323821,1,0.559044063091278,0.00294209041034728,0.00305837289264255,0.559617817401886,0.438685849544936,0.386118524006444,0.341865606143802,0.241016347312098,0.41582977771759,0.113833129405975,0.00558677598834535,0.261957284026963,0.239343422678967,0.240171313285828,0.221249635998439,0.0616174793167824,0.0471541456920363,1,0.00894163414922216,0.00498666779726029,1,0.0600393509311998,0.00690081069651575,0.00299198134973148,0.357715513418191,0.411233720871973,0.0926091802772397,0.33827825818734,0.119520678927952,0.0740564491723548,0.98682964220643,0.690252989530563,0.9651681445539,0.989825151860714,0.920050099492073,0.829210266470909,1,1,1,1,0.927404575049877,0.770665377378464,0.00930179486713255,0.722826421260834,0.355506479740143,0.613156616687775,1,1,1,1,1,1,0.110348630797176,0.0689624286291757,0.0640973736962832,1,1,1,1,1,0.157723456179378,0.127987065732354,0.127987038532361,0.057527743316648,0.0456575315448269,0.0456575322546728,0.157747553535271,0.0134798217674267,0.371093712371603,1,1,1,0.358226120471954,1,1,1,1,0.220313589661423,0.220349731045612,1,1,0.436614841222763,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.27616702197678,0.298175547195635,0.206173765132351,0.338158276964165,0.239718588348737,0.140499941219683,0.179365025313592,0.09367429567263,0.120988476043767,0.0733011676529543,0.33835235492629,0.298253722111979,0.239781285900387,0.206190086612147,0.140499903070939,0.0733011501530436,0.179404893160373,0.0584602048751297,0.0430706431317772,0.0490920623993425,0.0677816108099282,0.00695223381143298,0.01213491040673,1,0.362323880195618,1,0.31666596431565,0.284223290757514,1,1,1,0.380589723587036,1,1,1,0.284259353568344,0.198267114133089,0.0814233272380444,1,1,0.0425942378861303,1,1,1,0.316795892542741,1,1,1,1,0.263136746381345,1,1,1,1,0.26323422404375,1,1,1,1,0.0140051663942399,1,1,0.36686509847641, +1,1,0.917982041835785,1,1,0.854754984378815,1,1,1,1,0.754541158676147,1,0.708027720451355,1,1,1,1,1,1,1,1,1,1,1,1,1,0.689143300056458,1,0.685656368732452,1,1,1,0.689933240413666,1,0.735950767993927,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.291770842738454,0.286242848351047,0.301455869155227,0.239402854980065,0.228181975784313,0.221878085366393,0.314077542928706,0.335646897554398,0.27196221157876,0.254420263395972,0.120516312686266,0.0777636518102082,0.171957653496255,0.0103559531752622,0.00263042851613279,0.0530278814627462,0.0441249449669504,0.314227784481245,0.32860136295623,0.301548506961026,0.239451361740504,0.254501143197717,0.272083178027795,0.291814568675693,0.228204380666646,0.0517019229179091,0.0759267204566587,0.126032239457519,0.18261458856467,0.00245056059382802,0.00281726109073045 + } + Transform: *16 { + a: 1,0,0,0,0,1,0,0,0,0,1,0,-2.80285099607435e-15,-44.0891153411346,-1.6107979413437,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,1,0,0,0,-0,1,0,2.80285099607435e-15,44.0891153411346,1.6107979413437,1 + } + } + Deformer: 140263206768448, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *84 { + a: 16,19,20,21,23,24,27,50,62,65,66,80,83,92,93,108,109,119,120,121,122,136,137,138,145,166,167,168,169,170,171,172,173,448,457,458,459,468,469,470,471,480,484,489,521,522,523,524,525,526,527,528,529,534,535,537,539,541,557,559,560,570,573,583,602,605,610,682,684,685,686,688,689,690,691,692,693,694,695,696,698,699,710,711 + } + Weights: *84 { + a: 0.00446763927733489,0.0222385455043455,0.696408748626709,0.00196124285985063,0.828801929950714,0.383199244737625,0.214061844775613,0.0044685297756026,0.00948159977197062,0.00286930390469253,0.00224764694190688,0.00191386061939844,0.440955936908722,0.739601075649261,0.00437326260630422,0.146346906577182,0.517024017255443,0.557840195744392,0.185436199483451,0.0522148918995646,0.0462881010728442,0.0131751872807471,0.0014530498805139,0.00159870526977537,0.00212551977636619,1,1,1,1,1,1,1,1,0.0326878839963077,0.0739045833093214,0.038760910093399,0.0177009063421752,0.0770040655662383,0.0567166777849204,0.0451468534816133,0.044996952859144,0.0653252494326282,0.0528131022615963,0.0723652228001629,0.0680453059623524,0.0641649617625955,0.0843362136446304,0.0823974453802292,0.065601682260325,0.0913657115653378,0.0605307688271422,0.0501932807971829,0.0436067002937933,0.0413420752435214,0.035435233778436,0.0197630197107172,0.0373864900186085,0.0543394403235399,0.0587521409667741,0.0756155849665059,0.0614507741251229,0.0506533448125956,0.0173740853211009,0.0944383245856449,0.0107868299936279,0.0173331106182092,0.0266687556300654,0.0799338176822916,0.0872776175415268,0.091775115157987,0.0828869733936894,0.0954795472541598,0.103557914337575,0.114386604332084,0.102245068188245,0.0641506605292333,0.0395889467724955,0.0955275066126266,0.0072232013508888,0.00177119323508066,0.0256544570063284,0.0200524313774341,0.0203049221257376,0.0253598407419267 + } + Transform: *16 { + a: -0.783888420221979,-0.620901718987706,1.72037174745691e-16,0,-0.620901718987706,0.783888420221979,-1.99601141970139e-17,0,-1.22464679914735e-16,-1.22464679914735e-16,-1,0,17.5297887662855,-39.0694865630563,2.01947138788678,1 + } + TransformLink: *16 { + a: -0.78388842022198,-0.620901718987707,-1.22464679914735e-16,0,-0.620901718987707,0.78388842022198,-1.22464679914735e-16,0,1.72037174745691e-16,-1.99601141970139e-17,-1,0,-10.5169129441403,41.5103940792762,2.01947138788678,1 + } + } + Deformer: 140263209615280, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *32 { + a: 16,19,20,23,27,28,29,30,31,65,84,91,92,93,109,110,118,119,136,137,138,144,145,146,174,175,176,177,178,179,180,181 + } + Weights: *32 { + a: 0.00470625281996634,0.0222957892152173,0.0719172423848815,0.0390862048610844,0.00297079582122122,1,1,1,1,0.00105548885631804,1,1,0.00759272671515747,0.00479253416709492,0.024617000745957,1,1,0.0351952306732127,0.0117073674415995,0.00143378714077373,0.00145864360181192,0.00296343988306688,0.0025570585411325,0.00146883313258967,1,1,1,1,1,1,1,1 + } + Transform: *16 { + a: -0.761939317759459,-0.647648420095541,1.72568857744133e-16,0,-0.647648420095541,0.761939317759459,-1.40440735759922e-17,0,-1.22391375672897e-16,-1.22464679914735e-16,-1,0,8.59371155228135,-38.7954119397601,1.13237223037132,1 + } + TransformLink: *16 { + a: -0.761939317759459,-0.647648420095541,-1.22391375672897e-16,0,-0.647648420095541,0.761939317759459,-1.22464679914735e-16,0,1.72568857744133e-16,-1.40440735759922e-17,-1,0,-18.5779005325745,35.1254534151698,1.13237223037132,1 + } + } + Deformer: 140263209739696, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *17 { + a: 32,33,34,35,36,37,38,39,85,86,89,90,111,112,116,117,145 + } + Weights: *17 { + a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.00214265695545793 + } + Transform: *16 { + a: -0.766853077224189,-0.641822684198518,1.72478847286058e-16,0,-0.641822684198518,0.766853077224189,-1.53404133484255e-17,0,-1.22420109525394e-16,-1.22464679914735e-16,-1,0,-0.141070594996012,-38.8455064514431,2.60702777735475,1 + } + TransformLink: *16 { + a: -0.76685307722419,-0.641822684198519,-1.22420109525394e-16,0,-0.641822684198519,0.76685307722419,-1.22464679914735e-16,0,1.72478847286058e-16,-1.53404133484255e-17,-1,0,-25.0401076395946,29.6982538506794,2.60702777735474,1 + } + } + Deformer: 140263218669808, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *9 { + a: 40,41,42,43,87,88,113,114,115 + } + Weights: *9 { + a: 1,1,1,1,1,1,1,1,1 + } + Transform: *16 { + a: 1,-1.11022302462516e-16,-2.18463324386088e-16,0,1.11022302462516e-16,1,-7.60385302743384e-17,0,2.18463324386087e-16,7.60385302743384e-17,1,0,32.3827894033169,-23.5527484614771,-2.60702777735475,1 + } + TransformLink: *16 { + a: 1,1.11022302462516e-16,2.18463324386088e-16,0,-1.11022302462516e-16,1,7.60385302743384e-17,0,-2.18463324386088e-16,-7.60385302743384e-17,1,0,-32.3827894033169,23.5527484614771,2.60702777735474,1 + } + } + Deformer: 140263209938960, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *87 { + a: 21,204,205,206,207,208,228,239,242,243,257,260,269,270,283,284,294,295,297,307,314,333,334,335,336,337,338,339,340,385,449,450,457,458,459,469,470,474,475,490,495,520,525,527,528,529,530,531,532,533,534,535,536,537,548,549,564,568,569,570,573,578,588,596,612,626,628,632,634,683,687,693,698,699,702,703,704,705,706,707,708,709,710,711,714,715,717 + } + Weights: *87 { + a: 0.00191339714375563,0.0215889066973696,0.550260696341485,0.616604336479858,0.759828686714172,0.775093495845795,0.0160528847496615,0.009359311928875,0.00691322778051119,0.00187400913181467,0.00427265298879836,0.939743995666504,0.963457345962524,0.0200336409759142,0.204579120005777,0.547735810279846,0.894279599189758,0.178531558022049,0.00133918701096363,0.00136464603202339,0.00163647645008136,1,1,1,1,1,1,1,0.896808118585596,0.00639375552269975,0.0476807756537568,0.0456866594518563,0.030473527733429,0.0387609567269736,0.0429284588434137,0.0451469360868879,0.0567167787511182,0.0770159932627995,0.0105436338323904,0.0723773347016564,0.0585779663929789,0.0556756611380501,0.0413421536175992,0.0316675087997067,0.050193370091146,0.0354352786868748,0.0843848979347646,0.068063312479453,0.0824192190513793,0.0641702038649548,0.065601797280861,0.0436067511215089,0.0913862152180284,0.0377760646205732,0.00557350049935649,0.00924145559787033,0.0571050016226273,0.0614587564079431,0.0575790327364119,0.0332124282880776,0.0264978482721582,0.075646852286368,0.0944735730866964,0.0521178997097649,0.0289658208766577,0.0337855013442298,0.0375387859660886,0.0408235762585845,0.0384721336330525,0.0733123532465337,0.0754450582403688,0.0259734185742208,0.0208256958744412,0.0200524638380893,0.0955254753703939,0.104759948741663,0.0873046628567529,0.0917939227208408,0.102277801864657,0.114437759753205,0.0799460171254561,0.0828952934069339,0.0250130130824267,0.0386538446008719,0.0670869064874937,0.101447936776528,0.0017092502901673 + } + Transform: *16 { + a: -0.783888420221979,-0.620901718987706,0,0,0.620901718987706,-0.783888420221979,0,0,0,0,1,0,-17.5298025892347,39.0694831672043,-2.01947,1 + } + TransformLink: *16 { + a: -0.78388842022198,0.620901718987707,0,0,-0.620901718987707,-0.78388842022198,0,0,0,0,1,0,10.5169,41.5104,2.01947,1 + } + } + Deformer: 140263222937152, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *30 { + a: 204,205,206,208,209,210,211,212,242,257,261,268,269,270,284,285,293,294,307,313,314,340,341,342,343,344,345,346,347,348 + } + Weights: *30 { + a: 0.0216197083933338,0.125295332152359,0.0987699365725404,0.00159233348431896,1,1,1,1,0.00252176545313833,0.0014633657410988,1,1,0.0159122406123069,0.0217406074649041,0.021939466477072,1,1,0.00795496782874301,0.00120212843172546,0.00191177561616689,0.00194694955165356,0.0271836291050943,1,1,1,1,1,1,1,1 + } + Transform: *16 { + a: -0.761939317759458,-0.647648420095541,1.67155261209492e-08,0,0.647648420095541,-0.761939317759458,1.96653248481755e-08,0,0,2.58095682816355e-08,1,0,-8.59374212866249,38.7954470604268,-1.13237100129374,1 + } + TransformLink: *16 { + a: -0.761939317759459,0.647648420095542,0,0,-0.647648420095541,-0.761939317759459,2.58095682816355e-08,0,1.67155261209492e-08,1.96653248481755e-08,1,0,18.5779,35.1255,1.13237,1 + } + } + Deformer: 140263222948112, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *19 { + a: 213,214,215,216,217,218,219,220,262,263,266,267,270,286,287,291,292,314,340 + } + Weights: *19 { + a: 1,1,1,1,1,1,1,1,1,1,1,1,0.0119082692849324,1,1,1,1,0.00162079120320596,0.00108722131488436 + } + Transform: *16 { + a: -0.76685307722418,-0.641822684198526,5.85844021442672e-08,0,0.641822684198529,-0.766853077224177,6.96904754214881e-08,0,1.96701063579046e-10,9.10431537665839e-08,0.999999999999996,0,0.141035116355227,38.8455367005741,-2.60703353664792,1 + } + TransformLink: *16 { + a: -0.766853077224181,0.64182268419853,1.96701063579046e-10,0,-0.641822684198527,-0.766853077224178,9.1043153766584e-08,0,5.85844021442672e-08,6.96904754214881e-08,0.999999999999996,0,25.0401,29.6983,2.60703,1 + } + } + Deformer: 140263217800624, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *9 { + a: 221,222,223,224,264,265,288,289,290 + } + Weights: *9 { + a: 1,1,1,1,1,1,1,1,1 + } + Transform: *16 { + a: 0.999999999999999,-1.4677350809469e-16,-1.65646856716111e-08,0,-5.68828509513696e-16,-0.999999999999999,-2.547920375829e-08,0,-1.65646856716111e-08,2.547920375829e-08,-0.999999999999999,0,-32.3827999568153,23.5526999335749,2.60703113651651,1 + } + TransformLink: *16 { + a: 1,-5.68828509513696e-16,-1.65646856716111e-08,0,-1.4677350809469e-16,-1,2.547920375829e-08,0,-1.65646856716111e-08,-2.547920375829e-08,-1,0,32.3828,23.5527,2.60703000000157,1 + } + } + Deformer: 140263643926768, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *210 { + a: 27,44,45,46,47,48,49,50,51,60,61,62,63,82,105,106,107,108,120,121,122,123,124,125,126,127,128,129,182,183,184,185,186,187,188,225,226,227,228,237,238,239,240,259,281,282,283,295,296,297,298,299,300,349,350,351,352,353,354,355,356,357,358,359,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,468,474,480,484,489,490,495,520,521,522,523,524,526,530,531,532,533,536,557,559,560,564,568,569,578,583,588,596,602,605,610,612,626,628,632,634,682,683,684,685,686,687,688,689,690,691,692,694,695,702,703,704,705,706,707,708,709,714,715 + } + Weights: *210 { + a: 0.00129542036638971,1,1,1,1,1,1,0.868337740510008,1,1,1,0.819676579746842,1,1,0.999789589232565,0.964524899668025,1,0.0401004565689451,0.0567431626129565,0.0621444917917688,0.0553903135462764,1,1,0.886166870594025,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.79887441367955,1,1,0.82029388502679,1,1,0.96520796241795,1,0.0582690656626433,0.0565597972548772,1,0.876414120197296,1,1,1,1,1,1,1,1,0.0131703577935696,0.309747010469437,0.0348318554461002,0.010174848139286,0.0799499005079269,0.170789733529091,0.0725954249501228,0.229334622621536,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0.973768532276154,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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.998954713344574,1,1,0.978424072265625,1,1,1,1,1,1,1,1,1,1,0.0485097372282318,0.0999280163600344,0.0672492700916007,0.0420706447531081,0.0419239250610813,0.10501213055901,0.100126859398493,0.0593403101427185,0.0591849133288376,0.0936041134460924,0.0801245621139788,0.0808064316322335,0.0581360194056181,0.0843985790533442,0.0612598604552385,0.0446360977902954,0.0838726949154828,0.0805657178573621,0.0610139429449971,0.05806115681224,0.0444233032724564,0.10221921817932,0.0824977008728705,0.0798472489671706,0.0989666501222549,0.0797302238407329,0.0580987913212768,0.0821208890588764,0.063409096833489,0.063061694972793,0.0986193841493525,0.0171384309444056,0.0295247801074519,0.0490234837114881,0.0582201046493952,0.0620018597273145,0.0637258983276871,0.0645259193982604,0.0566149610925537,0.105240997821835,0.105732803355193,0.106129952310896,0.0795838493535948,0.0785169575456077,0.078718788617361,0.107827199146671,0.108563076640671,0.0834018678779828,0.0813931245653707,0.0380691077393416,0.0514267044441119,0.00319573849482016,0.107400046621669,0.109158563018998,0.105854964331747,0.0793970181346763,0.0811006916339085,0.0829937573047306,0.10510664094593,0.0784261696424772,0.0396761294171746,0.054359783023064 + } + Transform: *16 { + a: 2.83276944882399e-16,-0.999999999999999,0,0,0.999999999999999,2.83276944882399e-16,0,0,0,0,1,0,-48.9328876012997,-0.0615726066661369,-2.00282346441771,1 + } + TransformLink: *16 { + a: 2.83276944882399e-16,1,0,0,-1,2.83276944882399e-16,0,0,0,-0,1,0,-0.0615726066661231,48.9328876012998,2.00282346441771,1 + } + } + Deformer: 140263218261600, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *8 { + a: 50,62,106,228,239,281,385,437 + } + Weights: *8 { + a: 0.0856632607892998,0.105839796984736,0.0307635377617545,0.100595785350211,0.105516284721842,0.0301837624486872,0.00616918784544264,0.0207328217615591 + } + Transform: *16 { + a: 0.999999999999999,0,0,0,0,0.999999999999999,0,0,0,0,1,0,0.061572606666123,-72.1581092669866,-2.00282346441771,1 + } + TransformLink: *16 { + a: 1,0,0,0,-0,1,0,0,0,-0,1,0,-0.0615726066661231,72.1581092669866,2.00282346441771,1 + } + } + Deformer: 140263643936656, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *88 { + a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,55,66,67,68,69,70,75,76,77,78,93,94,95,96,97,102,103,104,130,131,135,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,198,199,243,255,280,312,317,321,322,323,324,471,472,473,538,539,541,593,721,726,727,728,729,730,734 + } + Weights: *88 { + a: 0.00898897276019696,0.00701951189255059,0.218519633856114,0.146004116926731,0.322493703139233,0.220844135866385,0.00576111164943792,0.00194722758432722,0.834906351013193,0.824517087111314,0.877556562423706,0.953171133995056,0.697429955005646,0.40202139192936,0.260704156882966,0.789304435253143,0.0115027885726486,0.0031812472510945,0.05813102112693,0.00179983008290451,0.0200786723465036,0.819313228130341,0.880098819732666,0.35349181537237,0.0109933501207863,0.00288045779490884,0.160928155414323,0.810644142230482,0.499063475229697,0.00707142502312137,0.586091637611389,0.864640346597798,0.290307750967813,0.00932857753338621,0.178700836184134,0.899429282216082,0.788533806800842,0.0102487161401123,0.00142816719388147,0.00501925991593241,0.131836718643919,0.234863512406571,0.203239295099663,0.0514698210844447,0.443706780672073,0.33766372961633,0.0428572759464317,0.249948956924751,0.283431770650837,0.36902717054448,0.448276830863944,0.51731288433075,0.547551557014225,0.358427540676258,0.333321156938842,0.0943386263250018,0.145168407594907,0.158632740135577,0.121810293433925,0.111472493906074,0.106174574396855,0.046636000525591,0.0990970774648916,0.0285192290332724,0.00283288727005773,0.00321150704879874,0.00170924377515417,0.0107525844204892,0.013878133382319,0.001239072040613,0.00160549759407755,0.00102984394725796,0.00511446504587105,0.0218992358361526,0.0430875075893721,0.0442836023426605,0.0388243320760922,0.0425419945580913,0.0431400728129512,0.0416121275216925,0.0274974078846159,0.00106944161203607,0.00133345566552054,0.00127971373021871,0.00570595352505664,0.00123057968096871,0.0126166748574853,0.00243894112102965 + } + Transform: *16 { + a: 5.0532154980743e-16,1,0,0,-1,5.0532154980743e-16,0,0,0,0,1,0,18.3417124574927,6.97017965046554,-1.47774096590488,1 + } + TransformLink: *16 { + a: 5.0532154980743e-16,-1,0,0,1,5.0532154980743e-16,0,0,-0,0,1,0,-6.97017965046555,18.3417124574927,1.47774096590488,1 + } + } + Deformer: 140263643938608, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *73 { + a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,52,53,54,55,68,69,70,71,72,75,76,77,78,94,95,96,97,98,99,101,102,103,130,131,132,133,134,135,143,144,146,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,190,196,198,199,247,280,323,324,329,330,728 + } + Weights: *73 { + a: 0.0556571253862729,0.043215061495075,0.737835824489594,0.804765164852142,0.604306280612946,0.694825291633606,0.0896324918591035,0.0299733853071781,0.0995717942714691,0.0392661337053221,0.0276930048928859,0.022546819968235,0.00231280019017978,0.0158365944908724,0.0111751942806326,0.0010854359951574,0.0216659690849064,0.0274856382044,0.0487004533274039,0.527806297725624,0.188829746784027,0.00203081052762552,0.0188429618348205,0.0154991739777422,0.797458231449127,0.0727574742444178,0.0130287084952381,0.00128712402981231,0.0791306793689728,0.654259741306305,0.0868922083254356,0.00942356214157382,0.00647650986122468,0.0127830518334702,0.802050769329071,0.0238055214285851,0.0255462476818242,0.00307489894206458,0.0319525120318211,0.0324539744456817,0.00224919348221044,0.0226981420348649,0.0112896321385765,0.00354613999480912,0.00158424680559872,0.00896962379220204,0.725800037384033,0.685177206993103,0.583630561828613,0.488205254077911,0.372709369335703,0.284704446792603,0.619761347770691,0.615106821060181,0.560654938220978,0.596696339978039,0.637536601915768,0.559297549239575,0.505004989351713,0.582651218321593,0.595120168321285,0.598328692627809,0.00338926021793503,0.00156849136935826,0.00197172733353636,0.00124382349721803,0.0013961008188363,0.00611799111966801,0.00491226714521311,0.00565497608604102,0.00427041170401631,0.00284718583559741,0.00131137642713703 + } + Transform: *16 { + a: 5.0532154980743e-16,1,0,0,-1,5.0532154980743e-16,0,0,0,0,1,0,8.00877562796853,6.97017965046555,-2.50482121450331,1 + } + TransformLink: *16 { + a: 5.0532154980743e-16,-1,0,0,1,5.0532154980743e-16,0,0,-0,0,1,0,-6.97017965046555,8.00877562796853,2.50482121450331,1 + } + } + Deformer: 140263643933920, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *62 { + a: 0,1,2,3,4,5,6,7,8,11,52,53,54,55,56,57,58,59,69,70,71,72,73,74,75,76,95,96,97,98,99,100,101,102,130,131,132,133,134,135,150,151,152,153,154,158,159,160,161,162,163,164,165,190,196,247,301,303,304,306,329,330 + } + Weights: *62 { + a: 0.928941071033478,0.939588665962219,0.0307738585758297,0.0212666733279862,0.0552445955141083,0.0357677212879641,0.903558015823364,0.964736104011536,0.00455516642769494,0.00122657983813209,0.98838347196579,0.998736143112183,0.96786642074585,0.965830087661743,0.12783775442629,0.0173266641853054,0.0948837035074635,0.0120428543358826,0.0832971559186402,0.794580101966858,0.997852683067322,0.978508114814758,0.00714025234309869,0.0347061076009383,0.976131929556983,0.0299022452801802,0.00318621738086048,0.0396932382006112,0.901493668556213,0.99026358127594,0.993501603603363,0.99915087223053,0.985880732536316,0.00751441539438136,0.860714435577393,0.954109912632774,0.811712861061096,0.777065753936768,0.879204436790172,0.862154185771942,0.00950472326353536,0.011382126748285,0.0158505285613357,0.0214648389024425,0.0343163247939873,0.312379135608813,0.232340633869171,0.188673496246338,0.309347450733185,0.364323109388351,0.25598019361496,0.342712223529816,0.261272668838501,0.0044663024698595,0.00149646027187106,0.00137547047931119,0.00181031722986044,0.0322024880051815,0.0412099720240689,0.00272475860249002,0.00359522230915575,0.00195332070579951 + } + Transform: *16 { + a: 1,-1.22464679914735e-16,0,0,1.22464679914735e-16,1,0,0,0,0,1,0,6.97017965046555,1.95247282639292,-0.994927519928052,1 + } + TransformLink: *16 { + a: 1,1.22464679914735e-16,0,0,-1.22464679914735e-16,1,0,0,0,-0,1,0,-6.97017965046555,-1.95247282639292,0.994927519928052,1 + } + } + Deformer: 140263643921760, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *30 { + a: 0,2,8,54,55,56,57,58,59,72,73,74,75,76,96,97,130,131,132,133,134,135,150,151,152,158,159,160,303,304 + } + Weights: *30 { + a: 0.00572266479535977,0.0065507891123315,0.00224325895706172,0.0032832852703943,0.00437478700290725,0.87070369720459,0.981249570846558,0.90386575460434,0.986741840839386,0.00159444009017463,0.992850482463837,0.965194284915924,0.00481317898492792,0.00761433346569686,0.00426652259949335,0.00164366138725863,0.101406874705282,0.0406138142525594,0.111456551293315,0.135728337004849,0.117625430226326,0.107871399763457,0.00402771073299595,0.0039549432546907,0.00300700851117324,0.0270969534265282,0.0203224549866118,0.0078802991926773,0.0185055448027192,0.0242488960011305 + } + Transform: *16 { + a: 1,-1.22464679914735e-16,0,0,1.22464679914735e-16,1,0,0,0,0,1,0,7.15823324862617,2.32492837378066,-15.5541384515081,1 + } + TransformLink: *16 { + a: 1,1.22464679914735e-16,0,0,-1.22464679914735e-16,1,0,0,0,-0,1,0,-7.15823324862617,-2.32492837378066,15.5541384515081,1 + } + } + Deformer: 140263217514592, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *84 { + a: 3,5,9,10,13,14,18,66,68,77,78,95,102,103,143,148,149,153,154,155,156,157,164,189,190,191,193,194,195,196,197,198,199,200,201,202,204,232,243,244,245,246,247,253,254,255,270,271,272,273,279,280,301,306,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,472,473,475,538,548,549,593,728,730,734 + } + Weights: *84 { + a: 0.0137410080804188,0.0229447742292651,0.0181095985946168,0.0195914888243321,0.040411443195871,0.69497674703598,0.00309526046195782,0.00367373479364769,0.00627391279318493,0.00487468160127245,0.00683517542815229,0.0013597444767752,0.00562306562449916,0.00966952747715842,0.0114976851270639,0.227734297513962,0.0412183794265118,0.00397793347038945,0.017187982441223,0.0528649937884954,0.00707203137355608,0.0176622875931406,0.00597654900961452,0.00173015338736741,0.00500068492356362,0.00416330053746704,0.00387076670955743,0.00596261164750185,0.00104295826753191,0.00164813220599835,0.993564367294312,0.944637955291659,0.987292885780334,0.992776930332184,0.784908082434372,0.872948229312897,0.0597323472636508,0.00141085841259104,0.0168930057118528,0.92049515247345,0.999171912670135,0.0125156131084749,0.00522064335565033,0.00187317893135773,0.914452840075724,0.627796074193151,0.0345992329532654,0.918941259384155,0.991566896438599,0.00383690936310987,0.00684331993872129,0.899851143360138,0.00876031952559546,0.00593149934869375,0.144772639679565,0.161337177890179,0.365876360168564,0.192748645617026,0.0265757308899937,0.653513466496713,0.822401976875303,0.60985064456938,0.386777736127966,0.470997987450781,0.55019335763294,0.466487073949781,0.626758280499774,0.0104762698539541,0.00544337750202749,0.0130526393504577,0.0124269517711931,0.0437689603851247,0.015814324466417,0.0019923008734456,0.0388242341427139,0.044283508880991,0.0100961837488163,0.0425418959313948,0.00426806935037073,0.01066363412485,0.0151140506783502,0.00346957663934219,0.0066979800953844,0.00204687287511642 + } + Transform: *16 { + a: 2.83276944882399e-16,1,-1.22464679914735e-16,0,1,-2.83276944882399e-16,3.46914203822471e-32,0,0,-1.22464679914735e-16,-1,0,-18.3417,-6.97017999999999,1.47774,1 + } + TransformLink: *16 { + a: 2.83276944882399e-16,1,-0,0,1,-2.83276944882399e-16,-1.22464679914735e-16,0,-1.22464679914735e-16,3.46914203822471e-32,-1,0,6.97018,18.3417,1.47774,1 + } + } + Deformer: 140263217517536, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *77 { + a: 1,3,4,5,7,9,10,13,54,68,69,70,77,102,103,155,156,157,161,162,163,164,165,189,190,191,192,193,194,195,196,197,198,199,200,230,232,246,247,248,249,252,253,254,255,272,273,274,276,278,279,280,301,302,303,304,305,306,312,313,315,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332 + } + Weights: *77 { + a: 0.00440962712648942,0.0142230368127216,0.0037676501214494,0.02561807698278,0.00170986614591622,0.0121724340253124,0.01247112511057,0.0154415841778422,0.00288055949751552,0.00477711204600302,0.0144792692288177,0.00281883467911236,0.00406719323966929,0.00611091346791445,0.00558738051038413,0.0503109739753608,0.00680073181547107,0.0174202470975973,0.00354555106641498,0.0104090525686401,0.0326125993536574,0.00955505861369398,0.0227103575577872,0.0220837364282418,0.0859535906836248,0.995048105716705,0.998867690563202,0.99528580904007,0.99382346868515,0.0174646187836845,0.152308438674745,0.00389417214909054,0.00577772013908402,0.00258800236172998,0.00348131579448173,0.00146938582933639,0.0224112110555397,0.986041188240051,0.0938896470329087,0.00347500149525605,0.0298011793194439,0.0174828944551993,0.99763822555542,0.0107276433083298,0.00311271158142832,0.00357878584431271,0.995475649833679,0.00391718463870115,0.00523938965436647,0.0562865170974885,0.992636919021606,0.0189757880596921,0.0220380508939389,0.00198678852377256,0.0333756522449347,0.0359868516839943,0.00267040759576755,0.0271460945871483,0.0130825273727249,0.00237272045212953,0.00108574472548234,0.339252084493637,0.167043775320053,0.377752095460892,0.606081604957581,0.519044578075409,0.446598052978516,0.51808226108551,0.340615183115005,0.95145457983017,0.985568463802338,0.972913384437561,0.969233393669128,0.872418284416199,0.967849612236023,0.995322585105896,0.997465789318085 + } + Transform: *16 { + a: 2.83276944882399e-16,1,-1.22464679914735e-16,0,1,-2.83276944882399e-16,3.46914203822471e-32,0,0,-1.22464679914735e-16,-1,0,-8.00878,-6.97018,2.50482,1 + } + TransformLink: *16 { + a: 2.83276944882399e-16,1,-0,0,1,-2.83276944882399e-16,-1.22464679914735e-16,0,-1.22464679914735e-16,3.46914203822471e-32,-1,0,6.97018,8.00878,2.50482,1 + } + } + Deformer: 140263212966144, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *52 { + a: 1,7,54,70,130,132,133,135,158,162,163,165,189,190,195,196,229,230,231,232,234,236,246,247,248,249,251,252,274,275,276,277,278,301,302,303,304,305,306,317,318,319,320,321,325,326,327,328,329,330,331,332 + } + Weights: *52 { + a: 0.00576713352366579,0.00163341695104283,0.00430376540133412,0.00277796644921613,0.00208372589538902,0.0283591101660297,0.0343055980337183,0.00225701251380346,0.00553034641867893,0.00879035478522151,0.0225814143129356,0.0185912035110117,0.974957764148712,0.901190161705017,0.981303691864014,0.842978477478027,0.999923050403595,0.998256027698517,0.999975621700287,0.972319066524506,0.0217051786629464,0.0183384379535723,0.00100655238420322,0.898118138313293,0.996318280696869,0.965939174735117,0.0054928600290504,0.980298697948456,0.995597302913666,0.999727308750153,0.994741320610046,0.999187707901001,0.942803382873535,0.877895712852478,0.970696687698364,0.802266180515289,0.751907234069264,0.954077290949577,0.831977893444748,0.00280822932147252,0.00382364351249583,0.00413585008876542,0.00240303247185245,0.00308035969500966,0.0344097576523808,0.00805056199786473,0.0128425639470168,0.0173890194236132,0.0759471211855045,0.0115355567561632,0.00194200382477049,0.00123109329905933 + } + Transform: *16 { + a: 1,-1.49975978266186e-32,-1.22464679914735e-16,0,-0,-1,1.22464679914735e-16,0,-1.22464679914735e-16,-1.22464679914735e-16,-1,0,-6.97017999999999,-1.95247,0.994928000000002,1 + } + TransformLink: *16 { + a: 1,6.07716335728627e-64,-1.22464679914735e-16,0,-1.49975978266186e-32,-1,-1.22464679914735e-16,0,-1.22464679914735e-16,1.22464679914735e-16,-1,0,6.97018,-1.95247,0.994928,1 + } + } + Deformer: 140263212685792, "SubDeformer::", "Cluster" { + Version: 100 + UserData: "", "" + Indexes: *20 { + a: 132,133,189,232,233,234,235,236,249,250,251,252,301,302,303,304,305,306,318,325 + } + Weights: *20 { + a: 0.0165189654477376,0.0204463365789837,0.00109468064302515,0.00345186020695417,0.999087572097778,0.976160049438477,0.999941885471344,0.979482591152191,0.00254153122815551,0.999998092651367,0.99448961019516,0.00126949839646475,0.0894955994981272,0.0258694190590702,0.113650134431875,0.146647046221542,0.0421289131045341,0.13221975401692,0.00131928310933668,0.00301649588763406 + } + Transform: *16 { + a: 1,-1.49975978266186e-32,-1.22464679914735e-16,0,-0,-1,1.22464679914735e-16,0,-1.22464679914735e-16,-1.22464679914735e-16,-1,0,-7.15823,-2.32493,15.5541,1 + } + TransformLink: *16 { + a: 1,6.07716335728627e-64,-1.22464679914735e-16,0,-1.49975978266186e-32,-1,-1.22464679914735e-16,0,-1.22464679914735e-16,1.22464679914735e-16,-1,0,7.15823,-2.32493,15.5541,1 + } + } + AnimationStack: 140263208814800, "AnimStack::Walk", "" { + Properties70: { + P: "LocalStart", "KTime", "Time", "",1539538600 + P: "LocalStop", "KTime", "Time", "",61581544000 + P: "ReferenceStart", "KTime", "Time", "",1539538600 + P: "ReferenceStop", "KTime", "Time", "",61581544000 + } + } + AnimationStack: 140263218853632, "AnimStack::Sit", "" { + Properties70: { + P: "LocalStart", "KTime", "Time", "",63121082600 + P: "LocalStop", "KTime", "Time", "",115465395000 + P: "ReferenceStart", "KTime", "Time", "",63121082600 + P: "ReferenceStop", "KTime", "Time", "",115465395000 + } + } + AnimationLayer: 140263216108416, "AnimLayer::BaseLayer", "" { + } + AnimationLayer: 140263212750480, "AnimLayer::BaseLayer", "" { + } + AnimationLayer: 140263218932096, "AnimLayer::BaseLayer", "" { + } + AnimationCurveNode: 140263217724000, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217723488, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217725408, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217727104, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217728832, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217730912, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217732512, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263208218848, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217734592, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263213022080, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217735056, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263213061584, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263212325840, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263212327440, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263208893888, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217744480, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217746224, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217757632, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263213032736, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217764032, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217763136, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263219999552, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 140263216157040, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-6.16297582203915e-32 + P: "d|Y", "Number", "", "A",18.1669210438599 + P: "d|Z", "Number", "", "A",1.6107979413437 + } + } + AnimationCurveNode: 140263219660256, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263216270000, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263219812560, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",13.2992755957793 + P: "d|Y", "Number", "", "A",2.95303239545392e-15 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219607376, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263223860080, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263199318608, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-10.5169129441403 + P: "d|Y", "Number", "", "A",-2.57872126185848 + P: "d|Z", "Number", "", "A",0.408673446543083 + } + } + AnimationCurveNode: 140263223866192, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263211202864, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-25.1324598336974 + P: "d|Y", "Number", "", "A",208.20018217294 + P: "d|Z", "Number", "", "A",69.7807747573361 + } + } + AnimationCurveNode: 140263644926848, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",10.2833354601049 + P: "d|Y", "Number", "", "A",-4.68168380665176e-15 + P: "d|Z", "Number", "", "A",0.88709915751546 + } + } + AnimationCurveNode: 140263644944192, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263644931872, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",13.2542937377157 + P: "d|Y", "Number", "", "A",24.4742439031339 + P: "d|Z", "Number", "", "A",9.61687346064374 + } + } + AnimationCurveNode: 140263644923600, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",8.43872689782861 + P: "d|Y", "Number", "", "A",0.0500414896794807 + P: "d|Z", "Number", "", "A",-1.47465554698342 + } + } + AnimationCurveNode: 140263644924864, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263223867632, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-1.28192078162372 + P: "d|Y", "Number", "", "A",33.8275498619728 + P: "d|Z", "Number", "", "A",4.6845678959859 + } + } + AnimationCurveNode: 140263223874032, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",10.5169 + P: "d|Y", "Number", "", "A",-2.57871534113465 + P: "d|Z", "Number", "", "A",0.408672058656304 + } + } + AnimationCurveNode: 140263223872816, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263220255584, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",12.7259165318994 + P: "d|Y", "Number", "", "A",-33.2090738490162 + P: "d|Z", "Number", "", "A",122.949925280128 + } + } + AnimationCurveNode: 140263219733408, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-10.283319940974 + P: "d|Y", "Number", "", "A",-3.95824845824677e-05 + P: "d|Z", "Number", "", "A",-0.8871 + } + } + AnimationCurveNode: 140263219731360, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219761728, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",3.29145516947993 + P: "d|Y", "Number", "", "A",32.9614652108254 + P: "d|Z", "Number", "", "A",-26.5438907896113 + } + } + AnimationCurveNode: 140263219782240, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-8.43872176476769 + P: "d|Y", "Number", "", "A",-0.0500365169369275 + P: "d|Z", "Number", "", "A",1.47466000129142 + } + } + AnimationCurveNode: 140263219796960, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219871424, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",1.47880199058779e-06 + P: "d|Y", "Number", "", "A",1.72157516957459e-08 + P: "d|Z", "Number", "", "A",0.436669445610624 + } + } + AnimationCurveNode: 140263219932560, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-0.0615726066661259 + P: "d|Y", "Number", "", "A",4.84377226016513 + P: "d|Z", "Number", "", "A",0.392025523074009 + } + } + AnimationCurveNode: 140263219933552, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263220141536, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",4.96840587988316e-15 + P: "d|Y", "Number", "", "A",-16.2122624824406 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263220105728, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.174791413632857 + P: "d|Y", "Number", "", "A",6.97017965046555 + P: "d|Z", "Number", "", "A",-0.133056975438815 + } + } + AnimationCurveNode: 140263220132800, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263211827520, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",1.29802123993536e-14 + P: "d|Y", "Number", "", "A",37.6853984526463 + P: "d|Z", "Number", "", "A",180 + } + } + AnimationCurveNode: 140263216046320, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",10.3329368295242 + P: "d|Y", "Number", "", "A",-4.07072971542725e-15 + P: "d|Z", "Number", "", "A",1.02708024859843 + } + } + AnimationCurveNode: 140263219700992, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219597008, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",9.0754819163185e-15 + P: "d|Y", "Number", "", "A",30.5788142773509 + P: "d|Z", "Number", "", "A",9.0754819163185e-15 + } + } + AnimationCurveNode: 140263213108672, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",9.96124845436145 + P: "d|Y", "Number", "", "A",4.52693781491609e-16 + P: "d|Z", "Number", "", "A",-1.50989369457526 + } + } + AnimationCurveNode: 140263217471664, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263217762032, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-26.8186235688724 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263217740560, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.174778956140141 + P: "d|Y", "Number", "", "A",-6.97018 + P: "d|Z", "Number", "", "A",-0.133057941343696 + } + } + AnimationCurveNode: 140263218660624, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263209706224, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-180 + P: "d|Y", "Number", "", "A",22.2001861887618 + P: "d|Z", "Number", "", "A",3.30679327708753e-16 + } + } + AnimationCurveNode: 140263221861104, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-10.33292 + P: "d|Y", "Number", "", "A",1.77635683940025e-15 + P: "d|Z", "Number", "", "A",-1.02708 + } + } + AnimationCurveNode: 140263218678384, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218647504, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",9.41261086315571e-15 + P: "d|Y", "Number", "", "A",14.8554739636778 + P: "d|Z", "Number", "", "A",-1.16027596106472e-14 + } + } + AnimationCurveNode: 140263218682624, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-9.96125 + P: "d|Y", "Number", "", "A",8.88178419700125e-16 + P: "d|Z", "Number", "", "A",1.509892 + } + } + AnimationCurveNode: 140263214569072, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218694208, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",7.72014889128425 + P: "d|Y", "Number", "", "A",7.95138670365879e-16 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263211575120, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263220139536, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263209878064, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263214836240, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263209946272, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263214584816, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",37.0730448312694 + P: "d|Z", "Number", "", "A",24.9893668427472 + } + } + AnimationCurveNode: 140263221996000, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263221997824, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263209836640, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-25.7498612798811 + P: "d|Y", "Number", "", "A",10.3996371898307 + P: "d|Z", "Number", "", "A",-11.0957000739183 + } + } + AnimationCurveNode: 140263218614592, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263214579312, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263214618976, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-22.4434318177934 + P: "d|Y", "Number", "", "A",26.0293462368022 + P: "d|Z", "Number", "", "A",-9.88894134373056 + } + } + AnimationCurveNode: 140263219467568, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219466688, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263221852128, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",13.4769580635899 + P: "d|Y", "Number", "", "A",32.9406818774497 + P: "d|Z", "Number", "", "A",-10.8576141446904 + } + } + AnimationCurveNode: 140263221857104, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218440832, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218444560, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-24.9140139271498 + P: "d|Y", "Number", "", "A",-22.5415057150611 + P: "d|Z", "Number", "", "A",-20.4938076908625 + } + } + AnimationCurveNode: 140263218450080, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218452144, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218455536, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263213010848, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263213009504, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263212776160, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",16.2122624824406 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263212789888, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263212790432, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263217930960, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",37.6853984526463 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263212627536, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263212721792, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263222798128, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",30.5788142773509 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263222801056, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263212754832, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263217936896, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-26.8186235688724 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263217856224, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263217857600, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263217861008, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-22.2001861887618 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263217994208, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263217848976, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263213000608, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",14.8554739636778 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263217548880, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263217550896, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263212761696, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",7.72014889128426 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263212751840, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217714032, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217715536, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263212562560, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263208910848, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263212612816, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263212614288, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263212854432, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263212855904, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263212612512, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217720880, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217718704, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263208184096, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263208185440, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263208377920, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263208398560, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263208400000, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263217719136, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263212323008, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263208554048, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263212797296, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263208615616, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 140263217507648, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-6.16297582203915e-32 + P: "d|Y", "Number", "", "A",18.1669210438599 + P: "d|Z", "Number", "", "A",1.6107979413437 + } + } + AnimationCurveNode: 140263212989296, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263213088640, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263212818080, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",13.2992755957793 + P: "d|Y", "Number", "", "A",2.95303239545392e-15 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263212835184, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263212831776, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263212838128, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-10.5169129441403 + P: "d|Y", "Number", "", "A",-2.57872126185848 + P: "d|Z", "Number", "", "A",0.408673446543083 + } + } + AnimationCurveNode: 140263212819440, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263212821328, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-25.1324598336974 + P: "d|Y", "Number", "", "A",208.20018217294 + P: "d|Z", "Number", "", "A",69.7807747573361 + } + } + AnimationCurveNode: 140263212842432, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",10.2833354601049 + P: "d|Y", "Number", "", "A",-4.68168380665176e-15 + P: "d|Z", "Number", "", "A",0.88709915751546 + } + } + AnimationCurveNode: 140263212825776, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263212860128, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",13.2542937377157 + P: "d|Y", "Number", "", "A",24.4742439031339 + P: "d|Z", "Number", "", "A",9.61687346064374 + } + } + AnimationCurveNode: 140263212689248, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",8.43872689782861 + P: "d|Y", "Number", "", "A",0.0500414896794807 + P: "d|Z", "Number", "", "A",-1.47465554698342 + } + } + AnimationCurveNode: 140263212980416, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263212982272, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-1.28192078162372 + P: "d|Y", "Number", "", "A",33.8275498619728 + P: "d|Z", "Number", "", "A",4.6845678959859 + } + } + AnimationCurveNode: 140263212884240, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",10.5169 + P: "d|Y", "Number", "", "A",-2.57871534113465 + P: "d|Z", "Number", "", "A",0.408672058656304 + } + } + AnimationCurveNode: 140263213082992, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263217470480, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",12.7259165318994 + P: "d|Y", "Number", "", "A",-33.2090738490162 + P: "d|Z", "Number", "", "A",122.949925280128 + } + } + AnimationCurveNode: 140263212678768, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-10.283319940974 + P: "d|Y", "Number", "", "A",-3.95824845824677e-05 + P: "d|Z", "Number", "", "A",-0.8871 + } + } + AnimationCurveNode: 140263212741712, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263212744400, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",3.29145516947993 + P: "d|Y", "Number", "", "A",32.9614652108254 + P: "d|Z", "Number", "", "A",-26.5438907896113 + } + } + AnimationCurveNode: 140263212707584, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-8.43872176476769 + P: "d|Y", "Number", "", "A",-0.0500365169369275 + P: "d|Z", "Number", "", "A",1.47466000129142 + } + } + AnimationCurveNode: 140263212720016, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263212710656, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",1.47880199058779e-06 + P: "d|Y", "Number", "", "A",1.72157516957459e-08 + P: "d|Z", "Number", "", "A",0.436669445610624 + } + } + AnimationCurveNode: 140263213129264, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-0.0615726066661259 + P: "d|Y", "Number", "", "A",4.84377226016513 + P: "d|Z", "Number", "", "A",0.392025523074009 + } + } + AnimationCurveNode: 140263213093424, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263213122160, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",4.96840587988316e-15 + P: "d|Y", "Number", "", "A",-16.2122624824406 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263212559184, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.174791413632857 + P: "d|Y", "Number", "", "A",6.97017965046555 + P: "d|Z", "Number", "", "A",-0.133056975438815 + } + } + AnimationCurveNode: 140263213213312, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263213215216, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",1.29802123993536e-14 + P: "d|Y", "Number", "", "A",37.6853984526463 + P: "d|Z", "Number", "", "A",180 + } + } + AnimationCurveNode: 140263217594544, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",10.3329368295242 + P: "d|Y", "Number", "", "A",-4.07072971542725e-15 + P: "d|Z", "Number", "", "A",1.02708024859843 + } + } + AnimationCurveNode: 140263217580528, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263217685408, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",9.0754819163185e-15 + P: "d|Y", "Number", "", "A",30.5788142773509 + P: "d|Z", "Number", "", "A",9.0754819163185e-15 + } + } + AnimationCurveNode: 140263217691360, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",9.96124845436145 + P: "d|Y", "Number", "", "A",4.52693781491609e-16 + P: "d|Z", "Number", "", "A",-1.50989369457526 + } + } + AnimationCurveNode: 140263217693152, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263217468048, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-26.8186235688724 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263217609376, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.174778956140141 + P: "d|Y", "Number", "", "A",-6.97018 + P: "d|Z", "Number", "", "A",-0.133057941343696 + } + } + AnimationCurveNode: 140263217611168, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263217572416, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-180 + P: "d|Y", "Number", "", "A",22.2001861887618 + P: "d|Z", "Number", "", "A",3.30679327708753e-16 + } + } + AnimationCurveNode: 140263213152560, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-10.33292 + P: "d|Y", "Number", "", "A",1.77635683940025e-15 + P: "d|Z", "Number", "", "A",-1.02708 + } + } + AnimationCurveNode: 140263212771264, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263213139712, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",9.41261086315571e-15 + P: "d|Y", "Number", "", "A",14.8554739636778 + P: "d|Z", "Number", "", "A",-1.16027596106472e-14 + } + } + AnimationCurveNode: 140263217584560, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-9.96125 + P: "d|Y", "Number", "", "A",8.88178419700125e-16 + P: "d|Z", "Number", "", "A",1.509892 + } + } + AnimationCurveNode: 140263217590480, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263217589888, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",7.72014889128425 + P: "d|Y", "Number", "", "A",7.95138670365879e-16 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263217662160, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263217603584, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263217605440, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263217559776, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263217555984, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263217557856, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",37.0730448312694 + P: "d|Z", "Number", "", "A",24.9893668427472 + } + } + AnimationCurveNode: 140263214584560, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263221860224, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218647200, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-25.7498612798811 + P: "d|Y", "Number", "", "A",10.3996371898307 + P: "d|Z", "Number", "", "A",-11.0957000739183 + } + } + AnimationCurveNode: 140263209781600, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263214655680, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263214656896, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-22.4434318177934 + P: "d|Y", "Number", "", "A",26.0293462368022 + P: "d|Z", "Number", "", "A",-9.88894134373056 + } + } + AnimationCurveNode: 140263215304192, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263215305408, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263209927312, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",13.4769580635899 + P: "d|Y", "Number", "", "A",32.9406818774497 + P: "d|Z", "Number", "", "A",-10.8576141446904 + } + } + AnimationCurveNode: 140263209830976, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263214907376, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263221882976, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-24.9140139271498 + P: "d|Y", "Number", "", "A",-22.5415057150611 + P: "d|Z", "Number", "", "A",-20.4938076908625 + } + } + AnimationCurveNode: 140263209930464, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263215223376, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263215273408, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263214777760, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263221755376, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263221757248, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",16.2122624824406 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263221899312, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263221901168, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263221903040, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",37.6853984526463 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263209995456, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219187312, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219122928, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",30.5788142773509 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218942608, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218848128, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218850000, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-26.8186235688724 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218828800, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218830656, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218832528, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-22.2001861887618 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218840000, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218841856, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218931472, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",14.8554739636778 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218886384, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218888240, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218935088, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",7.72014889128426 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218933200, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263218852560, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263221652640, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263221653952, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263221655344, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263221631792, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263221633184, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263221636944, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263221657152, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263221658864, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263221660192, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263219474320, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263219475664, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263219472176, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263219494608, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263219496000, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263219497392, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263221658544, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263219500688, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263219502080, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263219503472, "AnimCurveNode::lockInfluenceWeights", "" { + Properties70: { + P: "d|lockInfluenceWeights", "Bool", "", "A",0 + } + } + AnimationCurveNode: 140263219504864, "AnimCurveNode::Visibility", "" { + Properties70: { + P: "d|Visibility", "Visibility", "", "A",1 + } + } + AnimationCurveNode: 140263219507616, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-6.16297582203915e-32 + P: "d|Y", "Number", "", "A",18.1669210438599 + P: "d|Z", "Number", "", "A",1.6107979413437 + } + } + AnimationCurveNode: 140263218891552, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218878592, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263218860720, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",13.2992755957793 + P: "d|Y", "Number", "", "A",2.95303239545392e-15 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218865056, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218866864, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218872736, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-10.5169129441403 + P: "d|Y", "Number", "", "A",-2.57872126185848 + P: "d|Z", "Number", "", "A",0.408673446543083 + } + } + AnimationCurveNode: 140263218874560, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218862560, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-25.1324598336974 + P: "d|Y", "Number", "", "A",208.20018217294 + P: "d|Z", "Number", "", "A",69.7807747573361 + } + } + AnimationCurveNode: 140263209942672, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",10.2833354601049 + P: "d|Y", "Number", "", "A",-4.68168380665176e-15 + P: "d|Z", "Number", "", "A",0.88709915751546 + } + } + AnimationCurveNode: 140263218774880, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219498912, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",13.2542937377157 + P: "d|Y", "Number", "", "A",24.4742439031339 + P: "d|Z", "Number", "", "A",9.61687346064374 + } + } + AnimationCurveNode: 140263218781520, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",8.43872689782861 + P: "d|Y", "Number", "", "A",0.0500414896794807 + P: "d|Z", "Number", "", "A",-1.47465554698342 + } + } + AnimationCurveNode: 140263218783344, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218785152, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-1.28192078162372 + P: "d|Y", "Number", "", "A",33.8275498619728 + P: "d|Z", "Number", "", "A",4.6845678959859 + } + } + AnimationCurveNode: 140263218791024, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",10.5169 + P: "d|Y", "Number", "", "A",-2.57871534113465 + P: "d|Z", "Number", "", "A",0.408672058656304 + } + } + AnimationCurveNode: 140263218792848, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218794656, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",12.7259165318994 + P: "d|Y", "Number", "", "A",-33.2090738490162 + P: "d|Z", "Number", "", "A",122.949925280128 + } + } + AnimationCurveNode: 140263218800528, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-10.283319940974 + P: "d|Y", "Number", "", "A",-3.95824845824677e-05 + P: "d|Z", "Number", "", "A",-0.8871 + } + } + AnimationCurveNode: 140263218893872, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218895680, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",3.29145516947993 + P: "d|Y", "Number", "", "A",32.9614652108254 + P: "d|Z", "Number", "", "A",-26.5438907896113 + } + } + AnimationCurveNode: 140263218803696, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-8.43872176476769 + P: "d|Y", "Number", "", "A",-0.0500365169369275 + P: "d|Z", "Number", "", "A",1.47466000129142 + } + } + AnimationCurveNode: 140263218805520, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219111504, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",1.47880199058779e-06 + P: "d|Y", "Number", "", "A",1.72157516957459e-08 + P: "d|Z", "Number", "", "A",0.436669445610624 + } + } + AnimationCurveNode: 140263218812112, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-0.0615726066661259 + P: "d|Y", "Number", "", "A",4.84377226016513 + P: "d|Z", "Number", "", "A",0.392025523074009 + } + } + AnimationCurveNode: 140263218814000, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218815808, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",4.96840587988316e-15 + P: "d|Y", "Number", "", "A",-16.2122624824406 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263218514704, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.174791413632857 + P: "d|Y", "Number", "", "A",6.97017965046555 + P: "d|Z", "Number", "", "A",-0.133056975438815 + } + } + AnimationCurveNode: 140263218516352, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218518160, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",1.29802123993536e-14 + P: "d|Y", "Number", "", "A",37.6853984526463 + P: "d|Z", "Number", "", "A",180 + } + } + AnimationCurveNode: 140263219067120, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",10.3329368295242 + P: "d|Y", "Number", "", "A",-4.07072971542725e-15 + P: "d|Z", "Number", "", "A",1.02708024859843 + } + } + AnimationCurveNode: 140263215007920, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263214929936, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",9.0754819163185e-15 + P: "d|Y", "Number", "", "A",30.5788142773509 + P: "d|Z", "Number", "", "A",9.0754819163185e-15 + } + } + AnimationCurveNode: 140263215189632, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",9.96124845436145 + P: "d|Y", "Number", "", "A",4.52693781491609e-16 + P: "d|Z", "Number", "", "A",-1.50989369457526 + } + } + AnimationCurveNode: 140263214938736, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263214940480, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-26.8186235688724 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263215196608, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0.174778956140141 + P: "d|Y", "Number", "", "A",-6.97018 + P: "d|Z", "Number", "", "A",-0.133057941343696 + } + } + AnimationCurveNode: 140263215198432, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263215193872, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-180 + P: "d|Y", "Number", "", "A",22.2001861887618 + P: "d|Z", "Number", "", "A",3.30679327708753e-16 + } + } + AnimationCurveNode: 140263215024496, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-10.33292 + P: "d|Y", "Number", "", "A",1.77635683940025e-15 + P: "d|Z", "Number", "", "A",-1.02708 + } + } + AnimationCurveNode: 140263215015776, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263215023088, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",9.41261086315571e-15 + P: "d|Y", "Number", "", "A",14.8554739636778 + P: "d|Z", "Number", "", "A",-1.16027596106472e-14 + } + } + AnimationCurveNode: 140263215017760, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",-9.96125 + P: "d|Y", "Number", "", "A",8.88178419700125e-16 + P: "d|Z", "Number", "", "A",1.509892 + } + } + AnimationCurveNode: 140263221721952, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263221723728, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",7.72014889128425 + P: "d|Y", "Number", "", "A",7.95138670365879e-16 + P: "d|Z", "Number", "", "A",90 + } + } + AnimationCurveNode: 140263214642896, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263214644528, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263214649504, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218507136, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218508864, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218510608, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",37.0730448312694 + P: "d|Z", "Number", "", "A",24.9893668427472 + } + } + AnimationCurveNode: 140263218493552, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218495312, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218496992, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-25.7498612798811 + P: "d|Y", "Number", "", "A",10.3996371898307 + P: "d|Z", "Number", "", "A",-11.0957000739183 + } + } + AnimationCurveNode: 140263218486688, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218488448, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218490128, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-22.4434318177934 + P: "d|Y", "Number", "", "A",26.0293462368022 + P: "d|Z", "Number", "", "A",-9.88894134373056 + } + } + AnimationCurveNode: 140263219078624, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219080384, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219062624, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",13.4769580635899 + P: "d|Y", "Number", "", "A",32.9406818774497 + P: "d|Z", "Number", "", "A",-10.8576141446904 + } + } + AnimationCurveNode: 140263218968640, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263218970400, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263218972080, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-24.9140139271498 + P: "d|Y", "Number", "", "A",-22.5415057150611 + P: "d|Z", "Number", "", "A",-20.4938076908625 + } + } + AnimationCurveNode: 140263219074000, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219075760, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219091920, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219131888, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219133648, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219135328, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",16.2122624824406 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219127872, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219099056, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219100736, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",37.6853984526463 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219113984, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219115744, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219117424, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",30.5788142773509 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219141968, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219143728, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219145440, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-26.8186235688724 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263214687296, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263214689056, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263214690736, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",-22.2001861887618 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219039968, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219096064, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219089680, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",14.8554739636778 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219054432, "AnimCurveNode::T", "" { + Properties70: { + P: "d|X", "Number", "", "A",0 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurveNode: 140263219027280, "AnimCurveNode::S", "" { + Properties70: { + P: "d|X", "Number", "", "A",1 + P: "d|Y", "Number", "", "A",1 + P: "d|Z", "Number", "", "A",1 + } + } + AnimationCurveNode: 140263219028960, "AnimCurveNode::R", "" { + Properties70: { + P: "d|X", "Number", "", "A",7.72014889128426 + P: "d|Y", "Number", "", "A",0 + P: "d|Z", "Number", "", "A",0 + } + } + AnimationCurve: 140263215986096, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219541360, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: -6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263220458656, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219564288, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219638800, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263216258848, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219619552, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263216162336, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263220065168, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219695792, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 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,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,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263223858880, "AnimCurve::FbxMayaSample Curve", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263216300288, "AnimCurve::FbxMayaSample Curve", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219812240, "AnimCurve::FbxMayaSample Curve", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263211845008, "AnimCurve::FbxMayaSample Curve", "" { + Default: -25.1324596405029 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: -25.13246,-24.94611,-24.42855,-23.65528,-22.70825,-21.66386,-20.58511,-19.51795,-18.49134,-17.51973,-16.60694,-15.75049,-14.94599,-14.19117,-13.48942,-12.85228,-12.3007,-11.86418,-11.57749,-11.47519,-11.56773,-11.82817,-12.22708,-12.73429,-13.32342,-13.97472,-14.67613,-15.42267,-16.21483,-17.05605,-17.94971,-18.89591,-19.88799,-20.90927,-21.93036,-22.90774,-23.78434,-24.49315,-24.96386,-25.13246,-0.1242611,-0.653863,-1.711684,-3.23371,-5.155392,-7.411562,-9.936449,-12.66383,-15.5274,-18.46116,-21.39991,-24.27963,-27.03789,-29.61399,-31.94902,-33.98553,-35.66726,-36.93843,-37.74311,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263211844848, "AnimCurve::FbxMayaSample Curve", "" { + Default: 208.200180053711 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: -151.7998,-152.1718,-153.2394,-154.9353,-157.1945,-159.9496,-163.1277,-166.6494,-170.4288,-174.3751,-178.3935,-182.3869,-186.2578,-189.9089,-193.2448,-196.1723,-198.601,-200.4428,-201.6113,-202.0202,-201.6505,-200.5914,-198.9168,-196.7008,-194.0186,-190.9471,-187.5656,-183.9554,-180.1995,-176.3813,-172.5846,-168.8918,-165.3829,-162.1345,-159.2182,-156.7008,-154.6434,-153.1033,-152.1361,-151.7998,-180.0984,-180.1605,-179.978,-179.578,-178.9867,-178.2294,-177.3306,-176.3141,-175.2034,-174.0226,-172.7968,-171.5531,-170.3208,-169.1317,-168.0204,-167.0239,-166.1808,-165.5309,-165.1134,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263223865664, "AnimCurve::FbxMayaSample Curve", "" { + Default: 69.7807769775391 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 69.78078,70.46788,70.71627,70.61781,70.27481,69.78679,69.2414,68.70973,68.24508,67.8839,67.64772,67.54504,67.57278,67.71702,67.95342,68.24767,68.55681,68.83232,69.02565,69.09638,68.99034,68.69685,68.26307,67.74355,67.19363,66.66481,66.20202,65.84225,65.61406,65.53741,65.62311,65.87203,66.2738,66.8052,67.42888,68.09303,68.73292,69.27533,69.64611,69.78078,67.08242,67.46127,67.81767,68.14592,68.44118,68.69972,68.91917,69.09863,69.2388,69.34194,69.41169,69.4528,69.47079,69.47144,69.46044,69.44301,69.42367,69.40621,69.39378,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263644930160, "AnimCurve::FbxMayaSample Curve", "" { + Default: 13.2542934417725 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 13.25429,13.42516,13.90757,14.65145,15.60493,16.71904,17.95086,19.26484,20.63249,22.0309,23.44058,24.84288,26.21744,27.53988,28.77995,29.90064,30.85823,31.6039,32.08661,32.25741,32.10294,31.66484,30.98484,30.10671,29.07292,27.9221,26.68764,25.39729,24.07368,22.73549,21.39911,20.08056,18.79752,17.57121,16.42792,15.39989,14.52525,13.8467,13.40882,13.25429,14.01198,13.96524,13.89149,13.79023,13.66124,13.50474,13.32155,13.11318,12.882,12.63142,12.36595,12.09129,11.81438,11.54331,11.28718,11.05585,10.85957,10.70847,10.61201,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263644930000, "AnimCurve::FbxMayaSample Curve", "" { + Default: 24.4742450714111 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 24.47425,24.16337,23.27445,21.87173,20.01908,17.78142,15.22568,12.42104,9.43881,6.351893,3.233998,0.1587776,-2.801077,-5.574667,-8.093552,-10.29212,-12.10752,-13.47905,-14.34685,-14.65008,-14.37593,-13.58949,-12.34301,-10.68782,-8.675726,-6.36012,-3.796587,-1.04303,1.840482,4.7922,7.749252,10.64838,13.42655,16.02173,18.3733,20.42251,22.11239,23.38752,24.19318,24.47425,32.32986,33.67311,35.03435,36.40237,37.76603,39.11429,40.43626,41.7212,42.95855,44.13801,45.24949,46.28312,47.22935,48.0788,48.82234,49.45097,49.95576,50.32776,50.55787,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263644944816, "AnimCurve::FbxMayaSample Curve", "" { + Default: 9.61687278747559 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 9.616873,9.56072,9.391038,9.096594,8.659778,8.063112,7.293961,6.347407,5.227656,3.948469,2.533098,1.014071,-0.5669945,-2.159556,-3.704465,-5.134732,-6.377098,-7.354795,-7.991666,-8.217657,-8.013265,-7.435043,-6.542519,-5.400665,-4.075553,-2.63094,-1.125937,0.3864551,1.86008,3.255987,4.542562,5.695674,6.698817,7.543277,8.228069,8.759415,9.14938,9.413361,9.566177,9.616873,2.097675,1.534664,0.9681894,0.3968031,-0.1802792,-0.7630707,-1.350684,-1.941197,-2.531548,-3.117411,-3.693128,-4.251653,-4.784592,-5.28229,-5.734037,-6.128377,-6.453544,-6.698007,-6.851115,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263216307216, "AnimCurve::FbxMayaSample Curve", "" { + Default: -1.2819207906723 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: -1.281921,-1.123481,-0.684752,-0.03268227,0.7609915,1.631319,2.527235,3.414089,4.272637,5.095849,5.884712,6.643822,7.377204,8.084634,8.758672,9.382747,9.930726,10.36844,10.65745,10.76083,10.66731,10.40468,10.00433,9.499426,8.920237,8.290918,7.627962,6.940144,6.229696,5.494322,4.729848,3.933291,3.106221,2.258155,1.409621,0.594215,-0.1412428,-0.7394112,-1.13856,-1.281921,-1.182733e-14,4.503483e-15,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,4.503483e-15,-1.182733e-14,4.503483e-15,-1.182733e-14,4.503483e-15,4.503483e-15,-1.182733e-14,-1.182733e-14,2.08343e-14,4.503483e-15,-1.182733e-14,-1.182733e-14,4.503483e-15,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263216307056, "AnimCurve::FbxMayaSample Curve", "" { + Default: 33.8275489807129 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 33.82755,33.44956,32.36636,30.65045,28.37293,25.60713,22.43071,18.92643,15.18178,11.28796,7.338602,3.428415,-0.348176,-3.898222,-7.131249,-9.959937,-12.30028,-14.07112,-15.19274,-15.58488,-15.23035,-14.21381,-12.60418,-10.46971,-7.879669,-4.905457,-1.62116,1.896494,5.568495,9.314307,13.05268,16.70272,20.18484,23.42192,26.34019,28.8699,30.94539,32.50433,33.48582,33.82755,7.114651e-15,-1.239749e-14,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,-1.239749e-14,7.114651e-15,-1.239749e-14,7.114651e-15,-1.239749e-14,-1.239749e-14,7.114651e-15,7.114651e-15,-3.190964e-14,-1.239749e-14,7.114651e-15,7.114651e-15,-1.239749e-14,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263223869712, "AnimCurve::FbxMayaSample Curve", "" { + Default: 4.68456792831421 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 4.684568,4.852761,5.314593,5.988504,6.782958,7.6101,8.39466,9.078172,9.619705,9.994621,10.19265,10.21612,10.07883,9.805415,9.43106,9.000924,8.568611,8.192895,7.932208,7.836773,7.923153,8.160728,8.50718,8.912802,9.326786,9.701837,9.997037,10.17936,10.22424,10.11588,9.847495,9.422049,8.853359,8.167587,7.404638,6.618781,5.877482,5.257391,4.836785,4.684568,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263220254416, "AnimCurve::FbxMayaSample Curve", "" { + Default: 12.7259168624878 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 12.72592,12.7524,12.84299,13.028,13.34402,13.82214,14.48119,15.32554,16.34583,17.5212,18.8217,20.21027,21.64403,23.07503,24.45056,25.71349,26.80295,27.65584,28.20948,28.4056,28.22824,27.72569,26.94753,25.94726,24.77917,23.49603,22.1478,20.78093,19.4381,18.15798,16.97482,15.91771,15.00926,14.26394,13.68614,13.2687,12.99278,12.83027,12.74974,12.72592,0,-2.602068,-5.309474,-8.105158,-10.96815,-13.8741,-16.79569,-19.70319,-22.56504,-25.34835,-28.01946,-30.5444,-32.88931,-35.02083,-36.90635,-38.51421,-39.81395,-40.7763,-41.37326,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263220254256, "AnimCurve::FbxMayaSample Curve", "" { + Default: -33.2090721130371 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: -33.20907,-32.75299,-31.44701,-29.38098,-26.64331,-23.32444,-19.51891,-15.32608,-10.84982,-6.197649,-1.479465,3.19376,7.711219,11.96333,15.8425,19.24358,22.06378,24.20225,25.55907,26.0339,25.6046,24.37475,22.43046,19.85734,16.74165,13.17107,9.235203,5.025614,0.635703,-3.839878,-8.3059,-12.66752,-16.83121,-20.70585,-24.20355,-27.24028,-29.73587,-31.61327,-32.79674,-33.20907,0,3.134004,6.106204,8.911503,11.54649,14.00933,16.29958,18.41782,20.36542,22.14417,23.7559,25.20218,26.48403,27.6017,28.55456,29.34103,29.95868,30.40436,30.67448,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263223874800, "AnimCurve::FbxMayaSample Curve", "" { + Default: 122.949920654297 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 122.9499,122.1155,121.6995,121.6164,121.7739,122.0858,122.4805,122.9039,123.3188,123.7026,124.0439,124.3394,124.5912,124.8042,124.984,125.135,125.2594,125.3558,125.4196,125.443,125.47,125.5462,125.6634,125.8107,125.9745,126.1385,126.284,126.3912,126.4402,126.4128,126.2941,126.0747,125.7527,125.3368,124.8481,124.3221,123.8082,123.3665,123.0614,122.9499,114.0213,114.029,114.0545,114.1004,114.1688,114.261,114.3778,114.5194,114.685,114.8731,115.0809,115.3046,115.5391,115.7778,116.0128,116.2345,116.4317,116.5917,116.6998,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219760544, "AnimCurve::FbxMayaSample Curve", "" { + Default: 3.29145526885986 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 3.291455,3.045277,2.345835,1.254636,-0.1658592,-1.85524,-3.757048,-5.819473,-7.995015,-10.2394,-12.51004,-14.76438,-16.95825,-19.04454,-20.97225,-22.68612,-24.12704,-25.23308,-25.94137,-26.19051,-25.96523,-25.32285,-24.31583,-22.9981,-21.42302,-19.64194,-17.70322,-15.65174,-13.5291,-11.37408,-9.223652,-7.114112,-5.082408,-3.167376,-1.410857,0.1416359,1.440824,2.434441,3.068848,3.291455,11.29946,10.94945,9.939878,8.318794,6.120277,3.367344,0.07511173,-3.744705,-8.077189,-12.89462,-18.14411,-23.73397,-29.5228,-35.31647,-40.8774,-45.94518,-50.26162,-53.58971,-55.72057,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219760384, "AnimCurve::FbxMayaSample Curve", "" { + Default: 32.9614639282227 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 32.96146,32.68972,31.9137,30.69209,29.08381,27.14857,24.94712,22.54122,19.99348,17.36686,14.72405,12.12686,9.635547,7.308178,5.200275,3.364671,1.851803,0.7104406,-0.01105172,-0.2630465,-0.03522575,0.6185945,1.655734,3.0347,4.713835,6.650306,8.799416,11.11432,13.54601,16.04358,18.55458,21.02558,23.40264,25.63185,27.65973,29.43355,30.90143,32.01232,32.71577,32.96146,25.82783,26.15369,27.0795,28.52225,30.3928,32.59681,35.03541,37.60625,40.20523,42.72937,45.08132,47.1758,48.94754,50.35926,51.40718,52.12141,52.55968,52.7951,52.90007,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219732048, "AnimCurve::FbxMayaSample Curve", "" { + Default: -26.5438919067383 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: -26.54389,-28.44588,-30.22803,-31.87775,-33.37874,-34.71483,-35.87279,-36.84399,-37.62519,-38.21884,-38.63302,-38.88133,-38.98274,-38.96138,-38.84623,-38.67043,-38.47028,-38.2836,-38.14754,-38.09572,-38.05427,-37.93204,-37.72844,-37.43974,-37.06136,-36.58966,-36.02328,-35.36406,-34.61762,-33.7937,-32.90639,-31.97414,-31.02003,-30.07169,-29.16138,-28.32561,-27.6044,-27.03977,-26.67348,-26.54389,0.6162707,2.634157,4.248652,5.45643,6.23858,6.565839,6.403375,5.71615,4.47586,2.670232,0.3147991,-2.534274,-5.770101,-9.232843,-12.71965,-16.00576,-18.86975,-21.1124,-22.56345,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219788208, "AnimCurve::FbxMayaSample Curve", "" { + Default: 1.47880200529471e-06 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 1.478802e-06,0.002508178,0.009632389,0.02058547,0.03404363,0.0478397,0.05880097,0.06279755,0.05501894,0.03046608,-0.01537364,-0.08571737,-0.1816141,-0.3011091,-0.438586,-0.5844674,-0.7254795,-0.845672,-0.9282873,-0.9584169,-0.9311485,-0.8558948,-0.7452476,-0.6135405,-0.4747289,-0.3408231,-0.2209585,-0.1210437,-0.04387312,0.01044859,0.0438995,0.05986623,0.06248219,0.05603946,0.04451501,0.03124159,0.01874219,0.008731636,0.002267996,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219768160, "AnimCurve::FbxMayaSample Curve", "" { + Default: 1.72157506028725e-08 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 1.721575e-08,0.2473838,0.9535421,2.064426,3.525819,5.283246,7.281921,9.466767,11.78251,14.17381,16.58553,18.96293,21.25192,23.39937,25.3532,27.06253,28.47752,29.5491,30.22841,30.46604,30.2512,29.63549,28.66134,27.37065,25.80542,24.00819,22.02232,19.89213,17.66286,15.38056,13.09191,10.84404,8.68435,6.660262,4.819131,3.20811,1.874122,0.8638223,0.223671,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219796576, "AnimCurve::FbxMayaSample Curve", "" { + Default: 0.436669439077377 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 0.4366694,0.3856879,0.2373154,-0.004641685,-0.3389348,-0.765233,-1.282777,-1.889298,-2.580147,-3.347564,-4.18004,-5.061722,-5.971882,-6.884503,-7.768094,-8.585911,-9.296801,-9.856868,-10.22208,-10.35175,-10.23447,-9.902867,-9.391516,-8.738022,-7.980258,-7.154204,-6.292517,-5.423704,-4.571831,-3.756553,-2.993394,-2.294107,-1.667127,-1.11803,-0.6500572,-0.2647066,0.03755102,0.2564004,0.390597,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263215817376, "AnimCurve::FbxMayaSample Curve", "" { + Default: 4.96840600684224e-15 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 4.968406e-15,4.967079e-15,4.963318e-15,6.609975e-15,4.949952e-15,6.588155e-15,4.931355e-15,4.921029e-15,4.910469e-15,4.083313e-15,3.259871e-15,4.066821e-15,4.059411e-15,3.242186e-15,2.42813e-15,4.041944e-15,3.230382e-15,3.228039e-15,3.22658e-15,2.419556e-15,3.226531e-15,2.420889e-15,3.229977e-15,4.041071e-15,4.045561e-15,3.24071e-15,3.245588e-15,4.876532e-15,4.071165e-15,4.894836e-15,4.904672e-15,4.914701e-15,4.924686e-15,4.934359e-15,4.943426e-15,3.30105e-15,4.958474e-15,3.309196e-15,4.967206e-15,4.968406e-15,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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263215817216, "AnimCurve::FbxMayaSample Curve", "" { + Default: -16.2122611999512 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: -16.21226,-16.15953,-16.00901,-15.77221,-15.46062,-15.08576,-14.65913,-14.19223,-13.69657,-13.18365,-12.66498,-12.15206,-11.6564,-11.1895,-10.76287,-10.388,-10.07642,-9.839612,-9.689093,-9.636363,-9.684038,-9.820488,-10.03585,-10.32026,-10.66385,-11.05676,-11.48912,-11.95108,-12.43276,-12.92431,-13.41586,-13.89755,-14.3595,-14.79187,-15.18478,-15.52837,-15.81278,-16.02814,-16.16459,-16.21226,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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219931968, "AnimCurve::FbxMayaSample Curve", "" { + Default: 90 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 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,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,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263216098848, "AnimCurve::FbxMayaSample Curve", "" { + Default: 1.29802115575645e-14 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 1.298021e-14,1.016553e-14,1.195239e-14,1.300233e-14,1.137341e-14,9.581291e-15,6.431666e-15,4.868493e-15,4.128831e-15,2.158995e-15,3.038094e-16,-1.565991e-15,-3.138548e-15,-3.218907e-15,-4.8241e-15,-8.015434e-15,-7.659688e-15,-8.733752e-15,-1.121403e-14,-6.013328e-15,-1.123916e-14,-8.810146e-15,-9.694053e-15,-8.304583e-15,-6.875432e-15,-5.339119e-15,-3.738772e-15,-2.149125e-15,-4.333996e-16,1.048325e-15,2.976724e-15,3.937182e-15,3.75908e-15,6.900308e-15,1.010234e-14,1.171581e-14,5.162403e-15,1.072435e-14,1.527948e-14,1.298021e-14,0,-2.153879e-15,-4.418971e-15,-6.869462e-15,-1.132355e-14,-9.101929e-15,-1.094268e-14,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: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263211826336, "AnimCurve::FbxMayaSample Curve", "" { + Default: 37.6853981018066 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 37.6854,37.14148,35.58883,33.14614,29.93206,26.06529,21.66448,16.84831,11.73546,6.444602,1.094406,-4.196454,-9.309303,-14.12547,-18.52628,-22.39306,-25.60713,-28.04983,-29.60247,-30.14639,-29.65461,-28.2471,-26.02561,-23.09189,-19.54768,-15.49473,-11.03479,-6.269605,-1.300931,3.769499,8.83992,13.80861,18.57379,23.03373,27.08667,30.6309,33.56462,35.78611,37.19361,37.6854,0,-6.429504,-12.95729,-19.53241,-26.10385,-32.62069,-39.03197,-45.28668,-51.33389,-57.12263,-62.60196,-67.72087,-72.42843,-76.67365,-80.4056,-83.5733,-86.12576,-88.01205,-89.18121,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263220132112, "AnimCurve::FbxMayaSample Curve", "" { + Default: 180 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,180,180,180,180,180,180,180,180,180,180,180,180,180 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219702880, "AnimCurve::FbxMayaSample Curve", "" { + Default: 9.07548199731347e-15 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 9.075482e-15,9.048492e-15,8.972466e-15,1.032852e-14,8.796712e-15,7.445633e-15,8.352136e-15,4.772712e-15,6.291284e-15,7.621468e-15,5.318516e-15,5.057929e-15,4.246785e-15,4.592154e-15,3.288459e-15,1.986187e-15,3.041817e-15,2.38116e-15,1.797859e-15,1.894927e-15,2.161444e-15,2.37296e-15,2.833988e-15,1.549342e-15,3.368583e-15,3.050096e-15,4.319605e-15,4.9583e-15,5.063601e-15,6.035945e-15,7.394836e-15,8.045013e-15,6.527997e-15,8.408612e-15,1.023109e-14,8.747359e-15,8.875558e-15,1.015213e-14,1.005758e-14,9.075482e-15,0,2.914405e-16,7.582673e-16,2.214215e-15,3.256935e-15,4.546273e-15,8.024183e-15,8.838198e-15,1.55447e-14,1.252412e-14,2.171685e-14,2.611543e-14,4.457906e-14,4.22001e-14,5.979417e-14,1.30245e-13,1.391084e-13,1.540127e-12,-7.887776e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263219595904, "AnimCurve::FbxMayaSample Curve", "" { + Default: 30.5788154602051 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 30.57882,30.38367,29.82663,28.95027,27.79715,26.40987,24.831,23.1031,21.26877,19.37057,17.45108,15.55288,13.71855,11.99065,10.41178,9.024494,7.871384,6.995018,6.437977,6.242835,6.41927,6.924242,7.721245,8.773776,10.04533,11.49941,13.09949,14.8091,16.59171,18.41082,20.22994,22.01255,23.72215,25.32224,26.77631,28.04787,29.1004,29.89741,30.40238,30.57882,0,0.7405235,2.854382,6.180019,10.55584,15.8203,21.81183,28.36884,35.32977,42.53304,49.81713,57.02041,63.98134,70.53835,76.52988,81.79433,86.17016,89.49579,91.60966,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263216047520, "AnimCurve::FbxMayaSample Curve", "" { + Default: 9.07548199731347e-15 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 9.075482e-15,9.048492e-15,8.972466e-15,-2.361226e-14,-2.403512e-14,-3.092231e-14,8.352136e-15,7.468109e-15,7.653562e-15,-3.096469e-14,1.368746e-14,1.353104e-14,-3.793095e-14,1.327446e-14,-2.525021e-14,-2.53668e-14,-2.529531e-14,1.289149e-14,-3.17547e-14,1.284446e-14,-2.536321e-14,1.288904e-14,6.566822e-15,-3.178014e-14,-2.524646e-14,-2.526598e-14,-2.511564e-14,1.347357e-14,-3.140355e-14,7.422296e-15,-3.098848e-14,8.045013e-15,7.870923e-15,8.408612e-15,1.551277e-14,-2.404128e-14,8.875558e-15,-2.36252e-14,-2.363418e-14,9.075482e-15,1.272222e-14,-3.180433e-14,-2.543344e-14,-2.536196e-14,-2.52519e-14,-2.50572e-14,8.024183e-15,2.847843e-14,3.832992e-14,3.217825e-14,2.411157e-14,2.142451e-14,3.534612e-14,3.763646e-14,5.526493e-14,1.21226e-13,1.301075e-13,1.526633e-12,-8.14222e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263217761232, "AnimCurve::FbxMayaSample Curve", "" { + Default: -26.81862449646 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: -26.81862,-26.5085,-25.62325,-24.23052,-22.39798,-20.19329,-17.68413,-14.93814,-12.02299,-9.006352,-5.955882,-2.939242,-0.0240972,2.721891,5.231058,7.435744,9.268281,10.66101,11.54627,11.85639,11.576,10.77349,9.506884,7.834188,5.813422,3.502588,0.9597085,-1.757213,-4.590155,-7.481115,-10.37207,-13.20502,-15.92194,-18.46482,-20.77565,-22.79642,-24.46912,-25.73572,-26.53823,-26.81862,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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263217739424, "AnimCurve::FbxMayaSample Curve", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 0,0,0,1.590277e-15,0,0,1.590277e-15,0,0,0,0,-1.987847e-16,0,0,-3.975693e-16,0,0,7.951387e-16,0,0,0,0,0,7.951387e-16,3.975693e-16,0,0,0,3.975693e-16,0,0,0,0,-1.590277e-15,0,-1.590277e-15,-1.590277e-15,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,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263212995280, "AnimCurve::FbxMayaSample Curve", "" { + Default: 90 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 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,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,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263218606880, "AnimCurve::FbxMayaSample Curve", "" { + Default: -180 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,-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,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180,-180 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263218606720, "AnimCurve::FbxMayaSample Curve", "" { + Default: 22.2001857757568 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 22.20019,21.7334,20.40095,18.30467,15.54641,12.22801,8.451312,4.318161,-0.06959639,-4.610119,-9.201565,-13.74209,-18.12985,-22.26299,-26.03969,-29.3581,-32.11636,-34.21264,-35.54509,-36.01187,-35.58984,-34.38193,-32.47549,-29.95782,-26.91624,-23.43807,-19.61063,-15.52123,-11.2572,-6.905846,-2.554499,1.709545,5.798938,9.626377,13.10455,16.14613,18.6638,20.57025,21.77815,22.20019,-7.06225e-31,0.7183284,2.76883,5.994792,10.23946,15.34613,21.15808,27.51856,34.27086,41.25824,48.32401,55.31139,62.06369,68.42416,74.23612,79.34279,83.58746,86.81342,88.86392,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263218668912, "AnimCurve::FbxMayaSample Curve", "" { + Default: 3.30679333267474e-16 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 3.306793e-16,3.227486e-16,6.009474e-16,0,6.765263e-15,2.599616e-16,2.961641e-16,1.952694e-16,-4.278389e-18,-3.208431e-16,-7.753382e-16,-1.371016e-15,-2.109141e-15,-2.985765e-15,-3.987481e-15,-1.260857e-14,-4.154969e-15,-5.656564e-15,-4.772664e-15,-1.355598e-14,-5.976434e-15,-4.556143e-15,-1.145632e-14,-5.692961e-15,-4.565861e-15,3.620164e-15,-2.300017e-15,-1.560091e-15,-1.033718e-15,-5.547589e-16,-1.685448e-16,9.642096e-17,2.829955e-16,3.383537e-16,2.794771e-16,2.325029e-16,0,3.03275e-16,0,3.306793e-16,0,4.299359e-17,1.394407e-16,2.926481e-16,3.605221e-16,2.201851e-16,6.261326e-16,4.264892e-16,-1.133964e-15,-2.981236e-15,-5.873776e-15,-7.781952e-15,-6.999605e-15,-9.72605e-15,-9.588837e-15,-1.74409e-14,-1.183783e-13,-2.359069e-13,-6.783032e-13,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263218646320, "AnimCurve::FbxMayaSample Curve", "" { + Default: 9.4126104276831e-15 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 9.41261e-15,9.197876e-15,9.758988e-15,9.636569e-15,1.287146e-14,1.144823e-14,1.020147e-14,1.21145e-14,1.430477e-14,1.3713e-14,1.599294e-14,1.603386e-14,1.607387e-14,1.414111e-14,1.614648e-14,6.896322e-15,1.620181e-14,1.259236e-14,1.408394e-14,1.218081e-14,8.96411e-15,1.215722e-14,1.256763e-14,1.620138e-14,1.60764e-14,1.602494e-14,1.597413e-14,1.592635e-14,1.382003e-14,1.530812e-14,1.277996e-14,1.41171e-14,1.127213e-14,1.079687e-14,1.022215e-14,9.266688e-15,9.326668e-15,9.981829e-15,1.001363e-14,9.41261e-15,7.01671e-15,7.145137e-15,7.331301e-15,7.620555e-15,7.947196e-15,9.943451e-15,1.356174e-14,1.424183e-14,1.268241e-14,1.798405e-14,2.267476e-14,2.507085e-14,3.123177e-14,4.275867e-14,5.669634e-14,1.196201e-13,2.366795e-13,2.254594e-12,-2.035555e-13,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263218646160, "AnimCurve::FbxMayaSample Curve", "" { + Default: 14.8554735183716 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 14.85547,16.48159,18.05755,19.57906,21.04179,22.44143,23.77366,25.03417,26.21864,27.32276,28.3422,29.27266,30.10981,30.84935,31.48695,32.01831,32.43909,32.745,32.93171,32.9949,32.8634,32.487,31.89293,31.1084,30.16062,29.07679,27.88412,26.60983,25.28111,23.92519,22.56927,21.24055,19.96626,18.77359,17.68976,16.74197,15.95744,15.36338,14.98699,14.85547,7.01671e-15,0.7405235,2.854382,6.180019,10.55584,15.8203,21.81183,28.36884,35.32977,42.53304,49.81713,57.02041,63.98134,70.53835,76.52988,81.79433,86.17016,89.49579,91.60966,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263218678064, "AnimCurve::FbxMayaSample Curve", "" { + Default: -1.1602759802476e-14 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: -1.160276e-14,-5.095358e-15,-1.133113e-14,-1.124749e-14,-1.054932e-14,-1.71841e-14,-4.353166e-15,-1.034246e-14,-9.731366e-15,-3.213236e-15,-2.522507e-15,-2.38709e-15,-2.263705e-15,-9.295921e-15,-2.057245e-15,-1.125684e-14,-1.91173e-15,-2.930392e-15,-9.103559e-15,-3.026695e-15,-3.988304e-15,-3.083581e-15,-3.024683e-15,-2.093376e-15,-2.256167e-15,-2.415743e-15,-2.588553e-15,-2.770285e-15,-9.938824e-15,-3.258922e-15,-1.04229e-14,-3.824858e-15,-1.093365e-14,-4.662587e-15,-4.846992e-15,-1.149563e-14,-1.153933e-14,-1.149107e-14,-1.151464e-14,-1.160276e-14,-1.272222e-14,-6.315068e-15,-6.180429e-15,-1.232936e-14,-5.654044e-15,-1.146287e-14,-3.865079e-15,-2.961528e-15,-2.636985e-15,-6.652281e-15,3.515898e-15,6.37918e-15,1.200859e-14,2.24491e-14,3.661805e-14,9.51924e-14,2.213652e-13,2.23484e-12,-2.29e-13,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263218641632, "AnimCurve::FbxMayaSample Curve", "" { + Default: 7.72014904022217 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 7.720149,7.407452,6.514845,5.110552,3.262797,1.039807,-1.490194,-4.258984,-7.198334,-10.24002,-13.31582,-16.35751,-19.29686,-22.06565,-24.59565,-26.81864,-28.66639,-30.07069,-30.96329,-31.27599,-30.99327,-30.1841,-28.90698,-27.22039,-25.18285,-22.85283,-20.28883,-17.54935,-14.69289,-11.77792,-8.862966,-6.006491,-3.267015,-0.7030205,1.626997,3.664551,5.351133,6.628255,7.437426,7.720149,0,0,0,0,-1.403342e-14,0,-1.403342e-14,0,0,-1.403342e-14,0,-1.403342e-14,2.544444e-14,-3.947786e-14,-1.403342e-14,0,0,0,2.544444e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263218641472, "AnimCurve::FbxMayaSample Curve", "" { + Default: 7.95138679647378e-16 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 7.951387e-16,0,0,-3.975693e-16,1.987847e-16,-9.939233e-17,-9.939233e-17,0,0,7.951387e-16,0,0,0,1.590277e-15,-1.590277e-15,0,1.590277e-15,0,3.180555e-15,-3.180555e-15,0,0,0,0,1.590277e-15,3.180555e-15,0,0,0,-7.951387e-16,0,3.975693e-16,-1.987847e-16,4.969617e-17,-9.939233e-17,0,3.975693e-16,0,0,7.951387e-16,0,0,0,0,1.41245e-30,0,1.41245e-30,0,0,1.41245e-30,0,0,0,-2.8249e-30,0,0,0,0,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263218641104, "AnimCurve::FbxMayaSample Curve", "" { + Default: 90 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 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,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,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 75 + } + } + AnimationCurve: 140263214537872, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263214537328, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263218643680, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263214583888, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 0,0.1808721,0.6971796,1.509459,2.578249,3.864085,5.327504,6.929044,8.629241,10.38863,12.16776,13.92715,15.62735,17.22889,18.6923,19.97814,21.04693,21.85921,22.37552,22.55639,22.39285,21.92481,21.18609,20.21052,19.03195,17.68421,16.20113,14.61654,12.96428,11.27819,9.592105,7.939849,6.355263,4.87218,3.524436,2.345865,1.370301,0.6315789,0.1635338,0,0.158519,0.6122115,1.32828,2.273928,3.416358,4.722774,6.160378,7.696373,9.297961,10.93235,12.56673,14.16832,15.70432,17.14192,18.44834,19.59077,20.53641,21.25248,21.70617,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *23 { + a: 24840,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:9.34716, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:9.34716, NextLeftSlope:17.7104, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:17.7104, NextLeftSlope:25.0897, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:25.0897, NextLeftSlope:31.4852, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:31.4852, NextLeftSlope:36.8967, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:36.8967, NextLeftSlope:41.3243, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:41.3243, NextLeftSlope:44.768, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:44.768, NextLeftSlope:47.2277, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:47.2277, NextLeftSlope:48.7036, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:48.7036, NextLeftSlope:49.1956, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:49.1956, NextLeftSlope:48.7036, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:48.7036, NextLeftSlope:47.2277, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:47.2277, NextLeftSlope:44.768, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:44.768, NextLeftSlope:41.3243, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:41.3243, NextLeftSlope:36.8967, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:36.8967, NextLeftSlope:31.4852, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; + ;RightSlope:31.4852, NextLeftSlope:25.0897, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:25.0897, NextLeftSlope:17.7104, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:17.7104, NextLeftSlope:9.34716, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:9.34716, NextLeftSlope:9.34716, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *92 { + a: 0,0,218434821,0,0,1091931636,218434821,0,1091931636,1099804391,218434821,0,1099804391,1103673288,218434821,0,1103673288,1107026332,218434821,0,1107026332,1108579889,218434821,0,1108579889,1109740558,218434821,0,1109740558,1110643300,218434821,0,1110643300,1111288116,218434821,0,1111288116,1111675006,218434821,0,1111675006,1111803969,218434821,0,1111803969,1111675006,218434821,0,1111675006,1111288116,218434821,0,1111288116,1110643301,218434821,0,1110643301,1109740558,218434821,0,1109740558,1108579889,218434821,0,1108579889,1107026330,218434821,0,1107026330,1103673285,218434821,0,1103673285,1099804394,218434821,0,1099804394,1091931639,218434821,0,1091931639,1091931639,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *23 { + a: 39,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,15 + } + } + AnimationCurve: 140263222004784, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,37.07304,36.6929,35.60776,33.90057,31.65427,28.95179,25.87608,22.51008,18.93673,15.23897,11.49973,7.801969,4.228618,0.8626171,-2.213092,-4.915569,-7.161872,-8.869064,-9.954203,-10.33435,-9.990642,-9.006939,-7.454347,-5.403977,-2.926941,-0.09434967,3.022686,6.353055,9.825647,13.36935,16.91305,20.38564,23.71601,26.83305,29.66564,32.14268,34.19305,35.74564,36.72934,37.07304,0,0.280169,1.079924,2.338138,3.993681,5.985429,8.252251,10.73302,13.36661,16.09189,18.84773,21.57301,24.2066,26.68737,28.95419,30.94594,32.60148,33.8597,34.65945,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,20,15 + } + } + AnimationCurve: 140263221994576, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,24.98937,25.87256,26.66287,27.36547,27.98551,28.52816,28.99856,29.40189,29.7433,30.02795,30.261,30.44762,30.59295,30.70217,30.78043,30.83289,30.8647,30.88104,30.88706,30.88792,30.84516,30.72276,30.52959,30.27447,29.96627,29.61384,29.22601,28.81163,28.37956,27.93864,27.49773,27.06566,26.65129,26.26345,25.91102,25.60282,25.3477,25.15453,25.03213,24.98937,28.70051,29.08167,29.44785,29.7984,30.13269,30.45007,30.7499,31.03154,31.29433,31.53765,31.76085,31.96328,32.1443,32.30327,32.43955,32.55249,32.64145,32.7058,32.74487,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *5 { + a: 24840,24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:27.9405; RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *20 { + a: 0,1105167926,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *5 { + a: 1,39,1,20,15 + } + } + AnimationCurve: 140263214575648, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,-25.74986,-25.6691,-25.43857,-25.07589,-24.59867,-24.02455,-23.37113,-22.65605,-21.89691,-21.11134,-20.31697,-19.5314,-18.77226,-18.05717,-17.40376,-16.82963,-16.35242,-15.98974,-15.7592,-15.67845,-15.75146,-15.96045,-16.29028,-16.72587,-17.2521,-17.85387,-18.51607,-19.22359,-19.96132,-20.71415,-21.46699,-22.20472,-22.91224,-23.57443,-24.1762,-24.70243,-25.13802,-25.46786,-25.67684,-25.74986,-31.49212,-32.37931,-33.27243,-34.16532,-35.05181,-35.92574,-36.78096,-37.61132,-38.41064,-39.17276,-39.89154,-40.5608,-41.1744,-41.72617,-42.20995,-42.61958,-42.9489,-43.19176,-43.34199,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,20,15 + } + } + AnimationCurve: 140263209838592, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,10.39964,10.06116,9.094948,7.574862,5.57475,3.168461,0.4298448,-2.567247,-5.748964,-9.041457,-12.37088,-15.66337,-18.84509,-21.84218,-24.58079,-26.98708,-28.9872,-30.50728,-31.47349,-31.81197,-31.50594,-30.63004,-29.24762,-27.42196,-25.21641,-22.69426,-19.91885,-16.95348,-13.86148,-10.70617,-7.550848,-4.458848,-1.493483,1.28193,3.804074,6.00963,7.835283,9.217712,10.0936,10.39964,15.96061,17.00085,18.06454,19.14258,20.22585,21.30525,22.37167,23.416,24.42912,25.40194,26.32534,27.19022,27.98746,28.70795,29.34259,29.88226,30.31787,30.64029,30.84042,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,20,15 + } + } + AnimationCurve: 140263214577600, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,-11.0957,-10.95484,-10.55274,-9.920144,-9.087778,-8.086378,-6.946677,-5.699409,-4.375308,-3.005106,-1.619537,-0.2493358,1.074767,2.322034,3.461735,4.463134,5.2955,5.928098,6.330195,6.471056,6.343698,5.979187,5.403876,4.644114,3.726251,2.676637,1.521623,0.2875581,-0.9992073,-2.312322,-3.625437,-4.912202,-6.146266,-7.301281,-8.350895,-9.268758,-10.02852,-10.60383,-10.96834,-11.0957,-4.527143,-4.241297,-3.98551,-3.758114,-3.557437,-3.38181,-3.229563,-3.099025,-2.988528,-2.8964,-2.820972,-2.760575,-2.713537,-2.678189,-2.65286,-2.635882,-2.625584,-2.620296,-2.618347,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,20,15 + } + } + AnimationCurve: 140263214581856, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,-22.44343,-22.24671,-21.68517,-20.80172,-19.63929,-18.2408,-16.64916,-14.9073,-13.05814,-11.1446,-9.209599,-7.296058,-5.446898,-3.70504,-2.113403,-0.714909,0.4475224,1.33097,1.892514,2.089233,1.911371,1.402318,0.5988736,-0.4621643,-1.743996,-3.209823,-4.822846,-6.546265,-8.343283,-10.1771,-12.01092,-13.80793,-15.53135,-17.14438,-18.6102,-19.89203,-20.95307,-21.75652,-22.26557,-22.44343,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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,1,34 + } + } + AnimationCurve: 140263218663760, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,26.02935,25.67027,24.64526,23.03267,20.91085,18.35813,15.45286,12.27338,8.898045,5.405192,1.873167,-1.619686,-4.995021,-8.174497,-11.07977,-13.63249,-15.75431,-17.3669,-18.39191,-18.75099,-18.42633,-17.49714,-16.03058,-14.09383,-11.75406,-9.078434,-6.134127,-2.988308,0.2918504,3.639181,6.986511,10.26667,13.41249,16.35679,19.03242,21.37219,23.30894,24.7755,25.70469,26.02935,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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,1,34 + } + } + AnimationCurve: 140263218665392, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,-9.888942,-9.883594,-9.868327,-9.844308,-9.812704,-9.774682,-9.73141,-9.684053,-9.63378,-9.581755,-9.529147,-9.477122,-9.426848,-9.379492,-9.33622,-9.298198,-9.266594,-9.242575,-9.227308,-9.22196,-9.226795,-9.240636,-9.262479,-9.291326,-9.326176,-9.366028,-9.409882,-9.456738,-9.505593,-9.55545,-9.605309,-9.654164,-9.70102,-9.744874,-9.784726,-9.819576,-9.848423,-9.870266,-9.884107,-9.888942,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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,1,34 + } + } + AnimationCurve: 140263221994320, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,13.47696,13.06778,11.89976,10.06218,7.644316,4.735434,1.424815,-2.198267,-6.044538,-10.02472,-14.04954,-18.02972,-21.876,-25.49907,-28.8097,-31.71858,-34.13644,-35.97403,-37.14204,-37.55122,-37.18127,-36.12243,-34.45126,-32.24429,-29.57807,-26.52913,-23.17403,-19.5893,-15.85149,-12.03713,-8.222775,-4.48496,-0.9002309,2.454872,5.503805,8.170028,10.377,12.04817,13.107,13.47696,0,0.09127273,0.3518149,0.7617124,1.301051,1.949917,2.688397,3.496575,4.354539,5.242374,6.140166,7.028001,7.885964,8.694142,9.432623,10.08149,10.62083,11.03072,11.29127,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,20,15 + } + } + AnimationCurve: 140263221853984, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,32.94068,32.64037,31.78311,30.43443,28.65986,26.52491,24.09511,21.43597,18.61303,15.69181,12.73782,9.816597,6.993655,4.334524,1.904719,-0.230232,-2.004807,-3.353485,-4.210741,-4.511054,-4.239529,-3.462405,-2.235861,-0.616073,1.34078,3.578521,6.040974,8.671957,11.4153,14.21481,17.01433,19.75767,22.38865,24.85111,27.08885,29.0457,30.66549,31.89203,32.66916,32.94068,0,-4.071571,-8.077533,-12.00023,-15.82199,-19.52517,-23.0921,-26.50513,-29.74659,-32.79883,-35.64419,-38.26501,-40.64364,-42.76241,-44.60366,-46.14974,-47.38298,-48.28573,-48.84034,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,20,15 + } + } + AnimationCurve: 140263221855632, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,-10.85761,-11.89919,-12.88974,-13.82867,-14.71536,-15.54922,-16.32963,-17.05601,-17.72775,-18.34423,-18.90487,-19.40905,-19.85617,-20.24564,-20.57684,-20.84917,-21.06204,-21.21483,-21.30695,-21.33779,-21.26181,-21.04435,-20.70112,-20.24786,-19.70026,-19.07407,-18.385,-17.64877,-16.8811,-16.0977,-15.31431,-14.54664,-13.8104,-13.12133,-12.49514,-11.94755,-11.49428,-11.15106,-10.9336,-10.85761,-27.59672,-27.52102,-27.30495,-26.96502,-26.51774,-25.97964,-25.36721,-24.69698,-23.98546,-23.24917,-22.50463,-21.76834,-21.05682,-20.38659,-19.77417,-19.23606,-18.78878,-18.44885,-18.23278,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *5 { + a: 24840,24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:-32.0067; RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *20 { + a: 0,-1040185638,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *5 { + a: 1,39,1,20,15 + } + } + AnimationCurve: 140263218443520, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,-24.91401,-24.54817,-23.50384,-21.86085,-19.69903,-17.09819,-14.13815,-10.89874,-7.459771,-3.901075,-0.3024666,3.25623,6.695194,9.934605,12.89464,15.49548,17.65731,19.3003,20.34463,20.71047,20.37969,19.43299,17.93879,15.96552,13.58165,10.85558,7.855772,4.650652,1.308659,-2.101772,-5.512202,-8.854196,-12.05932,-15.05913,-17.78519,-20.16907,-22.14233,-23.63653,-24.58324,-24.91401,-25.26324,-25.23629,-25.15937,-25.03836,-24.87913,-24.68756,-24.46954,-24.23094,-23.97764,-23.71552,-23.45046,-23.18835,-22.93505,-22.69645,-22.47842,-22.28686,-22.12763,-22.00661,-21.92969,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,20,15 + } + } + AnimationCurve: 140263218446528, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,-22.54151,-22.49226,-22.35169,-22.13053,-21.83953,-21.48944,-21.09099,-20.65494,-20.19203,-19.71301,-19.22861,-18.74958,-18.28667,-17.85062,-17.45217,-17.10208,-16.81108,-16.58992,-16.44935,-16.4001,-16.44463,-16.57206,-16.7732,-17.03881,-17.3597,-17.72665,-18.13044,-18.56188,-19.01173,-19.47081,-19.92988,-20.37973,-20.81117,-21.21496,-21.58191,-21.9028,-22.16842,-22.36954,-22.49698,-22.54151,-12.57579,-13.02798,-14.31878,-16.34952,-19.02155,-22.23621,-25.89484,-29.89878,-34.14936,-38.54794,-42.99585,-47.39442,-51.64501,-55.64895,-59.30758,-62.52224,-65.19427,-67.22501,-68.51581,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,20,15 + } + } + AnimationCurve: 140263218448176, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,-20.49381,-22.40245,-24.20916,-25.91381,-27.51626,-29.01635,-30.41396,-31.70892,-32.90111,-33.99038,-34.97658,-35.85958,-36.63923,-37.31539,-37.88791,-38.35667,-38.7215,-38.98227,-39.13884,-39.19106,-39.0555,-38.66753,-38.0552,-37.24654,-36.26961,-35.15245,-33.92311,-32.60963,-31.24005,-29.84243,-28.44481,-27.07524,-25.76176,-24.53241,-23.41525,-22.43832,-21.62967,-21.01733,-20.62936,-20.49381,2.829104,4.994406,7.043049,8.974989,10.79018,12.48858,14.07015,15.53483,16.8826,18.1134,19.22718,20.22392,21.10355,21.86604,22.51135,23.03942,23.45023,23.74371,23.91983,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *5 { + a: 24840,24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:-58.7866; RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *20 { + a: 0,-1033165449,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *5 { + a: 1,39,1,20,15 + } + } + AnimationCurve: 140263218454496, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 0,-0.1606993,-0.6194229,-1.341109,-2.290696,-3.433122,-4.733326,-6.156246,-7.666819,-9.229985,-10.81068,-12.37385,-13.88442,-15.30734,-16.60755,-17.74997,-18.69956,-19.42125,-19.87997,-20.04067,-19.89537,-19.47953,-18.8232,-17.95644,-16.90931,-15.71188,-14.39421,-12.98635,-11.51837,-10.02033,-8.522294,-7.054316,-5.646459,-4.328784,-3.131354,-2.084229,-1.21747,-0.5611387,-0.1452948,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,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *3 { + a: 24840,1032,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *12 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *3 { + a: 39,1,35 + } + } + AnimationCurve: 140263217547888, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 0,-0.1880979,-0.7250319,-1.569762,-2.68125,-4.018455,-5.540338,-7.205859,-8.973979,-10.80366,-12.65386,-14.48354,-16.25166,-17.91718,-19.43906,-20.77627,-21.88775,-22.73249,-23.26942,-23.45752,-23.28745,-22.80071,-22.03247,-21.01793,-19.79228,-18.39069,-16.84836,-15.20047,-13.48221,-11.72876,-9.975309,-8.257046,-6.609156,-5.066824,-3.665237,-2.439582,-1.425044,-0.6568105,-0.170067,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,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *3 { + a: 24840,1032,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *12 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *3 { + a: 39,1,35 + } + } + AnimationCurve: 140263217750144, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + a: 0,-0.05072322,-0.195515,-0.4233084,-0.7230365,-1.083632,-1.49403,-1.943161,-2.419959,-2.913357,-3.41229,-3.905689,-4.382487,-4.831618,-5.242015,-5.602611,-5.902339,-6.130132,-6.274924,-6.325647,-6.279786,-6.14853,-5.941364,-5.66778,-5.337265,-4.959308,-4.543396,-4.09902,-3.635666,-3.162824,-2.689981,-2.226628,-1.782251,-1.36634,-0.9883823,-0.6578674,-0.3842831,-0.1771181,-0.04586095,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,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *3 { + a: 24840,1032,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *12 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *3 { + a: 39,1,35 + } + } + AnimationCurve: 140263212775120, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,16.21226,16.15953,16.00901,15.77221,15.46062,15.08576,14.65913,14.19223,13.69657,13.18365,12.66498,12.15206,11.6564,11.1895,10.76287,10.388,10.07642,9.839613,9.689094,9.636363,9.684038,9.820488,10.03585,10.32026,10.66385,11.05676,11.48912,11.95108,12.43277,12.92431,13.41586,13.89755,14.3595,14.79187,15.18478,15.52837,15.81278,16.02814,16.16459,16.21226,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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,1,34 + } + } + AnimationCurve: 140263212778336, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263212787552, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263217929856, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,37.6854,37.14148,35.58883,33.14614,29.93206,26.06529,21.66448,16.84831,11.73546,6.444602,1.094406,-4.196454,-9.309302,-14.12547,-18.52628,-22.39305,-25.60713,-28.04983,-29.60247,-30.14639,-29.65461,-28.2471,-26.02561,-23.09188,-19.54767,-15.49473,-11.03479,-6.269601,-1.300922,3.769503,8.839931,13.80861,18.57379,23.03373,27.08668,30.63089,33.56462,35.78611,37.19362,37.6854,0,-6.429509,-12.9573,-19.5324,-26.10385,-32.62069,-39.03195,-45.28667,-51.33389,-57.12264,-62.60195,-67.72087,-72.42843,-76.67365,-80.4056,-83.5733,-86.12577,-88.01205,-89.18121,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,20,15 + } + } + AnimationCurve: 140263217932960, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263217934608, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263222797088, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,30.57881,30.38367,29.82663,28.95026,27.79715,26.40987,24.831,23.1031,21.26877,19.37057,17.45108,15.55288,13.71855,11.99065,10.41178,9.024495,7.871383,6.995018,6.437977,6.242835,6.419271,6.924242,7.721245,8.773776,10.04533,11.49941,13.0995,14.8091,16.59171,18.41082,20.22994,22.01255,23.72215,25.32224,26.77632,28.04787,29.1004,29.89741,30.40238,30.57881,0,0.7405249,2.854387,6.180017,10.55585,15.8203,21.81182,28.36883,35.32977,42.53306,49.81713,57.02041,63.98135,70.53836,76.52988,81.79433,86.17017,89.4958,91.60965,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,20,15 + } + } + AnimationCurve: 140263218011920, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263218013552, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263218257936, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,-26.81862,-26.5085,-25.62325,-24.23052,-22.39798,-20.19329,-17.68413,-14.93814,-12.02299,-9.006352,-5.955882,-2.939242,-0.02409644,2.721892,5.231059,7.435743,9.268281,10.66101,11.54627,11.85639,11.576,10.77349,9.506882,7.834188,5.813418,3.502586,0.9597039,-1.757216,-4.59016,-7.481118,-10.37208,-13.20502,-15.92194,-18.46482,-20.77565,-22.79642,-24.46912,-25.73573,-26.53823,-26.81862,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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,1,34 + } + } + AnimationCurve: 140263217966384, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263217562928, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263217859968, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,-22.20019,-21.7334,-20.40095,-18.30467,-15.54641,-12.22801,-8.451311,-4.318161,0.0695975,4.61012,9.201566,13.74209,18.12985,22.263,26.03969,29.3581,32.11636,34.21264,35.54509,36.01187,35.58983,34.38194,32.47549,29.95782,26.91624,23.43807,19.61062,15.52123,11.25719,6.905842,2.554491,-1.709542,-5.798939,-9.626383,-13.10455,-16.14613,-18.6638,-20.57025,-21.77815,-22.20019,0,-0.7183298,-2.768835,-5.994789,-10.23946,-15.34614,-21.15808,-27.51856,-34.27086,-41.25825,-48.324,-55.3114,-62.06369,-68.42417,-74.23611,-79.34279,-83.58746,-86.81342,-88.86392,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,20,15 + } + } + AnimationCurve: 140263217862928, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263217864544, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263212848832, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,14.85547,16.48159,18.05755,19.57906,21.04179,22.44143,23.77366,25.03417,26.21864,27.32276,28.3422,29.27266,30.10982,30.84935,31.48696,32.01831,32.43909,32.745,32.93171,32.9949,32.86339,32.487,31.89293,31.1084,30.16062,29.07679,27.88412,26.60982,25.28111,23.92519,22.56927,21.24055,19.96626,18.77359,17.68976,16.74197,15.95744,15.36338,14.98698,14.85547,0,0.7405249,2.854387,6.180017,10.55585,15.8203,21.81182,28.36883,35.32977,42.53306,49.81713,57.02041,63.98135,70.53836,76.52988,81.79433,86.17017,89.4958,91.60965,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *5 { + a: 24840,24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:49.4924; RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *20 { + a: 0,1111881771,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *5 { + a: 1,39,1,20,15 + } + } + AnimationCurve: 140263217777200, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263218264400, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263212760656, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *76 { + a: 0,1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *76 { + a: 0,7.720149,7.407452,6.514845,5.110552,3.262798,1.039807,-1.490195,-4.258984,-7.198334,-10.24002,-13.31582,-16.35751,-19.29686,-22.06565,-24.59565,-26.81864,-28.6664,-30.07069,-30.96329,-31.27599,-30.99327,-30.1841,-28.90698,-27.22039,-25.18285,-22.85283,-20.28883,-17.54935,-14.69288,-11.77792,-8.86296,-6.006493,-3.267015,-0.7030171,1.627002,3.66455,5.351133,6.628257,7.437427,7.720149,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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *4 { + a: 24840,1032,24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *16 { + a: 0,0,218434821,0,0,0,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *4 { + a: 40,1,1,34 + } + } + AnimationCurve: 140263217601072, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263217791152, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *75 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000,63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *75 { + 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,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,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 40,35 + } + } + AnimationCurve: 140263208405136, "AnimCurve::", "" { + Default: 1 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217509376, "AnimCurve::", "" { + Default: -6.16297582203915e-32 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212734752, "AnimCurve::", "" { + Default: 18.1669216156006 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212736096, "AnimCurve::", "" { + Default: 1.61079788208008 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263643633312, "AnimCurve::", "" { + Default: 1 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263643634688, "AnimCurve::", "" { + Default: 1 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212730192, "AnimCurve::", "" { + Default: 1 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212752592, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212753968, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212748688, "AnimCurve::", "" { + Default: 90 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 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,90,90,90,90,90,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212667696, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263213143024, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263213144384, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212823056, "AnimCurve::", "" { + Default: -25.1324596405029 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -25.13246,-24.94611,-24.42855,-23.65528,-22.70825,-21.66386,-20.58511,-19.51795,-18.49134,-17.51973,-16.60694,-15.75049,-14.94599,-14.19117,-13.48942,-12.85228,-12.3007,-11.86418,-11.57749,-11.47519,-11.56773,-11.82817,-12.22708,-12.73429,-13.32342,-13.97472,-14.67613,-15.42267,-16.21483,-17.05605,-17.94971,-18.89591,-19.88799,-20.90927,-21.93036,-22.90774,-23.78434,-24.49315,-24.96386,-25.13246 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212828000, "AnimCurve::", "" { + Default: 208.200180053711 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -151.7998,-152.1718,-153.2394,-154.9353,-157.1945,-159.9496,-163.1277,-166.6494,-170.4288,-174.3751,-178.3935,-182.3869,-186.2578,-189.9089,-193.2448,-196.1723,-198.601,-200.4428,-201.6113,-202.0202,-201.6505,-200.5914,-198.9168,-196.7008,-194.0186,-190.9471,-187.5656,-183.9554,-180.1995,-176.3813,-172.5846,-168.8918,-165.3829,-162.1345,-159.2182,-156.7008,-154.6434,-153.1033,-152.1361,-151.7998 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212829344, "AnimCurve::", "" { + Default: 69.7807769775391 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 69.78078,70.46788,70.71627,70.61781,70.27481,69.78679,69.2414,68.70973,68.24508,67.8839,67.64772,67.54504,67.57278,67.71702,67.95342,68.24767,68.55681,68.83232,69.02565,69.09638,68.99034,68.69685,68.26307,67.74355,67.19363,66.66481,66.20202,65.84225,65.61406,65.53741,65.62311,65.87203,66.2738,66.8052,67.42888,68.09303,68.73292,69.27533,69.64611,69.78078 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212842032, "AnimCurve::", "" { + Default: 13.2542934417725 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 13.25429,13.42516,13.90757,14.65145,15.60493,16.71904,17.95086,19.26484,20.63249,22.0309,23.44058,24.84288,26.21744,27.53988,28.77995,29.90064,30.85823,31.6039,32.08661,32.25741,32.10294,31.66484,30.98484,30.10671,29.07292,27.9221,26.68764,25.39729,24.07368,22.73549,21.39911,20.08056,18.79752,17.57121,16.42792,15.39989,14.52525,13.8467,13.40882,13.25429 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212840144, "AnimCurve::", "" { + Default: 24.4742431640625 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 24.47425,24.16337,23.27445,21.87173,20.01908,17.78142,15.22568,12.42104,9.43881,6.351893,3.233998,0.1587776,-2.801077,-5.574667,-8.093552,-10.29212,-12.10752,-13.47905,-14.34685,-14.65008,-14.37593,-13.58949,-12.34301,-10.68782,-8.675726,-6.36012,-3.796587,-1.04303,1.840482,4.7922,7.749252,10.64838,13.42655,16.02173,18.3733,20.42251,22.11239,23.38752,24.19318,24.47425 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212836464, "AnimCurve::", "" { + Default: 9.6168737411499 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 9.616873,9.56072,9.391038,9.096594,8.659778,8.063112,7.293961,6.347407,5.227656,3.948469,2.533098,1.014071,-0.5669945,-2.159556,-3.704465,-5.134732,-6.377098,-7.354795,-7.991666,-8.217657,-8.013265,-7.435043,-6.542519,-5.400665,-4.075553,-2.63094,-1.125937,0.3864551,1.86008,3.255987,4.542562,5.695674,6.698817,7.543277,8.228069,8.759415,9.14938,9.413361,9.566177,9.616873 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212675712, "AnimCurve::", "" { + Default: -1.2819207906723 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -1.281921,-1.123481,-0.684752,-0.03268227,0.7609915,1.631319,2.527235,3.414089,4.272637,5.095849,5.884712,6.643822,7.377204,8.084634,8.758672,9.382747,9.930726,10.36844,10.65745,10.76083,10.66731,10.40468,10.00433,9.499426,8.920237,8.290918,7.627962,6.940144,6.229696,5.494322,4.729848,3.933291,3.106221,2.258155,1.409621,0.594215,-0.1412428,-0.7394112,-1.13856,-1.281921 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212676976, "AnimCurve::", "" { + Default: 33.8275489807129 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 33.82755,33.44956,32.36636,30.65045,28.37293,25.60713,22.43071,18.92643,15.18178,11.28796,7.338602,3.428415,-0.348176,-3.898222,-7.131249,-9.959937,-12.30028,-14.07112,-15.19274,-15.58488,-15.23035,-14.21381,-12.60418,-10.46971,-7.879669,-4.905457,-1.62116,1.896494,5.568495,9.314307,13.05268,16.70272,20.18484,23.42192,26.34019,28.8699,30.94539,32.50433,33.48582,33.82755 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212882704, "AnimCurve::", "" { + Default: 4.68456792831421 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 4.684568,4.852761,5.314593,5.988504,6.782958,7.6101,8.39466,9.078172,9.619705,9.994621,10.19265,10.21612,10.07883,9.805415,9.43106,9.000924,8.568611,8.192895,7.932208,7.836773,7.923153,8.160728,8.50718,8.912802,9.326786,9.701837,9.997037,10.17936,10.22424,10.11588,9.847495,9.422049,8.853359,8.167587,7.404638,6.618781,5.877482,5.257391,4.836785,4.684568 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212679728, "AnimCurve::", "" { + Default: 12.7259168624878 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 12.72592,12.7524,12.84299,13.028,13.34402,13.82214,14.48119,15.32554,16.34583,17.5212,18.8217,20.21027,21.64403,23.07503,24.45056,25.71349,26.80295,27.65584,28.20948,28.4056,28.22824,27.72569,26.94753,25.94726,24.77917,23.49603,22.1478,20.78093,19.4381,18.15798,16.97482,15.91771,15.00926,14.26394,13.68614,13.2687,12.99278,12.83027,12.74974,12.72592 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212694240, "AnimCurve::", "" { + Default: -33.2090721130371 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -33.20907,-32.75299,-31.44701,-29.38098,-26.64331,-23.32444,-19.51891,-15.32608,-10.84982,-6.197649,-1.479465,3.19376,7.711219,11.96333,15.8425,19.24358,22.06378,24.20225,25.55907,26.0339,25.6046,24.37475,22.43046,19.85734,16.74165,13.17107,9.235203,5.025614,0.635703,-3.839878,-8.3059,-12.66752,-16.83121,-20.70585,-24.20355,-27.24028,-29.73587,-31.61327,-32.79674,-33.20907 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212740672, "AnimCurve::", "" { + Default: 122.949928283691 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 122.9499,122.1155,121.6995,121.6164,121.7739,122.0858,122.4805,122.9039,123.3188,123.7026,124.0439,124.3394,124.5912,124.8042,124.984,125.135,125.2594,125.3558,125.4196,125.443,125.47,125.5462,125.6634,125.8107,125.9745,126.1385,126.284,126.3912,126.4402,126.4128,126.2941,126.0747,125.7527,125.3368,124.8481,124.3221,123.8082,123.3665,123.0614,122.9499 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263213145680, "AnimCurve::", "" { + Default: 3.29145526885986 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 3.291455,3.045277,2.345835,1.254636,-0.1658592,-1.85524,-3.757048,-5.819473,-7.995015,-10.2394,-12.51004,-14.76438,-16.95825,-19.04454,-20.97225,-22.68612,-24.12704,-25.23308,-25.94137,-26.19051,-25.96523,-25.32285,-24.31583,-22.9981,-21.42302,-19.64194,-17.70322,-15.65174,-13.5291,-11.37408,-9.223652,-7.114112,-5.082408,-3.167376,-1.410857,0.1416359,1.440824,2.434441,3.068848,3.291455 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263213146768, "AnimCurve::", "" { + Default: 32.9614639282227 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 32.96146,32.68972,31.9137,30.69209,29.08381,27.14857,24.94712,22.54122,19.99348,17.36686,14.72405,12.12686,9.635547,7.308178,5.200275,3.364671,1.851803,0.7104406,-0.01105172,-0.2630465,-0.03522575,0.6185945,1.655734,3.0347,4.713835,6.650306,8.799416,11.11432,13.54601,16.04358,18.55458,21.02558,23.40264,25.63185,27.65973,29.43355,30.90143,32.01232,32.71577,32.96146 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212706048, "AnimCurve::", "" { + Default: -26.5438899993896 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -26.54389,-28.44588,-30.22803,-31.87775,-33.37874,-34.71483,-35.87279,-36.84399,-37.62519,-38.21884,-38.63302,-38.88133,-38.98274,-38.96138,-38.84623,-38.67043,-38.47028,-38.2836,-38.14754,-38.09572,-38.05427,-37.93204,-37.72844,-37.43974,-37.06136,-36.58966,-36.02328,-35.36406,-34.61762,-33.7937,-32.90639,-31.97414,-31.02003,-30.07169,-29.16138,-28.32561,-27.6044,-27.03977,-26.67348,-26.54389 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212781120, "AnimCurve::", "" { + Default: 1.47880200529471e-06 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 1.478802e-06,0.002508178,0.009632389,0.02058547,0.03404363,0.0478397,0.05880097,0.06279755,0.05501894,0.03046608,-0.01537364,-0.08571737,-0.1816141,-0.3011091,-0.438586,-0.5844674,-0.7254795,-0.845672,-0.9282873,-0.9584169,-0.9311485,-0.8558948,-0.7452476,-0.6135405,-0.4747289,-0.3408231,-0.2209585,-0.1210437,-0.04387312,0.01044859,0.0438995,0.05986623,0.06248219,0.05603946,0.04451501,0.03124159,0.01874219,0.008731636,0.002267996,1.478802e-06 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212782352, "AnimCurve::", "" { + Default: 1.72157523792293e-08 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 1.721575e-08,0.2473838,0.9535421,2.064426,3.525819,5.283246,7.281921,9.466767,11.78251,14.17381,16.58553,18.96293,21.25192,23.39937,25.3532,27.06253,28.47752,29.5491,30.22841,30.46604,30.2512,29.63549,28.66134,27.37065,25.80542,24.00819,22.02232,19.89213,17.66286,15.38056,13.09191,10.84404,8.68435,6.660262,4.819131,3.20811,1.874122,0.8638223,0.223671,1.721575e-08 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212810496, "AnimCurve::", "" { + Default: 0.436669439077377 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 0.4366694,0.3856879,0.2373154,-0.004641685,-0.3389348,-0.765233,-1.282777,-1.889298,-2.580147,-3.347564,-4.18004,-5.061722,-5.971882,-6.884503,-7.768094,-8.585911,-9.296801,-9.856868,-10.22208,-10.35175,-10.23447,-9.902867,-9.391516,-8.738022,-7.980258,-7.154204,-6.292517,-5.423704,-4.571831,-3.756553,-2.993394,-2.294107,-1.667127,-1.11803,-0.6500572,-0.2647066,0.03755102,0.2564004,0.390597,0.4366694 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217452928, "AnimCurve::", "" { + Default: 4.96840600684224e-15 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 4.968406e-15,4.967079e-15,4.963318e-15,6.609975e-15,4.949952e-15,6.588155e-15,4.931355e-15,4.921029e-15,4.910469e-15,4.083313e-15,3.259871e-15,4.066821e-15,4.059411e-15,3.242186e-15,2.42813e-15,4.041944e-15,3.230382e-15,3.228039e-15,3.22658e-15,2.419556e-15,3.226531e-15,2.420889e-15,3.229977e-15,4.041071e-15,4.045561e-15,3.24071e-15,3.245588e-15,4.876532e-15,4.071165e-15,4.894836e-15,4.904672e-15,4.914701e-15,4.924686e-15,4.934359e-15,4.943426e-15,3.30105e-15,4.958474e-15,3.309196e-15,4.967206e-15,4.968406e-15 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217454176, "AnimCurve::", "" { + Default: -16.2122631072998 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -16.21226,-16.15953,-16.00901,-15.77221,-15.46062,-15.08576,-14.65913,-14.19223,-13.69657,-13.18365,-12.66498,-12.15206,-11.6564,-11.1895,-10.76287,-10.388,-10.07642,-9.839612,-9.689093,-9.636363,-9.684038,-9.820488,-10.03585,-10.32026,-10.66385,-11.05676,-11.48912,-11.95108,-12.43276,-12.92431,-13.41586,-13.89755,-14.3595,-14.79187,-15.18478,-15.52837,-15.81278,-16.02814,-16.16459,-16.21226 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217455632, "AnimCurve::", "" { + Default: 90 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 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,90,90,90,90,90,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263213216976, "AnimCurve::", "" { + Default: 1.29802124045975e-14 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 1.298021e-14,1.016553e-14,1.195239e-14,1.300233e-14,1.137341e-14,9.581291e-15,6.431666e-15,4.868493e-15,4.128831e-15,2.158995e-15,3.038094e-16,-1.565991e-15,-3.138548e-15,-3.218907e-15,-4.8241e-15,-8.015434e-15,-7.659688e-15,-8.733752e-15,-1.121403e-14,-6.013328e-15,-1.123916e-14,-8.810146e-15,-9.694053e-15,-8.304583e-15,-6.875432e-15,-5.339119e-15,-3.738772e-15,-2.149125e-15,-4.333996e-16,1.048325e-15,2.976724e-15,3.937182e-15,3.75908e-15,6.900308e-15,1.010234e-14,1.171581e-14,5.162403e-15,1.072435e-14,1.527948e-14,1.298021e-14 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263213218320, "AnimCurve::", "" { + Default: 37.6853981018066 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 37.6854,37.14148,35.58883,33.14614,29.93206,26.06529,21.66448,16.84831,11.73546,6.444602,1.094406,-4.196454,-9.309303,-14.12547,-18.52628,-22.39306,-25.60713,-28.04983,-29.60247,-30.14639,-29.65461,-28.2471,-26.02561,-23.09189,-19.54768,-15.49473,-11.03479,-6.269605,-1.300931,3.769499,8.83992,13.80861,18.57379,23.03373,27.08667,30.6309,33.56462,35.78611,37.19361,37.6854 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263213219680, "AnimCurve::", "" { + Default: 180 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,180,180,180,180,180,180,180,180,180 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217687104, "AnimCurve::", "" { + Default: 9.07548199731347e-15 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 9.075482e-15,9.048492e-15,8.972466e-15,1.032852e-14,8.796712e-15,7.445633e-15,8.352136e-15,4.772712e-15,6.291284e-15,7.621468e-15,5.318516e-15,5.057929e-15,4.246785e-15,4.592154e-15,3.288459e-15,1.986187e-15,3.041817e-15,2.38116e-15,1.797859e-15,1.894927e-15,2.161444e-15,2.37296e-15,2.833988e-15,1.549342e-15,3.368583e-15,3.050096e-15,4.319605e-15,4.9583e-15,5.063601e-15,6.035945e-15,7.394836e-15,8.045013e-15,6.527997e-15,8.408612e-15,1.023109e-14,8.747359e-15,8.875558e-15,1.015213e-14,1.005758e-14,9.075482e-15 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217688464, "AnimCurve::", "" { + Default: 30.5788135528564 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 30.57882,30.38367,29.82663,28.95027,27.79715,26.40987,24.831,23.1031,21.26877,19.37057,17.45108,15.55288,13.71855,11.99065,10.41178,9.024494,7.871384,6.995018,6.437977,6.242835,6.41927,6.924242,7.721245,8.773776,10.04533,11.49941,13.09949,14.8091,16.59171,18.41082,20.22994,22.01255,23.72215,25.32224,26.77631,28.04787,29.1004,29.89741,30.40238,30.57882 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217689824, "AnimCurve::", "" { + Default: 9.07548199731347e-15 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 9.075482e-15,9.048492e-15,8.972466e-15,-2.361226e-14,-2.403512e-14,-3.092231e-14,8.352136e-15,7.468109e-15,7.653562e-15,-3.096469e-14,1.368746e-14,1.353104e-14,-3.793095e-14,1.327446e-14,-2.525021e-14,-2.53668e-14,-2.529531e-14,1.289149e-14,-3.17547e-14,1.284446e-14,-2.536321e-14,1.288904e-14,6.566822e-15,-3.178014e-14,-2.524646e-14,-2.526598e-14,-2.511564e-14,1.347357e-14,-3.140355e-14,7.422296e-15,-3.098848e-14,8.045013e-15,7.870923e-15,8.408612e-15,1.551277e-14,-2.404128e-14,8.875558e-15,-2.36252e-14,-2.363418e-14,9.075482e-15 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217566448, "AnimCurve::", "" { + Default: -26.81862449646 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -26.81862,-26.5085,-25.62325,-24.23052,-22.39798,-20.19329,-17.68413,-14.93814,-12.02299,-9.006352,-5.955882,-2.939242,-0.0240972,2.721891,5.231058,7.435744,9.268281,10.66101,11.54627,11.85639,11.576,10.77349,9.506884,7.834188,5.813422,3.502588,0.9597085,-1.757213,-4.590155,-7.481115,-10.37207,-13.20502,-15.92194,-18.46482,-20.77565,-22.79642,-24.46912,-25.73572,-26.53823,-26.81862 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217567664, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 0,0,0,1.590277e-15,0,0,1.590277e-15,0,0,0,0,-1.987847e-16,0,0,-3.975693e-16,0,0,7.951387e-16,0,0,0,0,0,7.951387e-16,3.975693e-16,0,0,0,3.975693e-16,0,0,0,0,-1.590277e-15,0,-1.590277e-15,-1.590277e-15,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263212917872, "AnimCurve::", "" { + Default: 90 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 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,90,90,90,90,90,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217574096, "AnimCurve::", "" { + Default: -180 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,-180,-180,-180,-180,-180,-180,-180,-180,-180 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217569376, "AnimCurve::", "" { + Default: 22.2001857757568 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 22.20019,21.7334,20.40095,18.30467,15.54641,12.22801,8.451312,4.318161,-0.06959639,-4.610119,-9.201565,-13.74209,-18.12985,-22.26299,-26.03969,-29.3581,-32.11636,-34.21264,-35.54509,-36.01187,-35.58984,-34.38193,-32.47549,-29.95782,-26.91624,-23.43807,-19.61063,-15.52123,-11.2572,-6.905846,-2.554499,1.709545,5.798938,9.626377,13.10455,16.14613,18.6638,20.57025,21.77815,22.20019 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217568480, "AnimCurve::", "" { + Default: 3.30679333267474e-16 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 3.306793e-16,3.227486e-16,6.009474e-16,0,6.765263e-15,2.599616e-16,2.961641e-16,1.952694e-16,-4.278389e-18,-3.208431e-16,-7.753382e-16,-1.371016e-15,-2.109141e-15,-2.985765e-15,-3.987481e-15,-1.260857e-14,-4.154969e-15,-5.656564e-15,-4.772664e-15,-1.355598e-14,-5.976434e-15,-4.556143e-15,-1.145632e-14,-5.692961e-15,-4.565861e-15,3.620164e-15,-2.300017e-15,-1.560091e-15,-1.033718e-15,-5.547589e-16,-1.685448e-16,9.642096e-17,2.829955e-16,3.383537e-16,2.794771e-16,2.325029e-16,0,3.03275e-16,0,3.306793e-16 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263213136256, "AnimCurve::", "" { + Default: 9.41261127471605e-15 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 9.41261e-15,9.197876e-15,9.758988e-15,9.636569e-15,1.287146e-14,1.144823e-14,1.020147e-14,1.21145e-14,1.430477e-14,1.3713e-14,1.599294e-14,1.603386e-14,1.607387e-14,1.414111e-14,1.614648e-14,6.896322e-15,1.620181e-14,1.259236e-14,1.408394e-14,1.218081e-14,8.96411e-15,1.215722e-14,1.256763e-14,1.620138e-14,1.60764e-14,1.602494e-14,1.597413e-14,1.592635e-14,1.382003e-14,1.530812e-14,1.277996e-14,1.41171e-14,1.127213e-14,1.079687e-14,1.022215e-14,9.266688e-15,9.326668e-15,9.981829e-15,1.001363e-14,9.41261e-15 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263213137616, "AnimCurve::", "" { + Default: 14.8554735183716 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 14.85547,16.48159,18.05755,19.57906,21.04179,22.44143,23.77366,25.03417,26.21864,27.32276,28.3422,29.27266,30.10981,30.84935,31.48695,32.01831,32.43909,32.745,32.93171,32.9949,32.8634,32.487,31.89293,31.1084,30.16062,29.07679,27.88412,26.60983,25.28111,23.92519,22.56927,21.24055,19.96626,18.77359,17.68976,16.74197,15.95744,15.36338,14.98699,14.85547 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217578976, "AnimCurve::", "" { + Default: -1.1602759802476e-14 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -1.160276e-14,-5.095358e-15,-1.133113e-14,-1.124749e-14,-1.054932e-14,-1.71841e-14,-4.353166e-15,-1.034246e-14,-9.731366e-15,-3.213236e-15,-2.522507e-15,-2.38709e-15,-2.263705e-15,-9.295921e-15,-2.057245e-15,-1.125684e-14,-1.91173e-15,-2.930392e-15,-9.103559e-15,-3.026695e-15,-3.988304e-15,-3.083581e-15,-3.024683e-15,-2.093376e-15,-2.256167e-15,-2.415743e-15,-2.588553e-15,-2.770285e-15,-9.938824e-15,-3.258922e-15,-1.04229e-14,-3.824858e-15,-1.093365e-14,-4.662587e-15,-4.846992e-15,-1.149563e-14,-1.153933e-14,-1.149107e-14,-1.151464e-14,-1.160276e-14 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217529824, "AnimCurve::", "" { + Default: 7.72014904022217 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 7.720149,7.407452,6.514845,5.110552,3.262797,1.039807,-1.490194,-4.258984,-7.198334,-10.24002,-13.31582,-16.35751,-19.29686,-22.06565,-24.59565,-26.81864,-28.66639,-30.07069,-30.96329,-31.27599,-30.99327,-30.1841,-28.90698,-27.22039,-25.18285,-22.85283,-20.28883,-17.54935,-14.69289,-11.77792,-8.862966,-6.006491,-3.267015,-0.7030205,1.626997,3.664551,5.351133,6.628255,7.437426,7.720149 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217531184, "AnimCurve::", "" { + Default: 7.95138679647378e-16 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 7.951387e-16,0,0,-3.975693e-16,1.987847e-16,-9.939233e-17,-9.939233e-17,0,0,7.951387e-16,0,0,0,1.590277e-15,-1.590277e-15,0,1.590277e-15,0,3.180555e-15,-3.180555e-15,0,0,0,0,1.590277e-15,3.180555e-15,0,0,0,-7.951387e-16,0,3.975693e-16,-1.987847e-16,4.969617e-17,-9.939233e-17,0,3.975693e-16,0,0,7.951387e-16 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217660768, "AnimCurve::", "" { + Default: 90 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 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,90,90,90,90,90,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263208522288, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217543728, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263217545072, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263208422000, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 0,0.1808721,0.6971796,1.509459,2.578249,3.864085,5.327504,6.929044,8.629241,10.38863,12.16776,13.92715,15.62735,17.22889,18.6923,19.97814,21.04693,21.85921,22.37552,22.55639,22.39285,21.92481,21.18609,20.21052,19.03195,17.68421,16.20113,14.61654,12.96428,11.27819,9.592105,7.939849,6.355263,4.87218,3.524436,2.345865,1.370301,0.6315789,0.1635338,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:9.34716, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,1091931636,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263218638896, "AnimCurve::", "" { + Default: 37.0730438232422 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 37.07304,36.6929,35.60776,33.90057,31.65427,28.95179,25.87608,22.51008,18.93673,15.23897,11.49973,7.801969,4.228618,0.8626171,-2.213092,-4.915569,-7.161872,-8.869064,-9.954203,-10.33435,-9.990642,-9.006939,-7.454347,-5.403977,-2.926941,-0.09434967,3.022686,6.353055,9.825647,13.36935,16.91305,20.38564,23.71601,26.83305,29.66564,32.14268,34.19305,35.74564,36.72934,37.07304 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263214582640, "AnimCurve::", "" { + Default: 24.9893665313721 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 24.98937,25.87256,26.66287,27.36547,27.98551,28.52816,28.99856,29.40189,29.7433,30.02795,30.261,30.44762,30.59295,30.70217,30.78043,30.83289,30.8647,30.88104,30.88706,30.88792,30.84516,30.72276,30.52959,30.27447,29.96627,29.61384,29.22601,28.81163,28.37956,27.93864,27.49773,27.06566,26.65129,26.26345,25.91102,25.60282,25.3477,25.15453,25.03213,24.98937 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263209973920, "AnimCurve::", "" { + Default: -25.7498607635498 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -25.74986,-25.6691,-25.43857,-25.07589,-24.59867,-24.02455,-23.37113,-22.65605,-21.89691,-21.11134,-20.31697,-19.5314,-18.77226,-18.05717,-17.40376,-16.82963,-16.35242,-15.98974,-15.7592,-15.67845,-15.75146,-15.96045,-16.29028,-16.72587,-17.2521,-17.85387,-18.51607,-19.22359,-19.96132,-20.71415,-21.46699,-22.20472,-22.91224,-23.57443,-24.1762,-24.70243,-25.13802,-25.46786,-25.67684,-25.74986 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263218625920, "AnimCurve::", "" { + Default: 10.39963722229 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 10.39964,10.06116,9.094948,7.574862,5.57475,3.168461,0.4298448,-2.567247,-5.748964,-9.041457,-12.37088,-15.66337,-18.84509,-21.84218,-24.58079,-26.98708,-28.9872,-30.50728,-31.47349,-31.81197,-31.50594,-30.63004,-29.24762,-27.42196,-25.21641,-22.69426,-19.91885,-16.95348,-13.86148,-10.70617,-7.550848,-4.458848,-1.493483,1.28193,3.804074,6.00963,7.835283,9.217712,10.0936,10.39964 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263214700624, "AnimCurve::", "" { + Default: -11.0957002639771 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -11.0957,-10.95484,-10.55274,-9.920144,-9.087778,-8.086378,-6.946677,-5.699409,-4.375308,-3.005106,-1.619537,-0.2493358,1.074767,2.322034,3.461735,4.463134,5.2955,5.928098,6.330195,6.471056,6.343698,5.979187,5.403876,4.644114,3.726251,2.676637,1.521623,0.2875581,-0.9992073,-2.312322,-3.625437,-4.912202,-6.146266,-7.301281,-8.350895,-9.268758,-10.02852,-10.60383,-10.96834,-11.0957 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263206478768, "AnimCurve::", "" { + Default: -22.443431854248 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -22.44343,-22.24671,-21.68517,-20.80172,-19.63929,-18.2408,-16.64916,-14.9073,-13.05814,-11.1446,-9.209599,-7.296058,-5.446898,-3.70504,-2.113403,-0.714909,0.4475224,1.33097,1.892514,2.089233,1.911371,1.402318,0.5988736,-0.4621643,-1.743996,-3.209823,-4.822846,-6.546265,-8.343283,-10.1771,-12.01092,-13.80793,-15.53135,-17.14438,-18.6102,-19.89203,-20.95307,-21.75652,-22.26557,-22.44343 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263210013344, "AnimCurve::", "" { + Default: 26.0293464660645 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 26.02935,25.67027,24.64526,23.03267,20.91085,18.35813,15.45286,12.27338,8.898045,5.405192,1.873167,-1.619686,-4.995021,-8.174497,-11.07977,-13.63249,-15.75431,-17.3669,-18.39191,-18.75099,-18.42633,-17.49714,-16.03058,-14.09383,-11.75406,-9.078434,-6.134127,-2.988308,0.2918504,3.639181,6.986511,10.26667,13.41249,16.35679,19.03242,21.37219,23.30894,24.7755,25.70469,26.02935 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263210014400, "AnimCurve::", "" { + Default: -9.88894176483154 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -9.888942,-9.883594,-9.868327,-9.844308,-9.812704,-9.774682,-9.73141,-9.684053,-9.63378,-9.581755,-9.529147,-9.477122,-9.426848,-9.379492,-9.33622,-9.298198,-9.266594,-9.242575,-9.227308,-9.22196,-9.226795,-9.240636,-9.262479,-9.291326,-9.326176,-9.366028,-9.409882,-9.456738,-9.505593,-9.55545,-9.605309,-9.654164,-9.70102,-9.744874,-9.784726,-9.819576,-9.848423,-9.870266,-9.884107,-9.888942 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263218529728, "AnimCurve::", "" { + Default: 13.4769582748413 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 13.47696,13.06778,11.89976,10.06218,7.644316,4.735434,1.424815,-2.198267,-6.044538,-10.02472,-14.04954,-18.02972,-21.876,-25.49907,-28.8097,-31.71858,-34.13644,-35.97403,-37.14204,-37.55122,-37.18127,-36.12243,-34.45126,-32.24429,-29.57807,-26.52913,-23.17403,-19.5893,-15.85149,-12.03713,-8.222775,-4.48496,-0.9002309,2.454872,5.503805,8.170028,10.377,12.04817,13.107,13.47696 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263218530928, "AnimCurve::", "" { + Default: 32.9406814575195 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 32.94068,32.64037,31.78311,30.43443,28.65986,26.52491,24.09511,21.43597,18.61303,15.69181,12.73782,9.816597,6.993655,4.334524,1.904719,-0.230232,-2.004807,-3.353485,-4.210741,-4.511054,-4.239529,-3.462405,-2.235861,-0.616073,1.34078,3.578521,6.040974,8.671957,11.4153,14.21481,17.01433,19.75767,22.38865,24.85111,27.08885,29.0457,30.66549,31.89203,32.66916,32.94068 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263214653088, "AnimCurve::", "" { + Default: -10.8576145172119 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -10.85761,-11.89919,-12.88974,-13.82867,-14.71536,-15.54922,-16.32963,-17.05601,-17.72775,-18.34423,-18.90487,-19.40905,-19.85617,-20.24564,-20.57684,-20.84917,-21.06204,-21.21483,-21.30695,-21.33779,-21.26181,-21.04435,-20.70112,-20.24786,-19.70026,-19.07407,-18.385,-17.64877,-16.8811,-16.0977,-15.31431,-14.54664,-13.8104,-13.12133,-12.49514,-11.94755,-11.49428,-11.15106,-10.9336,-10.85761 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263221884672, "AnimCurve::", "" { + Default: -24.9140148162842 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -24.91401,-24.54817,-23.50384,-21.86085,-19.69903,-17.09819,-14.13815,-10.89874,-7.459771,-3.901075,-0.3024666,3.25623,6.695194,9.934605,12.89464,15.49548,17.65731,19.3003,20.34463,20.71047,20.37969,19.43299,17.93879,15.96552,13.58165,10.85558,7.855772,4.650652,1.308659,-2.101772,-5.512202,-8.854196,-12.05932,-15.05913,-17.78519,-20.16907,-22.14233,-23.63653,-24.58324,-24.91401 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263214536336, "AnimCurve::", "" { + Default: -22.5415058135986 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -22.54151,-22.49226,-22.35169,-22.13053,-21.83953,-21.48944,-21.09099,-20.65494,-20.19203,-19.71301,-19.22861,-18.74958,-18.28667,-17.85062,-17.45217,-17.10208,-16.81108,-16.58992,-16.44935,-16.4001,-16.44463,-16.57206,-16.7732,-17.03881,-17.3597,-17.72665,-18.13044,-18.56188,-19.01173,-19.47081,-19.92988,-20.37973,-20.81117,-21.21496,-21.58191,-21.9028,-22.16842,-22.36954,-22.49698,-22.54151 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263221634064, "AnimCurve::", "" { + Default: -20.4938068389893 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -20.49381,-22.40245,-24.20916,-25.91381,-27.51626,-29.01635,-30.41396,-31.70892,-32.90111,-33.99038,-34.97658,-35.85958,-36.63923,-37.31539,-37.88791,-38.35667,-38.7215,-38.98227,-39.13884,-39.19106,-39.0555,-38.66753,-38.0552,-37.24654,-36.26961,-35.15245,-33.92311,-32.60963,-31.24005,-29.84243,-28.44481,-27.07524,-25.76176,-24.53241,-23.41525,-22.43832,-21.62967,-21.01733,-20.62936,-20.49381 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263215027568, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 0,-0.1606993,-0.6194229,-1.341109,-2.290696,-3.433122,-4.733326,-6.156246,-7.666819,-9.229985,-10.81068,-12.37385,-13.88442,-15.30734,-16.60755,-17.74997,-18.69956,-19.42125,-19.87997,-20.04067,-19.89537,-19.47953,-18.8232,-17.95644,-16.90931,-15.71188,-14.39421,-12.98635,-11.51837,-10.02033,-8.522294,-7.054316,-5.646459,-4.328784,-3.131354,-2.084229,-1.21747,-0.5611387,-0.1452948,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263215028944, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 0,-0.1880979,-0.7250319,-1.569762,-2.68125,-4.018455,-5.540338,-7.205859,-8.973979,-10.80366,-12.65386,-14.48354,-16.25166,-17.91718,-19.43906,-20.77627,-21.88775,-22.73249,-23.26942,-23.45752,-23.28745,-22.80071,-22.03247,-21.01793,-19.79228,-18.39069,-16.84836,-15.20047,-13.48221,-11.72876,-9.975309,-8.257046,-6.609156,-5.066824,-3.665237,-2.439582,-1.425044,-0.6568105,-0.170067,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263214776224, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 0,-0.05072322,-0.195515,-0.4233084,-0.7230365,-1.083632,-1.49403,-1.943161,-2.419959,-2.913357,-3.41229,-3.905689,-4.382487,-4.831618,-5.242015,-5.602611,-5.902339,-6.130132,-6.274924,-6.325647,-6.279786,-6.14853,-5.941364,-5.66778,-5.337265,-4.959308,-4.543396,-4.09902,-3.635666,-3.162824,-2.689981,-2.226628,-1.782251,-1.36634,-0.9883823,-0.6578674,-0.3842831,-0.1771181,-0.04586095,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263221758944, "AnimCurve::", "" { + Default: 16.2122631072998 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 16.21226,16.15953,16.00901,15.77221,15.46062,15.08576,14.65913,14.19223,13.69657,13.18365,12.66498,12.15206,11.6564,11.1895,10.76287,10.388,10.07642,9.839613,9.689094,9.636363,9.684038,9.820488,10.03585,10.32026,10.66385,11.05676,11.48912,11.95108,12.43277,12.92431,13.41586,13.89755,14.3595,14.79187,15.18478,15.52837,15.81278,16.02814,16.16459,16.21226 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263221896528, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263221897776, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263221916800, "AnimCurve::", "" { + Default: 37.6853981018066 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 37.6854,37.14148,35.58883,33.14614,29.93206,26.06529,21.66448,16.84831,11.73546,6.444602,1.094406,-4.196454,-9.309302,-14.12547,-18.52628,-22.39305,-25.60713,-28.04983,-29.60247,-30.14639,-29.65461,-28.2471,-26.02561,-23.09188,-19.54767,-15.49473,-11.03479,-6.269601,-1.300922,3.769503,8.839931,13.80861,18.57379,23.03373,27.08668,30.63089,33.56462,35.78611,37.19362,37.6854 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263221918064, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263209958736, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263219124624, "AnimCurve::", "" { + Default: 30.5788135528564 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 30.57881,30.38367,29.82663,28.95026,27.79715,26.40987,24.831,23.1031,21.26877,19.37057,17.45108,15.55288,13.71855,11.99065,10.41178,9.024495,7.871383,6.995018,6.437977,6.242835,6.419271,6.924242,7.721245,8.773776,10.04533,11.49941,13.0995,14.8091,16.59171,18.41082,20.22994,22.01255,23.72215,25.32224,26.77632,28.04787,29.1004,29.89741,30.40238,30.57881 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263210055168, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263218834912, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263218824528, "AnimCurve::", "" { + Default: -26.81862449646 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -26.81862,-26.5085,-25.62325,-24.23052,-22.39798,-20.19329,-17.68413,-14.93814,-12.02299,-9.006352,-5.955882,-2.939242,-0.02409644,2.721892,5.231059,7.435743,9.268281,10.66101,11.54627,11.85639,11.576,10.77349,9.506882,7.834188,5.813418,3.502586,0.9597039,-1.757216,-4.59016,-7.481118,-10.37208,-13.20502,-15.92194,-18.46482,-20.77565,-22.79642,-24.46912,-25.73573,-26.53823,-26.81862 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263218825904, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263218827264, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263218835744, "AnimCurve::", "" { + Default: -22.2001857757568 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: -22.20019,-21.7334,-20.40095,-18.30467,-15.54641,-12.22801,-8.451311,-4.318161,0.0695975,4.61012,9.201566,13.74209,18.12985,22.263,26.03969,29.3581,32.11636,34.21264,35.54509,36.01187,35.58983,34.38194,32.47549,29.95782,26.91624,23.43807,19.61062,15.52123,11.25719,6.905842,2.554491,-1.709542,-5.798939,-9.626383,-13.10455,-16.14613,-18.6638,-20.57025,-21.77815,-22.20019 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263218837104, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263218838464, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263218882112, "AnimCurve::", "" { + Default: 14.8554735183716 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 14.85547,16.48159,18.05755,19.57906,21.04179,22.44143,23.77366,25.03417,26.21864,27.32276,28.3422,29.27266,30.10982,30.84935,31.48696,32.01831,32.43909,32.745,32.93171,32.9949,32.86339,32.487,31.89293,31.1084,30.16062,29.07679,27.88412,26.60982,25.28111,23.92519,22.56927,21.24055,19.96626,18.77359,17.68976,16.74197,15.95744,15.36338,14.98698,14.85547 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263218883488, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263218884848, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263218821712, "AnimCurve::", "" { + Default: 7.72014904022217 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + a: 7.720149,7.407452,6.514845,5.110552,3.262798,1.039807,-1.490195,-4.258984,-7.198334,-10.24002,-13.31582,-16.35751,-19.29686,-22.06565,-24.59565,-26.81864,-28.6664,-30.07069,-30.96329,-31.27599,-30.99327,-30.1841,-28.90698,-27.22039,-25.18285,-22.85283,-20.28883,-17.54935,-14.69288,-11.77792,-8.86296,-6.006493,-3.267015,-0.7030171,1.627002,3.66455,5.351133,6.628257,7.437427,7.720149 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantUser + KeyAttrFlags: *2 { + a: 24840,1032 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightSlope:0, NextLeftSlope:0, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 39,1 + } + } + AnimationCurve: 140263218823040, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263218928512, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *40 { + a: 1539538600,3079077200,4618615800,6158154400,7697693000,9237231600,10776770200,12316308800,13855847400,15395386000,16934924600,18474463200,20014001800,21553540400,23093079000,24632617600,26172156200,27711694800,29251233400,30790772000,32330310600,33869849200,35409387800,36948926400,38488465000,40028003600,41567542200,43107080800,44646619400,46186158000,47725696600,49265235200,50804773800,52344312400,53883851000,55423389600,56962928200,58502466800,60042005400,61581544000 + } + KeyValueFloat: *40 { + 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,0,0,0,0,0,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 40 + } + } + AnimationCurve: 140263219506304, "AnimCurve::", "" { + Default: 1 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219509440, "AnimCurve::", "" { + Default: -6.16297582203915e-32 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: -6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32,-6.162976e-32 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219510784, "AnimCurve::", "" { + Default: 18.1669216156006 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692,18.16692 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218890208, "AnimCurve::", "" { + Default: 1.61079788208008 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798,1.610798 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263221651344, "AnimCurve::", "" { + Default: 1 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263221648544, "AnimCurve::", "" { + Default: 1 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218877232, "AnimCurve::", "" { + Default: 1 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218880416, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218858000, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218859360, "AnimCurve::", "" { + Default: 90 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 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,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive + KeyAttrFlags: *1 { + a: 24840 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218868672, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218870016, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218871376, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263209989168, "AnimCurve::", "" { + Default: -25.1324596405029 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: -0.1242611,-0.653863,-1.711684,-3.23371,-5.155392,-7.411562,-9.936449,-12.66383,-15.5274,-18.46116,-21.39991,-24.27963,-27.03789,-29.61399,-31.94902,-33.98553,-35.66726,-36.93843,-37.74311,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428,-38.02428 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263209990512, "AnimCurve::", "" { + Default: 208.200180053711 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: -180.0984,-180.1605,-179.978,-179.578,-178.9867,-178.2294,-177.3306,-176.3141,-175.2034,-174.0226,-172.7968,-171.5531,-170.3208,-169.1317,-168.0204,-167.0239,-166.1808,-165.5309,-165.1134,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662,-164.9662 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263209991872, "AnimCurve::", "" { + Default: 69.7807769775391 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 67.08242,67.46127,67.81767,68.14592,68.44118,68.69972,68.91917,69.09863,69.2388,69.34194,69.41169,69.4528,69.47079,69.47144,69.46044,69.44301,69.42367,69.40621,69.39378,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906,69.38906 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218777456, "AnimCurve::", "" { + Default: 13.2542934417725 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 14.01198,13.96524,13.89149,13.79023,13.66124,13.50474,13.32155,13.11318,12.882,12.63142,12.36595,12.09129,11.81438,11.54331,11.28718,11.05585,10.85957,10.70847,10.61201,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835,10.57835 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218778800, "AnimCurve::", "" { + Default: 24.4742431640625 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 32.32986,33.67311,35.03435,36.40237,37.76603,39.11429,40.43626,41.7212,42.95855,44.13801,45.24949,46.28312,47.22935,48.0788,48.82234,49.45097,49.95576,50.32776,50.55787,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673,50.63673 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218780160, "AnimCurve::", "" { + Default: 9.6168737411499 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 2.097675,1.534664,0.9681894,0.3968031,-0.1802792,-0.7630707,-1.350684,-1.941197,-2.531548,-3.117411,-3.693128,-4.251653,-4.784592,-5.28229,-5.734037,-6.128377,-6.453544,-6.698007,-6.851115,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802,-6.903802 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218786960, "AnimCurve::", "" { + Default: -1.2819207906723 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: -1.182733e-14,4.503483e-15,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,4.503483e-15,-1.182733e-14,4.503483e-15,-1.182733e-14,4.503483e-15,4.503483e-15,-1.182733e-14,-1.182733e-14,2.08343e-14,4.503483e-15,-1.182733e-14,-1.182733e-14,4.503483e-15,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14,-1.182733e-14 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218788304, "AnimCurve::", "" { + Default: 33.8275489807129 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 7.114651e-15,-1.239749e-14,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,-1.239749e-14,7.114651e-15,-1.239749e-14,7.114651e-15,-1.239749e-14,-1.239749e-14,7.114651e-15,7.114651e-15,-3.190964e-14,-1.239749e-14,7.114651e-15,7.114651e-15,-1.239749e-14,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15,7.114651e-15 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218789664, "AnimCurve::", "" { + Default: 4.68456792831421 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218796464, "AnimCurve::", "" { + Default: 12.7259168624878 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,-2.602068,-5.309474,-8.105158,-10.96815,-13.8741,-16.79569,-19.70319,-22.56504,-25.34835,-28.01946,-30.5444,-32.88931,-35.02083,-36.90635,-38.51421,-39.81395,-40.7763,-41.37326,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802,-41.57802 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218797808, "AnimCurve::", "" { + Default: -33.2090721130371 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,3.134004,6.106204,8.911503,11.54649,14.00933,16.29958,18.41782,20.36542,22.14417,23.7559,25.20218,26.48403,27.6017,28.55456,29.34103,29.95868,30.40436,30.67448,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532,30.76532 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218799168, "AnimCurve::", "" { + Default: 122.949928283691 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 114.0213,114.029,114.0545,114.1004,114.1688,114.261,114.3778,114.5194,114.685,114.8731,115.0809,115.3046,115.5391,115.7778,116.0128,116.2345,116.4317,116.5917,116.6998,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397,116.7397 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218897488, "AnimCurve::", "" { + Default: 3.29145526885986 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 11.29946,10.94945,9.939878,8.318794,6.120277,3.367344,0.07511173,-3.744705,-8.077189,-12.89462,-18.14411,-23.73397,-29.5228,-35.31647,-40.8774,-45.94518,-50.26162,-53.58971,-55.72057,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914,-56.46914 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218898832, "AnimCurve::", "" { + Default: 32.9614639282227 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 25.82783,26.15369,27.0795,28.52225,30.3928,32.59681,35.03541,37.60625,40.20523,42.72937,45.08132,47.1758,48.94754,50.35926,51.40718,52.12141,52.55968,52.7951,52.90007,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855,52.92855 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218802272, "AnimCurve::", "" { + Default: -26.5438899993896 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0.6162707,2.634157,4.248652,5.45643,6.23858,6.565839,6.403375,5.71615,4.47586,2.670232,0.3147991,-2.534274,-5.770101,-9.232843,-12.71965,-16.00576,-18.86975,-21.1124,-22.56345,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679,-23.07679 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218808048, "AnimCurve::", "" { + Default: 1.47880200529471e-06 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06,1.478802e-06 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218809392, "AnimCurve::", "" { + Default: 1.72157523792293e-08 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08,1.721575e-08 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218810752, "AnimCurve::", "" { + Default: 0.436669439077377 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694,0.4366694 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218817616, "AnimCurve::", "" { + Default: 4.96840600684224e-15 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218818960, "AnimCurve::", "" { + Default: -16.2122631072998 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218820320, "AnimCurve::", "" { + Default: 90 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 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,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218519968, "AnimCurve::", "" { + Default: 1.29802124045975e-14 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,-2.153879e-15,-4.418971e-15,-6.869462e-15,-1.132355e-14,-9.101929e-15,-1.094268e-14,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: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219057360, "AnimCurve::", "" { + Default: 37.6853981018066 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,-6.429504,-12.95729,-19.53241,-26.10385,-32.62069,-39.03197,-45.28668,-51.33389,-57.12263,-62.60196,-67.72087,-72.42843,-76.67365,-80.4056,-83.5733,-86.12576,-88.01205,-89.18121,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224,-89.58224 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219060640, "AnimCurve::", "" { + Default: 180 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,180,180,180,180 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263214931584, "AnimCurve::", "" { + Default: 9.07548199731347e-15 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,2.914405e-16,7.582673e-16,2.214215e-15,3.256935e-15,4.546273e-15,8.024183e-15,8.838198e-15,1.55447e-14,1.252412e-14,2.171685e-14,2.611543e-14,4.457906e-14,4.22001e-14,5.979417e-14,1.30245e-13,1.391084e-13,1.540127e-12,-7.887776e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263214953472, "AnimCurve::", "" { + Default: 30.5788135528564 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,0.7405235,2.854382,6.180019,10.55584,15.8203,21.81183,28.36884,35.32977,42.53304,49.81713,57.02041,63.98134,70.53835,76.52988,81.79433,86.17016,89.49579,91.60966,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263214934224, "AnimCurve::", "" { + Default: 9.07548199731347e-15 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 1.272222e-14,-3.180433e-14,-2.543344e-14,-2.536196e-14,-2.52519e-14,-2.50572e-14,8.024183e-15,2.847843e-14,3.832992e-14,3.217825e-14,2.411157e-14,2.142451e-14,3.534612e-14,3.763646e-14,5.526493e-14,1.21226e-13,1.301075e-13,1.526633e-12,-8.14222e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13,-4.325554e-13 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263214999616, "AnimCurve::", "" { + Default: -26.81862449646 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263215000688, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263215195344, "AnimCurve::", "" { + Default: 90 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 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,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263215221952, "AnimCurve::", "" { + Default: -180 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,-180,-180,-180,-180 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218512496, "AnimCurve::", "" { + Default: 22.2001857757568 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: -7.06225e-31,0.7183284,2.76883,5.994792,10.23946,15.34613,21.15808,27.51856,34.27086,41.25824,48.32401,55.31139,62.06369,68.42416,74.23612,79.34279,83.58746,86.81342,88.86392,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225,89.58225 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263215021712, "AnimCurve::", "" { + Default: 3.30679333267474e-16 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,4.299359e-17,1.394407e-16,2.926481e-16,3.605221e-16,2.201851e-16,6.261326e-16,4.264892e-16,-1.133964e-15,-2.981236e-15,-5.873776e-15,-7.781952e-15,-6.999605e-15,-9.72605e-15,-9.588837e-15,-1.74409e-14,-1.183783e-13,-2.359069e-13,-6.783032e-13,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12,-1.229339e-12 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263215166320, "AnimCurve::", "" { + Default: 9.41261127471605e-15 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 7.01671e-15,7.145137e-15,7.331301e-15,7.620555e-15,7.947196e-15,9.943451e-15,1.356174e-14,1.424183e-14,1.268241e-14,1.798405e-14,2.267476e-14,2.507085e-14,3.123177e-14,4.275867e-14,5.669634e-14,1.196201e-13,2.366795e-13,2.254594e-12,-2.035555e-13,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14,7.633331e-14 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263215011088, "AnimCurve::", "" { + Default: 14.8554735183716 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 7.01671e-15,0.7405235,2.854382,6.180019,10.55584,15.8203,21.81183,28.36884,35.32977,42.53304,49.81713,57.02041,63.98134,70.53835,76.52988,81.79433,86.17016,89.49579,91.60966,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263215012448, "AnimCurve::", "" { + Default: -1.1602759802476e-14 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: -1.272222e-14,-6.315068e-15,-6.180429e-15,-1.232936e-14,-5.654044e-15,-1.146287e-14,-3.865079e-15,-2.961528e-15,-2.636985e-15,-6.652281e-15,3.515898e-15,6.37918e-15,1.200859e-14,2.24491e-14,3.661805e-14,9.51924e-14,2.213652e-13,2.23484e-12,-2.29e-13,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14,5.088888e-14 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263221725536, "AnimCurve::", "" { + Default: 7.72014904022217 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,0,0,0,-1.403342e-14,0,-1.403342e-14,0,0,-1.403342e-14,0,-1.403342e-14,2.544444e-14,-3.947786e-14,-1.403342e-14,0,0,0,2.544444e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14,-3.947786e-14 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263221726880, "AnimCurve::", "" { + Default: 7.95138679647378e-16 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,0,0,0,1.41245e-30,0,1.41245e-30,0,0,1.41245e-30,0,0,0,-2.8249e-30,0,0,0,0,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30,2.8249e-30 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263215234448, "AnimCurve::", "" { + Default: 90 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 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,90,90,90,90,90,90,90,90 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263215217632, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263215218976, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218551616, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218502368, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0.158519,0.6122115,1.32828,2.273928,3.416358,4.722774,6.160378,7.696373,9.297961,10.93235,12.56673,14.16832,15.70432,17.14192,18.44834,19.59077,20.53641,21.25248,21.70617,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469,21.86469 + } + ;KeyAttrFlags: Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantUser, Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *21 { + a: 1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,1032,24840,8456 + } + ;KeyAttrDataFloat: RightSlope:9.34716, NextLeftSlope:17.7104, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:17.7104, NextLeftSlope:25.0897, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:25.0897, NextLeftSlope:31.4852, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:31.4852, NextLeftSlope:36.8967, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:36.8967, NextLeftSlope:41.3243, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:41.3243, NextLeftSlope:44.768, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:44.768, NextLeftSlope:47.2277, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:47.2277, NextLeftSlope:48.7036, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:48.7036, NextLeftSlope:49.1956, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:49.1956, NextLeftSlope:48.7036, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:48.7036, NextLeftSlope:47.2277, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:47.2277, NextLeftSlope:44.768, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:44.768, NextLeftSlope:41.3243, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:41.3243, NextLeftSlope:36.8967, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:36.8967, NextLeftSlope:31.4852, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:31.4852, NextLeftSlope:25.0897, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:25.0897, NextLeftSlope:17.7104, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; + ;RightSlope:17.7104, NextLeftSlope:9.34716, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightSlope:9.34716, NextLeftSlope:9.34716, RightWeight:0.333333, NextLeftWeight:0.333333, RightVelocity:0, NextLeftVelocity:0; RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *84 { + a: 1091931636,1099804391,218434821,0,1099804391,1103673288,218434821,0,1103673288,1107026332,218434821,0,1107026332,1108579889,218434821,0,1108579889,1109740558,218434821,0,1109740558,1110643300,218434821,0,1110643300,1111288116,218434821,0,1111288116,1111675006,218434821,0,1111675006,1111803969,218434821,0,1111803969,1111675006,218434821,0,1111675006,1111288116,218434821,0,1111288116,1110643301,218434821,0,1110643301,1109740558,218434821,0,1109740558,1108579889,218434821,0,1108579889,1107026330,218434821,0,1107026330,1103673285,218434821,0,1103673285,1099804394,218434821,0,1099804394,1091931639,218434821,0,1091931639,1091931639,218434821,0,0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *21 { + a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,15 + } + } + AnimationCurve: 140263218503712, "AnimCurve::", "" { + Default: 37.0730438232422 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,0.280169,1.079924,2.338138,3.993681,5.985429,8.252251,10.73302,13.36661,16.09189,18.84773,21.57301,24.2066,26.68737,28.95419,30.94594,32.60148,33.8597,34.65945,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962,34.93962 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263218505072, "AnimCurve::", "" { + Default: 24.9893665313721 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 28.70051,29.08167,29.44785,29.7984,30.13269,30.45007,30.7499,31.03154,31.29433,31.53765,31.76085,31.96328,32.1443,32.30327,32.43955,32.55249,32.64145,32.7058,32.74487,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804,32.75804 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263218498672, "AnimCurve::", "" { + Default: -25.7498607635498 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: -31.49212,-32.37931,-33.27243,-34.16532,-35.05181,-35.92574,-36.78096,-37.61132,-38.41064,-39.17276,-39.89154,-40.5608,-41.1744,-41.72617,-42.20995,-42.61958,-42.9489,-43.19176,-43.34199,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344,-43.39344 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263218484064, "AnimCurve::", "" { + Default: 10.39963722229 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 15.96061,17.00085,18.06454,19.14258,20.22585,21.30525,22.37167,23.416,24.42912,25.40194,26.32534,27.19022,27.98746,28.70795,29.34259,29.88226,30.31787,30.64029,30.84042,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916,30.90916 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263218485328, "AnimCurve::", "" { + Default: -11.0957002639771 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: -4.527143,-4.241297,-3.98551,-3.758114,-3.557437,-3.38181,-3.229563,-3.099025,-2.988528,-2.8964,-2.820972,-2.760575,-2.713537,-2.678189,-2.65286,-2.635882,-2.625584,-2.620296,-2.618347,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069,-2.618069 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263215314848, "AnimCurve::", "" { + Default: -22.443431854248 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 1,34 + } + } + AnimationCurve: 140263215316128, "AnimCurve::", "" { + Default: 26.0293464660645 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 1,34 + } + } + AnimationCurve: 140263218506480, "AnimCurve::", "" { + Default: -9.88894176483154 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 1,34 + } + } + AnimationCurve: 140263219064304, "AnimCurve::", "" { + Default: 13.4769582748413 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,0.09127273,0.3518149,0.7617124,1.301051,1.949917,2.688397,3.496575,4.354539,5.242374,6.140166,7.028001,7.885964,8.694142,9.432623,10.08149,10.62083,11.03072,11.29127,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254,11.38254 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263219065584, "AnimCurve::", "" { + Default: 32.9406814575195 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,-4.071571,-8.077533,-12.00023,-15.82199,-19.52517,-23.0921,-26.50513,-29.74659,-32.79883,-35.64419,-38.26501,-40.64364,-42.76241,-44.60366,-46.14974,-47.38298,-48.28573,-48.84034,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913,-49.02913 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263219052240, "AnimCurve::", "" { + Default: -10.8576145172119 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: -27.59672,-27.52102,-27.30495,-26.96502,-26.51774,-25.97964,-25.36721,-24.69698,-23.98546,-23.24917,-22.50463,-21.76834,-21.05682,-20.38659,-19.77417,-19.23606,-18.78878,-18.44885,-18.23278,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709,-18.15709 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263218973760, "AnimCurve::", "" { + Default: -24.9140148162842 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: -25.26324,-25.23629,-25.15937,-25.03836,-24.87913,-24.68756,-24.46954,-24.23094,-23.97764,-23.71552,-23.45046,-23.18835,-22.93505,-22.69645,-22.47842,-22.28686,-22.12763,-22.00661,-21.92969,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275,-21.90275 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263218975040, "AnimCurve::", "" { + Default: -22.5415058135986 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: -12.57579,-13.02798,-14.31878,-16.34952,-19.02155,-22.23621,-25.89484,-29.89878,-34.14936,-38.54794,-42.99585,-47.39442,-51.64501,-55.64895,-59.30758,-62.52224,-65.19427,-67.22501,-68.51581,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968,-68.968 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263219072640, "AnimCurve::", "" { + Default: -20.4938068389893 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 2.829104,4.994406,7.043049,8.974989,10.79018,12.48858,14.07015,15.53483,16.8826,18.1134,19.22718,20.22392,21.10355,21.86604,22.51135,23.03942,23.45023,23.74371,23.91983,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855,23.97855 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263219093568, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219139728, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219130544, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219137008, "AnimCurve::", "" { + Default: 16.2122631072998 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 1,34 + } + } + AnimationCurve: 140263219138288, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219126512, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219110336, "AnimCurve::", "" { + Default: 37.6853981018066 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,-6.429509,-12.9573,-19.5324,-26.10385,-32.62069,-39.03195,-45.28667,-51.33389,-57.12264,-62.60195,-67.72087,-72.42843,-76.67365,-80.4056,-83.5733,-86.12577,-88.01205,-89.18121,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263219119440, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219112672, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219103136, "AnimCurve::", "" { + Default: 30.5788135528564 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,0.7405249,2.854387,6.180017,10.55585,15.8203,21.81182,28.36883,35.32977,42.53306,49.81713,57.02041,63.98135,70.53836,76.52988,81.79433,86.17017,89.4958,91.60965,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263219104416, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219108736, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218549120, "AnimCurve::", "" { + Default: -26.81862449646 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 1,34 + } + } + AnimationCurve: 140263214693504, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263214686064, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263214692416, "AnimCurve::", "" { + Default: -22.2001857757568 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,-0.7183298,-2.768835,-5.994789,-10.23946,-15.34614,-21.15808,-27.51856,-34.27086,-41.25825,-48.324,-55.3114,-62.06369,-68.42417,-74.23611,-79.34279,-83.58746,-86.81342,-88.86392,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225,-89.58225 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263219094336, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219097120, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219086976, "AnimCurve::", "" { + Default: 14.8554735183716 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + a: 0,0.7405249,2.854387,6.180017,10.55585,15.8203,21.81182,28.36883,35.32977,42.53306,49.81713,57.02041,63.98135,70.53836,76.52988,81.79433,86.17017,89.4958,91.60965,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018,92.35018 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 20,15 + } + } + AnimationCurve: 140263219059056, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219053328, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263219030640, "AnimCurve::", "" { + Default: 7.72014904022217 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent|GenericClampProgressive, Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *2 { + a: 24840,8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0; RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *8 { + a: 0,0,218434821,0,0,0,218434821,0 + } + KeyAttrRefCount: *2 { + a: 1,34 + } + } + AnimationCurve: 140263219031920, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } + AnimationCurve: 140263218994592, "AnimCurve::", "" { + Default: 0 + KeyVer: 4009 + KeyTime: *35 { + a: 63121082600,64660621200,66200159800,67739698400,69279237000,70818775600,72358314200,73897852800,75437391400,76976930000,78516468600,80056007200,81595545800,83135084400,84674623000,86214161600,87753700200,89293238800,90832777400,92372316000,93911854600,95451393200,96990931800,98530470400,100070009000,101609547600,103149086200,104688624800,106228163400,107767702000,109307240600,110846779200,112386317800,113925856400,115465395000 + } + KeyValueFloat: *35 { + 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,0,0,0,0 + } + ;KeyAttrFlags: Cubic|TangeantAuto|GenericTimeIndependent + KeyAttrFlags: *1 { + a: 8456 + } + ;KeyAttrDataFloat: RightAuto:0, NextLeftAuto:0 + KeyAttrDataFloat: *4 { + a: 0,0,218434821,0 + } + KeyAttrRefCount: *1 { + a: 35 + } + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::left, Model::RootNode + C: "OO",140263460708352,0 + + ;Model::pCube4, Model::RootNode + C: "OO",140263694215680,0 + + ;Model::joint1, Model::RootNode + C: "OO",140263591793664,0 + + ;Model::bottom, Model::RootNode + C: "OO",140263694439936,0 + + ;Model::nurbsCircle8, Model::RootNode + C: "OO",140263694448128,0 + + ;Model::nurbsCircle9, Model::RootNode + C: "OO",140263694500864,0 + + ;Model::nurbsCircle10, Model::RootNode + C: "OO",140263694519296,0 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217724000,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217723488,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217725408,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217727104,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217728832,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217730912,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217732512,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263208218848,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217734592,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263213022080,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217735056,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263213061584,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263212325840,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263212327440,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263208893888,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217744480,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217746224,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217757632,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263213032736,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217764032,140263216108416 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217763136,140263216108416 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",140263219999552,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263216157040,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219660256,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263216270000,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219812560,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219607376,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263223860080,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263199318608,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263223866192,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263211202864,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263644926848,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263644944192,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263644931872,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263644923600,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263644924864,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263223867632,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263223874032,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263223872816,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263220255584,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219733408,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219731360,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219761728,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219782240,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219796960,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219871424,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219932560,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219933552,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263220141536,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263220105728,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263220132800,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263211827520,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263216046320,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219700992,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219597008,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263213108672,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263217471664,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263217762032,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263217740560,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218660624,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263209706224,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263221861104,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218678384,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218647504,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218682624,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263214569072,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218694208,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263211575120,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263220139536,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263209878064,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263214836240,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263209946272,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263214584816,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263221996000,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263221997824,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263209836640,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218614592,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263214579312,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263214618976,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219467568,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219466688,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263221852128,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263221857104,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218440832,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218444560,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218450080,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218452144,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218455536,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263213010848,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263213009504,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263212776160,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263212789888,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263212790432,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263217930960,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263212627536,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263212721792,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263222798128,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263222801056,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263212754832,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263217936896,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263217856224,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263217857600,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263217861008,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263217994208,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263217848976,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263213000608,140263216108416 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263217548880,140263216108416 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263217550896,140263216108416 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263212761696,140263216108416 + + ;NodeAttribute::left, Model::left + C: "OO",140263460609536,140263460708352 + + ;Deformer::, Geometry:: + C: "OO",140263212725344,140263214861184 + + ;Geometry::, Model::pCube4 + C: "OO",140263214861184,140263694215680 + + ;Material::white, Model::pCube4 + C: "OO",140263218610960,140263694215680 + + ;Material::black, Model::pCube4 + C: "OO",140263209925776,140263694215680 + + ;NodeAttribute::, Model::joint1 + C: "OO",140263206812448,140263591793664 + + ;Model::joint2, Model::joint1 + C: "OO",140263656025088,140263591793664 + + ;Model::joint10, Model::joint1 + C: "OO",140263471538176,140263591793664 + + ;Model::joint18, Model::joint1 + C: "OO",140263471853056,140263591793664 + + ;AnimCurveNode::T, Model::joint1 + C: "OP",140263216157040,140263591793664, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint1 + C: "OP",140263217507648,140263591793664, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint1 + C: "OP",140263219507616,140263591793664, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint1 + C: "OP",140263216270000,140263591793664, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint1 + C: "OP",140263213088640,140263591793664, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint1 + C: "OP",140263218878592,140263591793664, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint1 + C: "OP",140263219660256,140263591793664, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint1 + C: "OP",140263212989296,140263591793664, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint1 + C: "OP",140263218891552,140263591793664, "Lcl Scaling" + + ;AnimCurveNode::Visibility, Model::joint1 + C: "OP",140263219999552,140263591793664, "Visibility" + + ;AnimCurveNode::Visibility, Model::joint1 + C: "OP",140263208615616,140263591793664, "Visibility" + + ;AnimCurveNode::Visibility, Model::joint1 + C: "OP",140263219504864,140263591793664, "Visibility" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint1 + C: "OP",140263217724000,140263591793664, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint1 + C: "OP",140263212751840,140263591793664, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint1 + C: "OP",140263218933200,140263591793664, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint2 + C: "OO",140263218634784,140263656025088 + + ;Model::joint3, Model::joint2 + C: "OO",140263655555072,140263656025088 + + ;AnimCurveNode::T, Model::joint2 + C: "OP",140263219812560,140263656025088, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint2 + C: "OP",140263212818080,140263656025088, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint2 + C: "OP",140263218860720,140263656025088, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint2 + C: "OP",140263223860080,140263656025088, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint2 + C: "OP",140263212831776,140263656025088, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint2 + C: "OP",140263218866864,140263656025088, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint2 + C: "OP",140263219607376,140263656025088, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint2 + C: "OP",140263212835184,140263656025088, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint2 + C: "OP",140263218865056,140263656025088, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint2 + C: "OP",140263217723488,140263656025088, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint2 + C: "OP",140263217714032,140263656025088, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint2 + C: "OP",140263218852560,140263656025088, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint3 + C: "OO",140263218674992,140263655555072 + + ;Model::joint4, Model::joint3 + C: "OO",140263593026560,140263655555072 + + ;Model::joint14, Model::joint3 + C: "OO",140263654438400,140263655555072 + + ;Model::joint8, Model::joint3 + C: "OO",140263470197248,140263655555072 + + ;AnimCurveNode::lockInfluenceWeights, Model::joint3 + C: "OP",140263217725408,140263655555072, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint3 + C: "OP",140263217715536,140263655555072, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint3 + C: "OP",140263221652640,140263655555072, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint4 + C: "OO",140263209309376,140263593026560 + + ;Model::joint5, Model::joint4 + C: "OO",140263593032704,140263593026560 + + ;AnimCurveNode::T, Model::joint4 + C: "OP",140263199318608,140263593026560, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint4 + C: "OP",140263212838128,140263593026560, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint4 + C: "OP",140263218872736,140263593026560, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint4 + C: "OP",140263211202864,140263593026560, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint4 + C: "OP",140263212821328,140263593026560, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint4 + C: "OP",140263218862560,140263593026560, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint4 + C: "OP",140263223866192,140263593026560, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint4 + C: "OP",140263212819440,140263593026560, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint4 + C: "OP",140263218874560,140263593026560, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint4 + C: "OP",140263217727104,140263593026560, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint4 + C: "OP",140263212562560,140263593026560, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint4 + C: "OP",140263221653952,140263593026560, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint5 + C: "OO",140263218656400,140263593032704 + + ;Model::joint6, Model::joint5 + C: "OO",140263654427648,140263593032704 + + ;AnimCurveNode::T, Model::joint5 + C: "OP",140263644926848,140263593032704, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint5 + C: "OP",140263212842432,140263593032704, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint5 + C: "OP",140263209942672,140263593032704, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint5 + C: "OP",140263644931872,140263593032704, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint5 + C: "OP",140263212860128,140263593032704, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint5 + C: "OP",140263219498912,140263593032704, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint5 + C: "OP",140263644944192,140263593032704, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint5 + C: "OP",140263212825776,140263593032704, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint5 + C: "OP",140263218774880,140263593032704, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint5 + C: "OP",140263217728832,140263593032704, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint5 + C: "OP",140263208910848,140263593032704, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint5 + C: "OP",140263221655344,140263593032704, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint6 + C: "OO",140263209618560,140263654427648 + + ;Model::joint7, Model::joint6 + C: "OO",140263654432256,140263654427648 + + ;AnimCurveNode::T, Model::joint6 + C: "OP",140263644923600,140263654427648, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint6 + C: "OP",140263212689248,140263654427648, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint6 + C: "OP",140263218781520,140263654427648, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint6 + C: "OP",140263223867632,140263654427648, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint6 + C: "OP",140263212982272,140263654427648, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint6 + C: "OP",140263218785152,140263654427648, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint6 + C: "OP",140263644924864,140263654427648, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint6 + C: "OP",140263212980416,140263654427648, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint6 + C: "OP",140263218783344,140263654427648, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint6 + C: "OP",140263217730912,140263654427648, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint6 + C: "OP",140263212612816,140263654427648, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint6 + C: "OP",140263221631792,140263654427648, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint7 + C: "OO",140263218680992,140263654432256 + + ;AnimCurveNode::lockInfluenceWeights, Model::joint7 + C: "OP",140263217732512,140263654432256, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint7 + C: "OP",140263212614288,140263654432256, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint7 + C: "OP",140263221633184,140263654432256, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint14 + C: "OO",140263218618416,140263654438400 + + ;Model::joint15, Model::joint14 + C: "OO",140263654255616,140263654438400 + + ;AnimCurveNode::T, Model::joint14 + C: "OP",140263223874032,140263654438400, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint14 + C: "OP",140263212884240,140263654438400, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint14 + C: "OP",140263218791024,140263654438400, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint14 + C: "OP",140263220255584,140263654438400, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint14 + C: "OP",140263217470480,140263654438400, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint14 + C: "OP",140263218794656,140263654438400, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint14 + C: "OP",140263223872816,140263654438400, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint14 + C: "OP",140263213082992,140263654438400, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint14 + C: "OP",140263218792848,140263654438400, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint14 + C: "OP",140263208218848,140263654438400, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint14 + C: "OP",140263212854432,140263654438400, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint14 + C: "OP",140263221636944,140263654438400, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint15 + C: "OO",140263218621296,140263654255616 + + ;Model::joint16, Model::joint15 + C: "OO",140263654260224,140263654255616 + + ;AnimCurveNode::T, Model::joint15 + C: "OP",140263219733408,140263654255616, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint15 + C: "OP",140263212678768,140263654255616, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint15 + C: "OP",140263218800528,140263654255616, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint15 + C: "OP",140263219761728,140263654255616, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint15 + C: "OP",140263212744400,140263654255616, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint15 + C: "OP",140263218895680,140263654255616, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint15 + C: "OP",140263219731360,140263654255616, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint15 + C: "OP",140263212741712,140263654255616, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint15 + C: "OP",140263218893872,140263654255616, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint15 + C: "OP",140263217734592,140263654255616, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint15 + C: "OP",140263212855904,140263654255616, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint15 + C: "OP",140263221657152,140263654255616, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint16 + C: "OO",140263218652384,140263654260224 + + ;Model::joint17, Model::joint16 + C: "OO",140263654266368,140263654260224 + + ;AnimCurveNode::T, Model::joint16 + C: "OP",140263219782240,140263654260224, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint16 + C: "OP",140263212707584,140263654260224, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint16 + C: "OP",140263218803696,140263654260224, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint16 + C: "OP",140263219871424,140263654260224, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint16 + C: "OP",140263212710656,140263654260224, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint16 + C: "OP",140263219111504,140263654260224, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint16 + C: "OP",140263219796960,140263654260224, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint16 + C: "OP",140263212720016,140263654260224, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint16 + C: "OP",140263218805520,140263654260224, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint16 + C: "OP",140263213022080,140263654260224, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint16 + C: "OP",140263212612512,140263654260224, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint16 + C: "OP",140263221658864,140263654260224, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint17 + C: "OO",140263218626176,140263654266368 + + ;AnimCurveNode::lockInfluenceWeights, Model::joint17 + C: "OP",140263217735056,140263654266368, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint17 + C: "OP",140263217720880,140263654266368, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint17 + C: "OP",140263221660192,140263654266368, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint8 + C: "OO",140263209025344,140263470197248 + + ;Model::joint9, Model::joint8 + C: "OO",140263470199808,140263470197248 + + ;AnimCurveNode::T, Model::joint8 + C: "OP",140263219932560,140263470197248, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint8 + C: "OP",140263213129264,140263470197248, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint8 + C: "OP",140263218812112,140263470197248, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint8 + C: "OP",140263220141536,140263470197248, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint8 + C: "OP",140263213122160,140263470197248, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint8 + C: "OP",140263218815808,140263470197248, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint8 + C: "OP",140263219933552,140263470197248, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint8 + C: "OP",140263213093424,140263470197248, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint8 + C: "OP",140263218814000,140263470197248, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint8 + C: "OP",140263213061584,140263470197248, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint8 + C: "OP",140263217718704,140263470197248, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint8 + C: "OP",140263219474320,140263470197248, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint9 + C: "OO",140263212244432,140263470199808 + + ;AnimCurveNode::lockInfluenceWeights, Model::joint9 + C: "OP",140263212325840,140263470199808, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint9 + C: "OP",140263208184096,140263470199808, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint9 + C: "OP",140263219475664,140263470199808, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint10 + C: "OO",140263212432592,140263471538176 + + ;Model::joint11, Model::joint10 + C: "OO",140263694239744,140263471538176 + + ;AnimCurveNode::T, Model::joint10 + C: "OP",140263220105728,140263471538176, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint10 + C: "OP",140263212559184,140263471538176, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint10 + C: "OP",140263218514704,140263471538176, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint10 + C: "OP",140263211827520,140263471538176, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint10 + C: "OP",140263213215216,140263471538176, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint10 + C: "OP",140263218518160,140263471538176, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint10 + C: "OP",140263220132800,140263471538176, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint10 + C: "OP",140263213213312,140263471538176, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint10 + C: "OP",140263218516352,140263471538176, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint10 + C: "OP",140263212327440,140263471538176, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint10 + C: "OP",140263208185440,140263471538176, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint10 + C: "OP",140263219472176,140263471538176, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint11 + C: "OO",140263218226384,140263694239744 + + ;Model::joint12, Model::joint11 + C: "OO",140263471540736,140263694239744 + + ;AnimCurveNode::T, Model::joint11 + C: "OP",140263216046320,140263694239744, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint11 + C: "OP",140263217594544,140263694239744, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint11 + C: "OP",140263219067120,140263694239744, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint11 + C: "OP",140263219597008,140263694239744, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint11 + C: "OP",140263217685408,140263694239744, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint11 + C: "OP",140263214929936,140263694239744, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint11 + C: "OP",140263219700992,140263694239744, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint11 + C: "OP",140263217580528,140263694239744, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint11 + C: "OP",140263215007920,140263694239744, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint11 + C: "OP",140263208893888,140263694239744, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint11 + C: "OP",140263208377920,140263694239744, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint11 + C: "OP",140263219494608,140263694239744, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint12 + C: "OO",140263217625536,140263471540736 + + ;Model::joint13, Model::joint12 + C: "OO",140263471848448,140263471540736 + + ;AnimCurveNode::T, Model::joint12 + C: "OP",140263213108672,140263471540736, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint12 + C: "OP",140263217691360,140263471540736, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint12 + C: "OP",140263215189632,140263471540736, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint12 + C: "OP",140263217762032,140263471540736, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint12 + C: "OP",140263217468048,140263471540736, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint12 + C: "OP",140263214940480,140263471540736, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint12 + C: "OP",140263217471664,140263471540736, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint12 + C: "OP",140263217693152,140263471540736, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint12 + C: "OP",140263214938736,140263471540736, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint12 + C: "OP",140263217744480,140263471540736, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint12 + C: "OP",140263208398560,140263471540736, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint12 + C: "OP",140263219496000,140263471540736, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint13 + C: "OO",140263213044496,140263471848448 + + ;AnimCurveNode::lockInfluenceWeights, Model::joint13 + C: "OP",140263217746224,140263471848448, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint13 + C: "OP",140263208400000,140263471848448, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint13 + C: "OP",140263219497392,140263471848448, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint18 + C: "OO",140263213099200,140263471853056 + + ;Model::joint19, Model::joint18 + C: "OO",140263694421504,140263471853056 + + ;AnimCurveNode::T, Model::joint18 + C: "OP",140263217740560,140263471853056, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint18 + C: "OP",140263217609376,140263471853056, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint18 + C: "OP",140263215196608,140263471853056, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint18 + C: "OP",140263209706224,140263471853056, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint18 + C: "OP",140263217572416,140263471853056, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint18 + C: "OP",140263215193872,140263471853056, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint18 + C: "OP",140263218660624,140263471853056, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint18 + C: "OP",140263217611168,140263471853056, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint18 + C: "OP",140263215198432,140263471853056, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint18 + C: "OP",140263217757632,140263471853056, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint18 + C: "OP",140263217719136,140263471853056, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint18 + C: "OP",140263221658544,140263471853056, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint19 + C: "OO",140263218346160,140263694421504 + + ;Model::joint20, Model::joint19 + C: "OO",140263694427648,140263694421504 + + ;AnimCurveNode::T, Model::joint19 + C: "OP",140263221861104,140263694421504, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint19 + C: "OP",140263213152560,140263694421504, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint19 + C: "OP",140263215024496,140263694421504, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint19 + C: "OP",140263218647504,140263694421504, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint19 + C: "OP",140263213139712,140263694421504, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint19 + C: "OP",140263215023088,140263694421504, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint19 + C: "OP",140263218678384,140263694421504, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint19 + C: "OP",140263212771264,140263694421504, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint19 + C: "OP",140263215015776,140263694421504, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint19 + C: "OP",140263213032736,140263694421504, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint19 + C: "OP",140263212323008,140263694421504, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint19 + C: "OP",140263219500688,140263694421504, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint20 + C: "OO",140263217853008,140263694427648 + + ;Model::joint21, Model::joint20 + C: "OO",140263694433792,140263694427648 + + ;AnimCurveNode::T, Model::joint20 + C: "OP",140263218682624,140263694427648, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint20 + C: "OP",140263217584560,140263694427648, "Lcl Translation" + + ;AnimCurveNode::T, Model::joint20 + C: "OP",140263215017760,140263694427648, "Lcl Translation" + + ;AnimCurveNode::R, Model::joint20 + C: "OP",140263218694208,140263694427648, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint20 + C: "OP",140263217589888,140263694427648, "Lcl Rotation" + + ;AnimCurveNode::R, Model::joint20 + C: "OP",140263221723728,140263694427648, "Lcl Rotation" + + ;AnimCurveNode::S, Model::joint20 + C: "OP",140263214569072,140263694427648, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint20 + C: "OP",140263217590480,140263694427648, "Lcl Scaling" + + ;AnimCurveNode::S, Model::joint20 + C: "OP",140263221721952,140263694427648, "Lcl Scaling" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint20 + C: "OP",140263217764032,140263694427648, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint20 + C: "OP",140263208554048,140263694427648, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint20 + C: "OP",140263219502080,140263694427648, "lockInfluenceWeights" + + ;NodeAttribute::, Model::joint21 + C: "OO",140263212727344,140263694433792 + + ;AnimCurveNode::lockInfluenceWeights, Model::joint21 + C: "OP",140263217763136,140263694433792, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint21 + C: "OP",140263212797296,140263694433792, "lockInfluenceWeights" + + ;AnimCurveNode::lockInfluenceWeights, Model::joint21 + C: "OP",140263219503472,140263694433792, "lockInfluenceWeights" + + ;NodeAttribute::bottom, Model::bottom + C: "OO",140263694442496,140263694439936 + + ;Geometry::, Model::nurbsCircle8 + C: "OO",140263217850480,140263694448128 + + ;Model::nurbsCircle1, Model::nurbsCircle8 + C: "OO",140263694455808,140263694448128 + + ;Model::nurbsCircle4, Model::nurbsCircle8 + C: "OO",140263694474240,140263694448128 + + ;Model::nurbsCircle7, Model::nurbsCircle8 + C: "OO",140263694494720,140263694448128 + + ;AnimCurveNode::T, Model::nurbsCircle8 + C: "OP",140263211575120,140263694448128, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle8 + C: "OP",140263217662160,140263694448128, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle8 + C: "OP",140263214642896,140263694448128, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle8 + C: "OP",140263209878064,140263694448128, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle8 + C: "OP",140263217605440,140263694448128, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle8 + C: "OP",140263214649504,140263694448128, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle8 + C: "OP",140263220139536,140263694448128, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle8 + C: "OP",140263217603584,140263694448128, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle8 + C: "OP",140263214644528,140263694448128, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle1 + C: "OO",140263223012640,140263694455808 + + ;Model::nurbsCircle2, Model::nurbsCircle1 + C: "OO",140263694461952,140263694455808 + + ;AnimCurveNode::T, Model::nurbsCircle1 + C: "OP",140263214836240,140263694455808, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle1 + C: "OP",140263217559776,140263694455808, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle1 + C: "OP",140263218507136,140263694455808, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle1 + C: "OP",140263214584816,140263694455808, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle1 + C: "OP",140263217557856,140263694455808, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle1 + C: "OP",140263218510608,140263694455808, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle1 + C: "OP",140263209946272,140263694455808, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle1 + C: "OP",140263217555984,140263694455808, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle1 + C: "OP",140263218508864,140263694455808, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle2 + C: "OO",140263223017056,140263694461952 + + ;Model::nurbsCircle3, Model::nurbsCircle2 + C: "OO",140263694468096,140263694461952 + + ;AnimCurveNode::T, Model::nurbsCircle2 + C: "OP",140263221996000,140263694461952, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle2 + C: "OP",140263214584560,140263694461952, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle2 + C: "OP",140263218493552,140263694461952, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle2 + C: "OP",140263209836640,140263694461952, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle2 + C: "OP",140263218647200,140263694461952, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle2 + C: "OP",140263218496992,140263694461952, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle2 + C: "OP",140263221997824,140263694461952, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle2 + C: "OP",140263221860224,140263694461952, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle2 + C: "OP",140263218495312,140263694461952, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle3 + C: "OO",140263223018064,140263694468096 + + ;AnimCurveNode::T, Model::nurbsCircle3 + C: "OP",140263218614592,140263694468096, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle3 + C: "OP",140263209781600,140263694468096, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle3 + C: "OP",140263218486688,140263694468096, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle3 + C: "OP",140263214618976,140263694468096, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle3 + C: "OP",140263214656896,140263694468096, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle3 + C: "OP",140263218490128,140263694468096, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle3 + C: "OP",140263214579312,140263694468096, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle3 + C: "OP",140263214655680,140263694468096, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle3 + C: "OP",140263218488448,140263694468096, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle4 + C: "OO",140263212622656,140263694474240 + + ;Model::nurbsCircle5, Model::nurbsCircle4 + C: "OO",140263694482432,140263694474240 + + ;AnimCurveNode::T, Model::nurbsCircle4 + C: "OP",140263219467568,140263694474240, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle4 + C: "OP",140263215304192,140263694474240, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle4 + C: "OP",140263219078624,140263694474240, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle4 + C: "OP",140263221852128,140263694474240, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle4 + C: "OP",140263209927312,140263694474240, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle4 + C: "OP",140263219062624,140263694474240, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle4 + C: "OP",140263219466688,140263694474240, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle4 + C: "OP",140263215305408,140263694474240, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle4 + C: "OP",140263219080384,140263694474240, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle5 + C: "OO",140263212325120,140263694482432 + + ;Model::nurbsCircle6, Model::nurbsCircle5 + C: "OO",140263694488576,140263694482432 + + ;AnimCurveNode::T, Model::nurbsCircle5 + C: "OP",140263221857104,140263694482432, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle5 + C: "OP",140263209830976,140263694482432, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle5 + C: "OP",140263218968640,140263694482432, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle5 + C: "OP",140263218444560,140263694482432, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle5 + C: "OP",140263221882976,140263694482432, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle5 + C: "OP",140263218972080,140263694482432, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle5 + C: "OP",140263218440832,140263694482432, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle5 + C: "OP",140263214907376,140263694482432, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle5 + C: "OP",140263218970400,140263694482432, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle6 + C: "OO",140263213083760,140263694488576 + + ;AnimCurveNode::T, Model::nurbsCircle6 + C: "OP",140263218450080,140263694488576, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle6 + C: "OP",140263209930464,140263694488576, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle6 + C: "OP",140263219074000,140263694488576, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle6 + C: "OP",140263218455536,140263694488576, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle6 + C: "OP",140263215273408,140263694488576, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle6 + C: "OP",140263219091920,140263694488576, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle6 + C: "OP",140263218452144,140263694488576, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle6 + C: "OP",140263215223376,140263694488576, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle6 + C: "OP",140263219075760,140263694488576, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle7 + C: "OO",140263208688320,140263694494720 + + ;AnimCurveNode::T, Model::nurbsCircle7 + C: "OP",140263213010848,140263694494720, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle7 + C: "OP",140263214777760,140263694494720, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle7 + C: "OP",140263219131888,140263694494720, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle7 + C: "OP",140263212776160,140263694494720, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle7 + C: "OP",140263221757248,140263694494720, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle7 + C: "OP",140263219135328,140263694494720, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle7 + C: "OP",140263213009504,140263694494720, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle7 + C: "OP",140263221755376,140263694494720, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle7 + C: "OP",140263219133648,140263694494720, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle9 + C: "OO",140263212645984,140263694500864 + + ;Model::nurbsCircle14, Model::nurbsCircle9 + C: "OO",140263694507008,140263694500864 + + ;AnimCurveNode::T, Model::nurbsCircle9 + C: "OP",140263212789888,140263694500864, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle9 + C: "OP",140263221899312,140263694500864, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle9 + C: "OP",140263219127872,140263694500864, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle9 + C: "OP",140263217930960,140263694500864, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle9 + C: "OP",140263221903040,140263694500864, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle9 + C: "OP",140263219100736,140263694500864, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle9 + C: "OP",140263212790432,140263694500864, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle9 + C: "OP",140263221901168,140263694500864, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle9 + C: "OP",140263219099056,140263694500864, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle14 + C: "OO",140263208765824,140263694507008 + + ;Model::nurbsCircle13, Model::nurbsCircle14 + C: "OO",140263694513152,140263694507008 + + ;AnimCurveNode::T, Model::nurbsCircle14 + C: "OP",140263212627536,140263694507008, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle14 + C: "OP",140263209995456,140263694507008, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle14 + C: "OP",140263219113984,140263694507008, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle14 + C: "OP",140263222798128,140263694507008, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle14 + C: "OP",140263219122928,140263694507008, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle14 + C: "OP",140263219117424,140263694507008, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle14 + C: "OP",140263212721792,140263694507008, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle14 + C: "OP",140263219187312,140263694507008, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle14 + C: "OP",140263219115744,140263694507008, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle13 + C: "OO",140263217485488,140263694513152 + + ;AnimCurveNode::T, Model::nurbsCircle13 + C: "OP",140263222801056,140263694513152, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle13 + C: "OP",140263218942608,140263694513152, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle13 + C: "OP",140263219141968,140263694513152, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle13 + C: "OP",140263217936896,140263694513152, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle13 + C: "OP",140263218850000,140263694513152, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle13 + C: "OP",140263219145440,140263694513152, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle13 + C: "OP",140263212754832,140263694513152, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle13 + C: "OP",140263218848128,140263694513152, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle13 + C: "OP",140263219143728,140263694513152, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle10 + C: "OO",140263212998576,140263694519296 + + ;Model::nurbsCircle11, Model::nurbsCircle10 + C: "OO",140263694525440,140263694519296 + + ;AnimCurveNode::T, Model::nurbsCircle10 + C: "OP",140263217856224,140263694519296, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle10 + C: "OP",140263218828800,140263694519296, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle10 + C: "OP",140263214687296,140263694519296, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle10 + C: "OP",140263217861008,140263694519296, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle10 + C: "OP",140263218832528,140263694519296, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle10 + C: "OP",140263214690736,140263694519296, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle10 + C: "OP",140263217857600,140263694519296, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle10 + C: "OP",140263218830656,140263694519296, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle10 + C: "OP",140263214689056,140263694519296, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle11 + C: "OO",140263212636096,140263694525440 + + ;Model::nurbsCircle12, Model::nurbsCircle11 + C: "OO",140263694531584,140263694525440 + + ;AnimCurveNode::T, Model::nurbsCircle11 + C: "OP",140263217994208,140263694525440, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle11 + C: "OP",140263218840000,140263694525440, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle11 + C: "OP",140263219039968,140263694525440, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle11 + C: "OP",140263213000608,140263694525440, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle11 + C: "OP",140263218931472,140263694525440, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle11 + C: "OP",140263219089680,140263694525440, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle11 + C: "OP",140263217848976,140263694525440, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle11 + C: "OP",140263218841856,140263694525440, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle11 + C: "OP",140263219096064,140263694525440, "Lcl Scaling" + + ;Geometry::, Model::nurbsCircle12 + C: "OO",140263212641648,140263694531584 + + ;AnimCurveNode::T, Model::nurbsCircle12 + C: "OP",140263217548880,140263694531584, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle12 + C: "OP",140263218886384,140263694531584, "Lcl Translation" + + ;AnimCurveNode::T, Model::nurbsCircle12 + C: "OP",140263219054432,140263694531584, "Lcl Translation" + + ;AnimCurveNode::R, Model::nurbsCircle12 + C: "OP",140263212761696,140263694531584, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle12 + C: "OP",140263218935088,140263694531584, "Lcl Rotation" + + ;AnimCurveNode::R, Model::nurbsCircle12 + C: "OP",140263219028960,140263694531584, "Lcl Rotation" + + ;AnimCurveNode::S, Model::nurbsCircle12 + C: "OP",140263217550896,140263694531584, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle12 + C: "OP",140263218888240,140263694531584, "Lcl Scaling" + + ;AnimCurveNode::S, Model::nurbsCircle12 + C: "OP",140263219027280,140263694531584, "Lcl Scaling" + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",140263215986096,140263219999552, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",140263219541360,140263216157040, "d|X" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",140263220458656,140263216157040, "d|Y" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",140263219564288,140263216157040, "d|Z" + + ;AnimCurve::, AnimCurveNode::S + C: "OP",140263219638800,140263219660256, "d|X" + + ;AnimCurve::, AnimCurveNode::S + C: "OP",140263216258848,140263219660256, "d|Y" + + ;AnimCurve::, AnimCurveNode::S + C: "OP",140263219619552,140263219660256, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263216162336,140263216270000, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263220065168,140263216270000, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219695792,140263216270000, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263223858880,140263223860080, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263216300288,140263223860080, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263219812240,140263223860080, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263211845008,140263211202864, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263211844848,140263211202864, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263223865664,140263211202864, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263644930160,140263644931872, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263644930000,140263644931872, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263644944816,140263644931872, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263216307216,140263223867632, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263216307056,140263223867632, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263223869712,140263223867632, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263220254416,140263220255584, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263220254256,140263220255584, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263223874800,140263220255584, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263219760544,140263219761728, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263219760384,140263219761728, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263219732048,140263219761728, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263219788208,140263219871424, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263219768160,140263219871424, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263219796576,140263219871424, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263215817376,140263220141536, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263215817216,140263220141536, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263219931968,140263220141536, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263216098848,140263211827520, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263211826336,140263211827520, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263220132112,140263211827520, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263219702880,140263219597008, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263219595904,140263219597008, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263216047520,140263219597008, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263217761232,140263217762032, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263217739424,140263217762032, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263212995280,140263217762032, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263218606880,140263209706224, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263218606720,140263209706224, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263218668912,140263209706224, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263218646320,140263218647504, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263218646160,140263218647504, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263218678064,140263218647504, "d|Z" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263218641632,140263218694208, "d|X" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263218641472,140263218694208, "d|Y" + + ;AnimCurve::FbxMayaSample Curve, AnimCurveNode::R + C: "OP",140263218641104,140263218694208, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214537872,140263209878064, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214537328,140263209878064, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218643680,140263209878064, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214583888,140263214584816, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263222004784,140263214584816, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221994576,140263214584816, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214575648,140263209836640, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263209838592,140263209836640, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214577600,140263209836640, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214581856,140263214618976, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218663760,140263214618976, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218665392,140263214618976, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221994320,140263221852128, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221853984,140263221852128, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221855632,140263221852128, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218443520,140263218444560, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218446528,140263218444560, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218448176,140263218444560, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218454496,140263218455536, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217547888,140263218455536, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217750144,140263218455536, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212775120,140263212776160, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212778336,140263212776160, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212787552,140263212776160, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217929856,140263217930960, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217932960,140263217930960, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217934608,140263217930960, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263222797088,140263222798128, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218011920,140263222798128, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218013552,140263222798128, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218257936,140263217936896, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217966384,140263217936896, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217562928,140263217936896, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217859968,140263217861008, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217862928,140263217861008, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217864544,140263217861008, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212848832,140263213000608, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217777200,140263213000608, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218264400,140263213000608, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212760656,140263212761696, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217601072,140263212761696, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217791152,140263212761696, "d|Z" + + ;SubDeformer::, Deformer:: + C: "OO",140263218639408,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263209966640,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263209919664,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263206768448,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263209615280,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263209739696,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263218669808,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263209938960,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263222937152,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263222948112,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263217800624,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263643926768,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263218261600,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263643936656,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263643938608,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263643933920,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263643921760,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263217514592,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263217517536,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263212966144,140263212725344 + + ;SubDeformer::, Deformer:: + C: "OO",140263212685792,140263212725344 + + ;Model::joint1, SubDeformer:: + C: "OO",140263591793664,140263218639408 + + ;Model::joint2, SubDeformer:: + C: "OO",140263656025088,140263209966640 + + ;Model::joint3, SubDeformer:: + C: "OO",140263655555072,140263209919664 + + ;Model::joint4, SubDeformer:: + C: "OO",140263593026560,140263206768448 + + ;Model::joint5, SubDeformer:: + C: "OO",140263593032704,140263209615280 + + ;Model::joint6, SubDeformer:: + C: "OO",140263654427648,140263209739696 + + ;Model::joint7, SubDeformer:: + C: "OO",140263654432256,140263218669808 + + ;Model::joint14, SubDeformer:: + C: "OO",140263654438400,140263209938960 + + ;Model::joint15, SubDeformer:: + C: "OO",140263654255616,140263222937152 + + ;Model::joint16, SubDeformer:: + C: "OO",140263654260224,140263222948112 + + ;Model::joint17, SubDeformer:: + C: "OO",140263654266368,140263217800624 + + ;Model::joint8, SubDeformer:: + C: "OO",140263470197248,140263643926768 + + ;Model::joint9, SubDeformer:: + C: "OO",140263470199808,140263218261600 + + ;Model::joint10, SubDeformer:: + C: "OO",140263471538176,140263643936656 + + ;Model::joint11, SubDeformer:: + C: "OO",140263694239744,140263643938608 + + ;Model::joint12, SubDeformer:: + C: "OO",140263471540736,140263643933920 + + ;Model::joint13, SubDeformer:: + C: "OO",140263471848448,140263643921760 + + ;Model::joint18, SubDeformer:: + C: "OO",140263471853056,140263217514592 + + ;Model::joint19, SubDeformer:: + C: "OO",140263694421504,140263217517536 + + ;Model::joint20, SubDeformer:: + C: "OO",140263694427648,140263212966144 + + ;Model::joint21, SubDeformer:: + C: "OO",140263694433792,140263212685792 + + ;AnimLayer::BaseLayer, AnimStack::Walk + C: "OO",140263212750480,140263208814800 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263212751840,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217714032,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217715536,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263212562560,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263208910848,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263212612816,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263212614288,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263212854432,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263212855904,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263212612512,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217720880,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217718704,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263208184096,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263208185440,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263208377920,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263208398560,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263208400000,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263217719136,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263212323008,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263208554048,140263212750480 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263212797296,140263212750480 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",140263208615616,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263217507648,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263212989296,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263213088640,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263212818080,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263212835184,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263212831776,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263212838128,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263212819440,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263212821328,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263212842432,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263212825776,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263212860128,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263212689248,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263212980416,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263212982272,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263212884240,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263213082992,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263217470480,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263212678768,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263212741712,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263212744400,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263212707584,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263212720016,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263212710656,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263213129264,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263213093424,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263213122160,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263212559184,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263213213312,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263213215216,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263217594544,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263217580528,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263217685408,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263217691360,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263217693152,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263217468048,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263217609376,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263217611168,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263217572416,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263213152560,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263212771264,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263213139712,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263217584560,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263217590480,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263217589888,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263217662160,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263217603584,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263217605440,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263217559776,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263217555984,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263217557856,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263214584560,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263221860224,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218647200,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263209781600,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263214655680,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263214656896,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263215304192,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263215305408,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263209927312,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263209830976,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263214907376,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263221882976,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263209930464,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263215223376,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263215273408,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263214777760,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263221755376,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263221757248,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263221899312,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263221901168,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263221903040,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263209995456,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219187312,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219122928,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218942608,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218848128,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218850000,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218828800,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218830656,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218832528,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218840000,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218841856,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218931472,140263212750480 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218886384,140263212750480 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218888240,140263212750480 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218935088,140263212750480 + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",140263208405136,140263208615616, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",140263217509376,140263217507648, "d|X" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",140263212734752,140263217507648, "d|Y" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",140263212736096,140263217507648, "d|Z" + + ;AnimCurve::, AnimCurveNode::S + C: "OP",140263643633312,140263212989296, "d|X" + + ;AnimCurve::, AnimCurveNode::S + C: "OP",140263643634688,140263212989296, "d|Y" + + ;AnimCurve::, AnimCurveNode::S + C: "OP",140263212730192,140263212989296, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212752592,140263213088640, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212753968,140263213088640, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212748688,140263213088640, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212667696,140263212831776, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263213143024,140263212831776, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263213144384,140263212831776, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212823056,140263212821328, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212828000,140263212821328, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212829344,140263212821328, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212842032,140263212860128, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212840144,140263212860128, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212836464,140263212860128, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212675712,140263212982272, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212676976,140263212982272, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212882704,140263212982272, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212679728,140263217470480, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212694240,140263217470480, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212740672,140263217470480, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263213145680,140263212744400, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263213146768,140263212744400, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212706048,140263212744400, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212781120,140263212710656, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212782352,140263212710656, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212810496,140263212710656, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217452928,140263213122160, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217454176,140263213122160, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217455632,140263213122160, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263213216976,140263213215216, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263213218320,140263213215216, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263213219680,140263213215216, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217687104,140263217685408, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217688464,140263217685408, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217689824,140263217685408, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217566448,140263217468048, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217567664,140263217468048, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263212917872,140263217468048, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217574096,140263217572416, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217569376,140263217572416, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217568480,140263217572416, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263213136256,140263213139712, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263213137616,140263213139712, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217578976,140263213139712, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217529824,140263217589888, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217531184,140263217589888, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217660768,140263217589888, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263208522288,140263217605440, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217543728,140263217605440, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263217545072,140263217605440, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263208422000,140263217557856, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218638896,140263217557856, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214582640,140263217557856, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263209973920,140263218647200, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218625920,140263218647200, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214700624,140263218647200, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263206478768,140263214656896, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263210013344,140263214656896, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263210014400,140263214656896, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218529728,140263209927312, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218530928,140263209927312, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214653088,140263209927312, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221884672,140263221882976, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214536336,140263221882976, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221634064,140263221882976, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215027568,140263215273408, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215028944,140263215273408, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214776224,140263215273408, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221758944,140263221757248, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221896528,140263221757248, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221897776,140263221757248, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221916800,140263221903040, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221918064,140263221903040, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263209958736,140263221903040, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219124624,140263219122928, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263210055168,140263219122928, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218834912,140263219122928, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218824528,140263218850000, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218825904,140263218850000, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218827264,140263218850000, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218835744,140263218832528, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218837104,140263218832528, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218838464,140263218832528, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218882112,140263218931472, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218883488,140263218931472, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218884848,140263218931472, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218821712,140263218935088, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218823040,140263218935088, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218928512,140263218935088, "d|Z" + + ;AnimLayer::BaseLayer, AnimStack::Sit + C: "OO",140263218932096,140263218853632 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263218933200,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263218852560,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263221652640,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263221653952,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263221655344,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263221631792,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263221633184,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263221636944,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263221657152,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263221658864,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263221660192,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263219474320,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263219475664,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263219472176,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263219494608,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263219496000,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263219497392,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263221658544,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263219500688,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263219502080,140263218932096 + + ;AnimCurveNode::lockInfluenceWeights, AnimLayer::BaseLayer + C: "OO",140263219503472,140263218932096 + + ;AnimCurveNode::Visibility, AnimLayer::BaseLayer + C: "OO",140263219504864,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219507616,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218891552,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218878592,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218860720,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218865056,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218866864,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218872736,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218874560,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218862560,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263209942672,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218774880,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219498912,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218781520,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218783344,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218785152,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218791024,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218792848,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218794656,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218800528,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218893872,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218895680,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218803696,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218805520,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219111504,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218812112,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218814000,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218815808,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218514704,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218516352,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218518160,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219067120,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263215007920,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263214929936,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263215189632,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263214938736,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263214940480,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263215196608,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263215198432,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263215193872,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263215024496,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263215015776,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263215023088,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263215017760,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263221721952,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263221723728,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263214642896,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263214644528,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263214649504,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218507136,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218508864,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218510608,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218493552,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218495312,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218496992,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218486688,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218488448,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218490128,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219078624,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219080384,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219062624,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263218968640,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263218970400,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263218972080,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219074000,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219075760,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219091920,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219131888,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219133648,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219135328,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219127872,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219099056,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219100736,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219113984,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219115744,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219117424,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219141968,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219143728,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219145440,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263214687296,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263214689056,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263214690736,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219039968,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219096064,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219089680,140263218932096 + + ;AnimCurveNode::T, AnimLayer::BaseLayer + C: "OO",140263219054432,140263218932096 + + ;AnimCurveNode::S, AnimLayer::BaseLayer + C: "OO",140263219027280,140263218932096 + + ;AnimCurveNode::R, AnimLayer::BaseLayer + C: "OO",140263219028960,140263218932096 + + ;AnimCurve::, AnimCurveNode::Visibility + C: "OP",140263219506304,140263219504864, "d|Visibility" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",140263219509440,140263219507616, "d|X" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",140263219510784,140263219507616, "d|Y" + + ;AnimCurve::, AnimCurveNode::T + C: "OP",140263218890208,140263219507616, "d|Z" + + ;AnimCurve::, AnimCurveNode::S + C: "OP",140263221651344,140263218891552, "d|X" + + ;AnimCurve::, AnimCurveNode::S + C: "OP",140263221648544,140263218891552, "d|Y" + + ;AnimCurve::, AnimCurveNode::S + C: "OP",140263218877232,140263218891552, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218880416,140263218878592, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218858000,140263218878592, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218859360,140263218878592, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218868672,140263218866864, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218870016,140263218866864, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218871376,140263218866864, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263209989168,140263218862560, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263209990512,140263218862560, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263209991872,140263218862560, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218777456,140263219498912, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218778800,140263219498912, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218780160,140263219498912, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218786960,140263218785152, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218788304,140263218785152, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218789664,140263218785152, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218796464,140263218794656, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218797808,140263218794656, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218799168,140263218794656, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218897488,140263218895680, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218898832,140263218895680, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218802272,140263218895680, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218808048,140263219111504, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218809392,140263219111504, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218810752,140263219111504, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218817616,140263218815808, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218818960,140263218815808, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218820320,140263218815808, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218519968,140263218518160, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219057360,140263218518160, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219060640,140263218518160, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214931584,140263214929936, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214953472,140263214929936, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214934224,140263214929936, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214999616,140263214940480, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215000688,140263214940480, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215195344,140263214940480, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215221952,140263215193872, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218512496,140263215193872, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215021712,140263215193872, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215166320,140263215023088, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215011088,140263215023088, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215012448,140263215023088, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221725536,140263221723728, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263221726880,140263221723728, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215234448,140263221723728, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215217632,140263214649504, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215218976,140263214649504, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218551616,140263214649504, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218502368,140263218510608, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218503712,140263218510608, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218505072,140263218510608, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218498672,140263218496992, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218484064,140263218496992, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218485328,140263218496992, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215314848,140263218490128, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263215316128,140263218490128, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218506480,140263218490128, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219064304,140263219062624, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219065584,140263219062624, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219052240,140263219062624, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218973760,140263218972080, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218975040,140263218972080, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219072640,140263218972080, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219093568,140263219091920, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219139728,140263219091920, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219130544,140263219091920, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219137008,140263219135328, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219138288,140263219135328, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219126512,140263219135328, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219110336,140263219100736, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219119440,140263219100736, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219112672,140263219100736, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219103136,140263219117424, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219104416,140263219117424, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219108736,140263219117424, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218549120,140263219145440, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214693504,140263219145440, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214686064,140263219145440, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263214692416,140263214690736, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219094336,140263214690736, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219097120,140263214690736, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219086976,140263219089680, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219059056,140263219089680, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219053328,140263219089680, "d|Z" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219030640,140263219028960, "d|X" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263219031920,140263219028960, "d|Y" + + ;AnimCurve::, AnimCurveNode::R + C: "OP",140263218994592,140263219028960, "d|Z" +} +;Takes section +;---------------------------------------------------- + +Takes: { + Current: "Take 001" + Take: "Walk" { + FileName: "Walk.tak" + LocalTime: 1539538600,61581544000 + ReferenceTime: 1539538600,61581544000 + } + Take: "Sit" { + FileName: "Sit.tak" + LocalTime: 63121082600,115465395000 + ReferenceTime: 63121082600,115465395000 + } +} diff --git a/examples/webgl_loader_fbx.html b/examples/webgl_loader_fbx.html index 696e46ff97..55a743afbb 100644 --- a/examples/webgl_loader_fbx.html +++ b/examples/webgl_loader_fbx.html @@ -61,6 +61,10 @@ scene = new THREE.Scene(); + lights = new THREE.DirectionalLight(); + lights.position.set(0,5,0); + scene.add(lights); + // grid var gridHelper = new THREE.GridHelper( 14, 28, 0x303030, 0x303030 ); gridHelper.position.set( 0, - 0.04, 0 ); @@ -93,7 +97,7 @@ }; var loader = new THREE.FBXLoader( manager ); - loader.load( 'models/fbx/xsi_man_skinning.fbx', function( object ) { + loader.load( 'models/fbx/MyMultiTest.fbx', function( object ) { object.traverse( function( child ) { @@ -110,7 +114,7 @@ child.mixer = new THREE.AnimationMixer( child ); mixers.push( child.mixer ); - var action = child.mixer.clipAction( child.geometry.animations[ 0 ] ); + var action = child.mixer.clipAction( child.geometry.animations[ 1 ] ); action.play(); } @@ -127,7 +131,7 @@ renderer = new THREE.WebGLRenderer(); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); - renderer.setClearColor( 0x000000 ); + renderer.setClearColor( 0xffffff ); container.appendChild( renderer.domElement ); // controls, camera -- GitLab