diff --git a/Assets/InputActions.cs b/Assets/InputActions.cs new file mode 100644 index 00000000..3f2626c9 --- /dev/null +++ b/Assets/InputActions.cs @@ -0,0 +1,202 @@ +// GENERATED AUTOMATICALLY FROM 'Assets/InputActions.inputactions' + +using System; +using System.Collections; +using System.Collections.Generic; +using UnityEngine.InputSystem; +using UnityEngine.InputSystem.Utilities; + +public class @InputActions : IInputActionCollection, IDisposable +{ + public InputActionAsset asset { get; } + public @InputActions() + { + asset = InputActionAsset.FromJson(@"{ + ""name"": ""InputActions"", + ""maps"": [ + { + ""name"": ""New action map"", + ""id"": ""8a39d33c-4e12-467a-ac3c-b632be26e494"", + ""actions"": [ + { + ""name"": ""Movement"", + ""type"": ""PassThrough"", + ""id"": ""9d61c63b-e8ca-4db1-a3e7-fc0f33816105"", + ""expectedControlType"": ""Vector2"", + ""processors"": """", + ""interactions"": """" + } + ], + ""bindings"": [ + { + ""name"": ""Move"", + ""id"": ""78a69b6d-4740-4944-a79d-c20be75044d2"", + ""path"": ""2DVector"", + ""interactions"": """", + ""processors"": """", + ""groups"": """", + ""action"": ""Movement"", + ""isComposite"": true, + ""isPartOfComposite"": false + }, + { + ""name"": ""up"", + ""id"": ""972fcf4d-9087-4a4e-9d42-61d10805c46d"", + ""path"": ""/w"", + ""interactions"": """", + ""processors"": """", + ""groups"": """", + ""action"": ""Movement"", + ""isComposite"": false, + ""isPartOfComposite"": true + }, + { + ""name"": ""down"", + ""id"": ""6b152c48-5254-4699-ab5b-633a26088446"", + ""path"": ""/s"", + ""interactions"": """", + ""processors"": """", + ""groups"": """", + ""action"": ""Movement"", + ""isComposite"": false, + ""isPartOfComposite"": true + }, + { + ""name"": ""left"", + ""id"": ""cbeed83e-342d-4314-b420-384ae5989b16"", + ""path"": ""/a"", + ""interactions"": """", + ""processors"": """", + ""groups"": """", + ""action"": ""Movement"", + ""isComposite"": false, + ""isPartOfComposite"": true + }, + { + ""name"": ""right"", + ""id"": ""f231c76b-c753-49ad-a379-5e0009372e77"", + ""path"": ""/d"", + ""interactions"": """", + ""processors"": """", + ""groups"": """", + ""action"": ""Movement"", + ""isComposite"": false, + ""isPartOfComposite"": true + } + ] + } + ], + ""controlSchemes"": [ + { + ""name"": ""New control scheme"", + ""bindingGroup"": ""New control scheme"", + ""devices"": [ + { + ""devicePath"": """", + ""isOptional"": false, + ""isOR"": false + }, + { + ""devicePath"": """", + ""isOptional"": false, + ""isOR"": false + } + ] + } + ] +}"); + // New action map + m_Newactionmap = asset.FindActionMap("New action map", throwIfNotFound: true); + m_Newactionmap_Movement = m_Newactionmap.FindAction("Movement", throwIfNotFound: true); + } + + public void Dispose() + { + UnityEngine.Object.Destroy(asset); + } + + public InputBinding? bindingMask + { + get => asset.bindingMask; + set => asset.bindingMask = value; + } + + public ReadOnlyArray? devices + { + get => asset.devices; + set => asset.devices = value; + } + + public ReadOnlyArray controlSchemes => asset.controlSchemes; + + public bool Contains(InputAction action) + { + return asset.Contains(action); + } + + public IEnumerator GetEnumerator() + { + return asset.GetEnumerator(); + } + + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + + public void Enable() + { + asset.Enable(); + } + + public void Disable() + { + asset.Disable(); + } + + // New action map + private readonly InputActionMap m_Newactionmap; + private INewactionmapActions m_NewactionmapActionsCallbackInterface; + private readonly InputAction m_Newactionmap_Movement; + public struct NewactionmapActions + { + private @InputActions m_Wrapper; + public NewactionmapActions(@InputActions wrapper) { m_Wrapper = wrapper; } + public InputAction @Movement => m_Wrapper.m_Newactionmap_Movement; + public InputActionMap Get() { return m_Wrapper.m_Newactionmap; } + public void Enable() { Get().Enable(); } + public void Disable() { Get().Disable(); } + public bool enabled => Get().enabled; + public static implicit operator InputActionMap(NewactionmapActions set) { return set.Get(); } + public void SetCallbacks(INewactionmapActions instance) + { + if (m_Wrapper.m_NewactionmapActionsCallbackInterface != null) + { + @Movement.started -= m_Wrapper.m_NewactionmapActionsCallbackInterface.OnMovement; + @Movement.performed -= m_Wrapper.m_NewactionmapActionsCallbackInterface.OnMovement; + @Movement.canceled -= m_Wrapper.m_NewactionmapActionsCallbackInterface.OnMovement; + } + m_Wrapper.m_NewactionmapActionsCallbackInterface = instance; + if (instance != null) + { + @Movement.started += instance.OnMovement; + @Movement.performed += instance.OnMovement; + @Movement.canceled += instance.OnMovement; + } + } + } + public NewactionmapActions @Newactionmap => new NewactionmapActions(this); + private int m_NewcontrolschemeSchemeIndex = -1; + public InputControlScheme NewcontrolschemeScheme + { + get + { + if (m_NewcontrolschemeSchemeIndex == -1) m_NewcontrolschemeSchemeIndex = asset.FindControlSchemeIndex("New control scheme"); + return asset.controlSchemes[m_NewcontrolschemeSchemeIndex]; + } + } + public interface INewactionmapActions + { + void OnMovement(InputAction.CallbackContext context); + } +} diff --git a/Assets/InputActions.cs.meta b/Assets/InputActions.cs.meta new file mode 100644 index 00000000..90935ef4 --- /dev/null +++ b/Assets/InputActions.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: f69723834cf180344812d3edfc1463f4 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/InputActions.inputactions b/Assets/InputActions.inputactions new file mode 100644 index 00000000..f1349fe6 --- /dev/null +++ b/Assets/InputActions.inputactions @@ -0,0 +1,94 @@ +{ + "name": "InputActions", + "maps": [ + { + "name": "New action map", + "id": "8a39d33c-4e12-467a-ac3c-b632be26e494", + "actions": [ + { + "name": "Movement", + "type": "PassThrough", + "id": "9d61c63b-e8ca-4db1-a3e7-fc0f33816105", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "" + } + ], + "bindings": [ + { + "name": "Move", + "id": "78a69b6d-4740-4944-a79d-c20be75044d2", + "path": "2DVector", + "interactions": "", + "processors": "", + "groups": "", + "action": "Movement", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "972fcf4d-9087-4a4e-9d42-61d10805c46d", + "path": "/w", + "interactions": "", + "processors": "", + "groups": "", + "action": "Movement", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "6b152c48-5254-4699-ab5b-633a26088446", + "path": "/s", + "interactions": "", + "processors": "", + "groups": "", + "action": "Movement", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "cbeed83e-342d-4314-b420-384ae5989b16", + "path": "/a", + "interactions": "", + "processors": "", + "groups": "", + "action": "Movement", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "f231c76b-c753-49ad-a379-5e0009372e77", + "path": "/d", + "interactions": "", + "processors": "", + "groups": "", + "action": "Movement", + "isComposite": false, + "isPartOfComposite": true + } + ] + } + ], + "controlSchemes": [ + { + "name": "New control scheme", + "bindingGroup": "New control scheme", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + }, + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + } + ] +} \ No newline at end of file diff --git a/Assets/InputActions.inputactions.meta b/Assets/InputActions.inputactions.meta new file mode 100644 index 00000000..b24213c4 --- /dev/null +++ b/Assets/InputActions.inputactions.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 02d55052cdb931e41abf29f814c4e411 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 8404be70184654265930450def6a9037, type: 3} + generateWrapperCode: 1 + wrapperCodePath: + wrapperClassName: + wrapperCodeNamespace: diff --git a/Assets/New Render Texture.renderTexture b/Assets/New Render Texture.renderTexture new file mode 100644 index 00000000..923f7d06 --- /dev/null +++ b/Assets/New Render Texture.renderTexture @@ -0,0 +1,38 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!84 &8400000 +RenderTexture: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: New Render Texture + m_ImageContentsHash: + serializedVersion: 2 + Hash: 00000000000000000000000000000000 + m_ForcedFallbackFormat: 4 + m_DownscaleFallback: 0 + m_IsAlphaChannelOptional: 0 + serializedVersion: 3 + m_Width: 256 + m_Height: 256 + m_AntiAliasing: 1 + m_MipCount: -1 + m_DepthFormat: 2 + m_ColorFormat: 8 + m_MipMap: 0 + m_GenerateMips: 1 + m_SRGB: 0 + m_UseDynamicScale: 0 + m_BindMS: 0 + m_EnableCompatibleFormat: 1 + m_TextureSettings: + serializedVersion: 2 + m_FilterMode: 1 + m_Aniso: 0 + m_MipBias: 0 + m_WrapU: 1 + m_WrapV: 1 + m_WrapW: 1 + m_Dimension: 2 + m_VolumeDepth: 1 diff --git a/Assets/New Render Texture.renderTexture.meta b/Assets/New Render Texture.renderTexture.meta new file mode 100644 index 00000000..a54969d0 --- /dev/null +++ b/Assets/New Render Texture.renderTexture.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 148b68510bdafdd49bd971da244629ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 8400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/SampleScene.unity b/Assets/Scenes/SampleScene.unity index 2221b045..a5a4a775 100644 --- a/Assets/Scenes/SampleScene.unity +++ b/Assets/Scenes/SampleScene.unity @@ -38,7 +38,7 @@ RenderSettings: m_ReflectionIntensity: 1 m_CustomReflection: {fileID: 0} m_Sun: {fileID: 705507994} - m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_IndirectSpecularColor: {r: 0.44657874, g: 0.49641258, b: 0.5748172, a: 1} m_UseRadianceAmbientProbe: 0 --- !u!157 &3 LightmapSettings: @@ -118,6 +118,8 @@ NavMeshSettings: manualTileSize: 0 tileSize: 256 accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 debug: m_Flags: 0 m_NavMeshData: {fileID: 0} @@ -125,7 +127,8 @@ NavMeshSettings: GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - component: {fileID: 705507995} @@ -141,15 +144,18 @@ GameObject: Light: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 705507993} m_Enabled: 1 - serializedVersion: 8 + serializedVersion: 10 m_Type: 1 + m_Shape: 0 m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} m_Intensity: 1 m_Range: 10 m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 m_CookieSize: 10 m_Shadows: m_Type: 2 @@ -159,6 +165,24 @@ Light: m_Bias: 0.05 m_NormalBias: 0.4 m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 m_Cookie: {fileID: 0} m_DrawHalo: 0 m_Flare: {fileID: 0} @@ -166,65 +190,492 @@ Light: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 + m_RenderingLayerMask: 1 m_Lightmapping: 1 m_LightShadowCasterMode: 0 m_AreaSize: {x: 1, y: 1} m_BounceIntensity: 1 m_ColorTemperature: 6570 m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 m_ShadowRadius: 0 m_ShadowAngle: 0 --- !u!4 &705507995 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 705507993} m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} m_LocalPosition: {x: 0, y: 3, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 1 + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} ---- !u!1 &963194225 +--- !u!1001 &1054471748 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2044435104} + m_Modifications: + - target: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_AnchoredPosition.x + value: 17 + objectReference: {fileID: 0} + - target: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_AnchoredPosition.y + value: 232 + objectReference: {fileID: 0} + - target: {fileID: 2254913560243331653, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_Name + value: WheelBall (1) + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalPosition.x + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} +--- !u!224 &1054471749 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + m_PrefabInstance: {fileID: 1054471748} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1127284141 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1127284145} + - component: {fileID: 1127284144} + - component: {fileID: 1127284143} + - component: {fileID: 1127284142} + m_Layer: 5 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1127284142 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1127284141} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1127284143 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1127284141} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!223 &1127284144 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1127284141} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 1 + m_Camera: {fileID: 1851372586} + m_PlaneDistance: 1000 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1127284145 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1127284141} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1587331867} + - {fileID: 2044435104} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1001 &1170650405 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1127284145} + m_Modifications: + - target: {fileID: 100000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_Name + value: Player + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalScale.x + value: 180.9564 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalScale.y + value: 145.7409 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalScale.z + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalPosition.x + value: 161 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalPosition.y + value: 48 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} +--- !u!1 &1438096607 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 4744770356124370292, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + m_PrefabInstance: {fileID: 3673004999985564155} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1587331866 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 100000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + m_PrefabInstance: {fileID: 1170650405} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1587331867 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} + m_PrefabInstance: {fileID: 1170650405} + m_PrefabAsset: {fileID: 0} +--- !u!54 &1587331868 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1587331866} + serializedVersion: 2 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_UseGravity: 0 + m_IsKinematic: 0 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!64 &1587331869 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1587331866} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 4 + m_Convex: 1 + m_CookingOptions: 30 + m_Mesh: {fileID: 4300000, guid: 323d16512ab93f243b2a4606e1011381, type: 3} +--- !u!114 &1587331870 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1587331866} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1e25e26c2d6e5c54bb848316080ef65c, type: 3} + m_Name: + m_EditorClassIdentifier: + speed: 5 +--- !u!114 &1587331871 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1587331866} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 62899f850307741f2a39c98a8b639597, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Actions: {fileID: -944628639613478452, guid: 02d55052cdb931e41abf29f814c4e411, type: 3} + m_NotificationBehavior: 0 + m_UIInputModule: {fileID: 0} + m_DeviceLostEvent: + m_PersistentCalls: + m_Calls: [] + m_DeviceRegainedEvent: + m_PersistentCalls: + m_Calls: [] + m_ControlsChangedEvent: + m_PersistentCalls: + m_Calls: [] + m_ActionEvents: [] + m_NeverAutoSwitchControlSchemes: 0 + m_DefaultControlScheme: + m_DefaultActionMap: New action map + m_SplitScreenIndex: -1 + m_Camera: {fileID: 0} +--- !u!1 &1824462822 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1824462825} + - component: {fileID: 1824462824} + - component: {fileID: 1824462823} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1824462823 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824462822} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01614664b831546d2ae94a42149d80ac, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MoveRepeatDelay: 0.5 + m_MoveRepeatRate: 0.1 + m_ActionsAsset: {fileID: -944628639613478452, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_PointAction: {fileID: 1054132383583890850, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_MoveAction: {fileID: 3710738434707379630, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_SubmitAction: {fileID: 2064916234097673511, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_CancelAction: {fileID: -1967631576421560919, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_LeftClickAction: {fileID: 8056856818456041789, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_MiddleClickAction: {fileID: 3279352641294131588, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_RightClickAction: {fileID: 3837173908680883260, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_ScrollWheelAction: {fileID: 4502412055082496612, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_TrackedDevicePositionAction: {fileID: 4754684134866288074, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_TrackedDeviceOrientationAction: {fileID: 1025543830046995696, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_DeselectOnBackgroundClick: 1 + m_PointerBehavior: 0 +--- !u!114 &1824462824 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824462822} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &1824462825 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824462822} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1851372584 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 963194228} - - component: {fileID: 963194227} - - component: {fileID: 963194226} + - component: {fileID: 1851372587} + - component: {fileID: 1851372586} + - component: {fileID: 1851372585} m_Layer: 0 - m_Name: Main Camera - m_TagString: MainCamera + m_Name: Camera + m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!81 &963194226 +--- !u!81 &1851372585 AudioListener: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 963194225} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851372584} m_Enabled: 1 ---- !u!20 &963194227 +--- !u!20 &1851372586 Camera: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 963194225} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851372584} m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 m_SensorSize: {x: 36, y: 24} m_LensShift: {x: 0, y: 0} - m_GateFitMode: 2 m_FocalLength: 50 m_NormalizedViewPortRect: serializedVersion: 2 @@ -232,12 +683,12 @@ Camera: y: 0 width: 1 height: 1 - near clip plane: 0.3 + near clip plane: 0.1 far clip plane: 1000 field of view: 60 orthographic: 0 orthographic size: 5 - m_Depth: -1 + m_Depth: 2 m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 @@ -252,16 +703,492 @@ Camera: m_OcclusionCulling: 1 m_StereoConvergence: 10 m_StereoSeparation: 0.022 ---- !u!4 &963194228 +--- !u!4 &1851372587 Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInternal: {fileID: 0} - m_GameObject: {fileID: 963194225} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851372584} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 1, z: -10} + m_LocalPosition: {x: 1779.763, y: 469.30173, z: -582.03235} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 0} - m_RootOrder: 0 + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2044435103 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2044435104} + - component: {fileID: 2044435106} + - component: {fileID: 2044435105} + m_Layer: 5 + m_Name: BallPanel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2044435104 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2044435103} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 5772862138295244285} + - {fileID: 7812306066641407717} + - {fileID: 3673004999985564156} + - {fileID: 1054471749} + - {fileID: 8561634674093307316} + m_Father: {fileID: 1127284145} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -279.61188, y: -97.66937} + m_SizeDelta: {x: -1347.2063, y: -279.0104} + m_Pivot: {x: 0.5283228, y: 0.6252945} +--- !u!114 &2044435105 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2044435103} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2044435106 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2044435103} + m_CullTransparentMesh: 1 +--- !u!1001 &3673004999985564155 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2044435104} + m_Modifications: + - target: {fileID: 4744770356124370292, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_Name + value: BuckyBall + objectReference: {fileID: 0} + - target: {fileID: 4744770356124370292, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_TagString + value: CenterBall + objectReference: {fileID: 0} + - target: {fileID: 8522376593422284559, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_Pivot.x + value: 0.5148496 + objectReference: {fileID: 0} + - target: {fileID: 8522376593422284559, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_Pivot.y + value: 0.5149722 + objectReference: {fileID: 0} + - target: {fileID: 8522376593422284559, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8522376593422284559, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_AnchoredPosition.x + value: 17 + objectReference: {fileID: 0} + - target: {fileID: 8522376593422284559, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_AnchoredPosition.y + value: 82 + objectReference: {fileID: 0} + - target: {fileID: 8611892221157717863, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 8611892221157717863, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_LocalPosition.x + value: -134.09879 + objectReference: {fileID: 0} + - target: {fileID: 8611892221157717863, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_LocalPosition.y + value: -33.60476 + objectReference: {fileID: 0} + - target: {fileID: 8611892221157717863, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8611892221157717863, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8611892221157717863, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8611892221157717863, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8611892221157717863, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8611892221157717863, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8611892221157717863, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8611892221157717863, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 9169711790874577473, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + m_SourcePrefab: {fileID: 100100000, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} +--- !u!224 &3673004999985564156 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 8522376593422284559, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} + m_PrefabInstance: {fileID: 3673004999985564155} + m_PrefabAsset: {fileID: 0} +--- !u!1 &5372333365341214583 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 5534244002652261284, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + m_PrefabInstance: {fileID: 8561634674093307315} + m_PrefabAsset: {fileID: 0} +--- !u!135 &5372333365341214584 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5372333365341214583} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &5372333365341214585 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5372333365341214583} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 82709d4f5089aa9499b5c235a4bdb678, type: 3} + m_Name: + m_EditorClassIdentifier: + centerBall: {fileID: 0} +--- !u!1001 &5772862138295244284 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2044435104} + m_Modifications: + - target: {fileID: 1078990859502005740, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_Pivot.x + value: 0.48853052 + objectReference: {fileID: 0} + - target: {fileID: 1078990859502005740, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_Pivot.y + value: 0.5091784 + objectReference: {fileID: 0} + - target: {fileID: 1078990859502005740, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_AnchoredPosition.x + value: -133 + objectReference: {fileID: 0} + - target: {fileID: 1078990859502005740, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_AnchoredPosition.y + value: 82 + objectReference: {fileID: 0} + - target: {fileID: 1542455700433892650, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1542455700433892650, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_LocalPosition.x + value: 200 + objectReference: {fileID: 0} + - target: {fileID: 1542455700433892650, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1542455700433892650, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1542455700433892650, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1542455700433892650, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1542455700433892650, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1542455700433892650, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1542455700433892650, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1542455700433892650, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1542455700433892650, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2539113821616047929, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_Name + value: EyeBall + objectReference: {fileID: 0} + - target: {fileID: 4257294590364382204, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + propertyPath: m_UseGravity + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} +--- !u!224 &5772862138295244285 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1078990859502005740, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + m_PrefabInstance: {fileID: 5772862138295244284} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7812306066641407716 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2044435104} + m_Modifications: + - target: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_Pivot.y + value: 0.49999997 + objectReference: {fileID: 0} + - target: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_AnchoredPosition.x + value: 167 + objectReference: {fileID: 0} + - target: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_AnchoredPosition.y + value: 82 + objectReference: {fileID: 0} + - target: {fileID: 2254913560243331653, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_Name + value: WheelBall + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalPosition.x + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2958959751319588950, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5775854006098636769, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + propertyPath: centerBall + value: + objectReference: {fileID: 1438096607} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} +--- !u!224 &7812306066641407717 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 1116580580141847294, guid: 44b3c644ec7c4bc4e93251966b37eab5, type: 3} + m_PrefabInstance: {fileID: 7812306066641407716} + m_PrefabAsset: {fileID: 0} +--- !u!1 &8296172667469714117 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 2539113821616047929, guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea, type: 3} + m_PrefabInstance: {fileID: 5772862138295244284} + m_PrefabAsset: {fileID: 0} +--- !u!114 &8296172667469714118 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8296172667469714117} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 82709d4f5089aa9499b5c235a4bdb678, type: 3} + m_Name: + m_EditorClassIdentifier: + centerBall: {fileID: 1438096607} +--- !u!1001 &8561634674093307315 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2044435104} + m_Modifications: + - target: {fileID: 811514089147043683, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 811514089147043683, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 811514089147043683, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 811514089147043683, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalScale.x + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 811514089147043683, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalScale.y + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 811514089147043683, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalScale.z + value: 100 + objectReference: {fileID: 0} + - target: {fileID: 811514089147043683, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_AnchoredPosition.x + value: 26.002441 + objectReference: {fileID: 0} + - target: {fileID: 811514089147043683, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_AnchoredPosition.y + value: -68.00098 + objectReference: {fileID: 0} + - target: {fileID: 5534244002652261284, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_Name + value: AtomBall + objectReference: {fileID: 0} + - target: {fileID: 8833472301530511799, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8833472301530511799, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalPosition.x + value: 169.47742 + objectReference: {fileID: 0} + - target: {fileID: 8833472301530511799, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalPosition.y + value: -206.70477 + objectReference: {fileID: 0} + - target: {fileID: 8833472301530511799, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8833472301530511799, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8833472301530511799, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8833472301530511799, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8833472301530511799, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8833472301530511799, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8833472301530511799, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8833472301530511799, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: + - {fileID: 1640920200387857288, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + m_SourcePrefab: {fileID: 100100000, guid: 49045cfe551785541b9f907c19f1207e, type: 3} +--- !u!224 &8561634674093307316 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 811514089147043683, guid: 49045cfe551785541b9f907c19f1207e, type: 3} + m_PrefabInstance: {fileID: 8561634674093307315} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Standard Assets.meta b/Assets/Standard Assets.meta new file mode 100644 index 00000000..73835bf7 --- /dev/null +++ b/Assets/Standard Assets.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9fe291b7ecfa6694f8246cf9d97c5265 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Standard Assets/Effects.meta b/Assets/Standard Assets/Effects.meta new file mode 100644 index 00000000..edbd10d9 --- /dev/null +++ b/Assets/Standard Assets/Effects.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a889c6d83e048b045aac0760dae1d776 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Standard Assets/Effects/ToonShading.meta b/Assets/Standard Assets/Effects/ToonShading.meta new file mode 100644 index 00000000..bfb5ae93 --- /dev/null +++ b/Assets/Standard Assets/Effects/ToonShading.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 27438e118c298ed42af26f8e08fb12ad +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Standard Assets/Effects/ToonShading/Shaders.meta b/Assets/Standard Assets/Effects/ToonShading/Shaders.meta new file mode 100644 index 00000000..7bc09630 --- /dev/null +++ b/Assets/Standard Assets/Effects/ToonShading/Shaders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05ca5c6836490a841aa112c99a8d9f61 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Standard Assets/Effects/ToonShading/Shaders/ToonLit.shader b/Assets/Standard Assets/Effects/ToonShading/Shaders/ToonLit.shader new file mode 100644 index 00000000..254b7ec9 --- /dev/null +++ b/Assets/Standard Assets/Effects/ToonShading/Shaders/ToonLit.shader @@ -0,0 +1,53 @@ +Shader "Toon/Lit" { + Properties { + _Color ("Main Color", Color) = (0.5,0.5,0.5,1) + _MainTex ("Base (RGB)", 2D) = "white" {} + _Ramp ("Toon Ramp (RGB)", 2D) = "gray" {} + } + + SubShader { + Tags { "RenderType"="Opaque" } + LOD 200 + +CGPROGRAM +#pragma surface surf ToonRamp + +sampler2D _Ramp; + +// custom lighting function that uses a texture ramp based +// on angle between light direction and normal +#pragma lighting ToonRamp exclude_path:prepass +inline half4 LightingToonRamp (SurfaceOutput s, half3 lightDir, half atten) +{ + #ifndef USING_DIRECTIONAL_LIGHT + lightDir = normalize(lightDir); + #endif + + half d = dot (s.Normal, lightDir)*0.5 + 0.5; + half3 ramp = tex2D (_Ramp, float2(d,d)).rgb; + + half4 c; + c.rgb = s.Albedo * _LightColor0.rgb * ramp * (atten * 2); + c.a = 0; + return c; +} + + +sampler2D _MainTex; +float4 _Color; + +struct Input { + float2 uv_MainTex : TEXCOORD0; +}; + +void surf (Input IN, inout SurfaceOutput o) { + half4 c = tex2D(_MainTex, IN.uv_MainTex) * _Color; + o.Albedo = c.rgb; + o.Alpha = c.a; +} +ENDCG + + } + + Fallback "Diffuse" +} diff --git a/Assets/Standard Assets/Effects/ToonShading/Shaders/ToonLit.shader.meta b/Assets/Standard Assets/Effects/ToonShading/Shaders/ToonLit.shader.meta new file mode 100644 index 00000000..771203ca --- /dev/null +++ b/Assets/Standard Assets/Effects/ToonShading/Shaders/ToonLit.shader.meta @@ -0,0 +1,6 @@ +fileFormatVersion: 2 +guid: 48dca5b99d113b8d11006bab44295342 +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: diff --git a/Assets/prefabs.meta b/Assets/prefabs.meta new file mode 100644 index 00000000..13c609ba --- /dev/null +++ b/Assets/prefabs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 82730da56f5198b4190319812acf8d61 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/prefabs/AtomBall.prefab b/Assets/prefabs/AtomBall.prefab new file mode 100644 index 00000000..97b753b0 --- /dev/null +++ b/Assets/prefabs/AtomBall.prefab @@ -0,0 +1,263 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5523020094622434 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4983023130151694586} + - component: {fileID: 8311641589752698385} + - component: {fileID: 8310793296836253709} + m_Layer: 0 + m_Name: AtomBallLines + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4983023130151694586 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5523020094622434} + m_LocalRotation: {x: -0.7010574, y: 0.09229595, z: -0.09229596, w: 0.7010574} + m_LocalPosition: {x: 0.000041365623, y: 0.00007702411, z: 0.00013083965} + m_LocalScale: {x: 0.5000001, y: 0.5, z: 0.5000001} + m_Children: [] + m_Father: {fileID: 811514089147043683} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8311641589752698385 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5523020094622434} + m_Mesh: {fileID: 4300002, guid: 4a1142b17f64bbc40871f76529421f77, type: 3} +--- !u!23 &8310793296836253709 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5523020094622434} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 6fa08a488bd3c1a4a8466925211f4bd1, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5202136386777814076 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3628314177195306310} + - component: {fileID: 5540899162080802013} + - component: {fileID: 6963591474380920261} + m_Layer: 0 + m_Name: AtomBallSpheres + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3628314177195306310 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5202136386777814076} + m_LocalRotation: {x: -4.32978e-17, y: 0.7071067, z: 0.7071068, w: -4.3297806e-17} + m_LocalPosition: {x: -0.32736272, y: -0.29009324, z: -0.15955476} + m_LocalScale: {x: 0.054317415, y: 0.054317415, z: -0.054317415} + m_Children: [] + m_Father: {fileID: 811514089147043683} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5540899162080802013 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5202136386777814076} + m_Mesh: {fileID: 4300000, guid: 4a1142b17f64bbc40871f76529421f77, type: 3} +--- !u!23 &6963591474380920261 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5202136386777814076} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 5c353f7057da35640bdff38d63dda4d8, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &5534244002652261284 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 811514089147043683} + - component: {fileID: 1100633880486052908} + - component: {fileID: 1640920200387857288} + - component: {fileID: 8302068243963605876} + - component: {fileID: 2891940815372548048} + m_Layer: 0 + m_Name: AtomBall + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &811514089147043683 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5534244002652261284} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: + - {fileID: 4983023130151694586} + - {fileID: 3628314177195306310} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 169.47742, y: -206.70477} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!111 &1100633880486052908 +Animation: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5534244002652261284} + m_Enabled: 1 + serializedVersion: 3 + m_Animation: {fileID: 1989289236423521904, guid: 4a1142b17f64bbc40871f76529421f77, type: 3} + m_Animations: + - {fileID: 1989289236423521904, guid: 4a1142b17f64bbc40871f76529421f77, type: 3} + m_WrapMode: 0 + m_PlayAutomatically: 1 + m_AnimatePhysics: 0 + m_CullingType: 0 +--- !u!65 &1640920200387857288 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5534244002652261284} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Size: {x: 1, y: 1, z: 1} + m_Center: {x: 0, y: 0, z: 0} +--- !u!54 &8302068243963605876 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5534244002652261284} + serializedVersion: 2 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_UseGravity: 1 + m_IsKinematic: 1 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!114 &2891940815372548048 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5534244002652261284} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 82709d4f5089aa9499b5c235a4bdb678, type: 3} + m_Name: + m_EditorClassIdentifier: + centerBall: {fileID: 4744770356124370292, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} diff --git a/Assets/prefabs/AtomBall.prefab.meta b/Assets/prefabs/AtomBall.prefab.meta new file mode 100644 index 00000000..2880c13a --- /dev/null +++ b/Assets/prefabs/AtomBall.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 49045cfe551785541b9f907c19f1207e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/prefabs/BuckyBall.prefab b/Assets/prefabs/BuckyBall.prefab new file mode 100644 index 00000000..38d19e0a --- /dev/null +++ b/Assets/prefabs/BuckyBall.prefab @@ -0,0 +1,218 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4744770356124370292 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8522376593422284559} + - component: {fileID: 167590549821704956} + m_Layer: 0 + m_Name: BuckyBall + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8522376593422284559 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4744770356124370292} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: + - {fileID: 4259199581324070466} + - {fileID: 4156743516442330534} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -134.09879, y: -33.60476} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!111 &167590549821704956 +Animation: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4744770356124370292} + m_Enabled: 1 + serializedVersion: 3 + m_Animation: {fileID: 1989289236423521904, guid: a97bdcf094fff104d9f67b004b505dd0, type: 3} + m_Animations: + - {fileID: 1989289236423521904, guid: a97bdcf094fff104d9f67b004b505dd0, type: 3} + m_WrapMode: 0 + m_PlayAutomatically: 1 + m_AnimatePhysics: 0 + m_CullingType: 0 +--- !u!1 &5575698569222342011 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4259199581324070466} + - component: {fileID: 951693460841483753} + - component: {fileID: 5530317256328862851} + m_Layer: 0 + m_Name: BuckyBallAtoms + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4259199581324070466 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5575698569222342011} + m_LocalRotation: {x: -4.32978e-17, y: 0.7071067, z: 0.7071068, w: -4.3297806e-17} + m_LocalPosition: {x: -0.04552874, y: 0.40894002, z: 0.14012544} + m_LocalScale: {x: 0.054317415, y: 0.054317415, z: -0.054317415} + m_Children: [] + m_Father: {fileID: 8522376593422284559} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &951693460841483753 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5575698569222342011} + m_Mesh: {fileID: 4300006, guid: a97bdcf094fff104d9f67b004b505dd0, type: 3} +--- !u!23 &5530317256328862851 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5575698569222342011} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: d1bf0a2e0afb1c54e9080e5f71e3531f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &8099922006909470258 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4156743516442330534} + - component: {fileID: 588834199298819690} + - component: {fileID: 4712547799874058839} + m_Layer: 0 + m_Name: BuckyBallLines + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4156743516442330534 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8099922006909470258} + m_LocalRotation: {x: -0.7071068, y: 0, z: -0, w: 0.7071068} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_Children: [] + m_Father: {fileID: 8522376593422284559} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &588834199298819690 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8099922006909470258} + m_Mesh: {fileID: 4300004, guid: a97bdcf094fff104d9f67b004b505dd0, type: 3} +--- !u!23 &4712547799874058839 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8099922006909470258} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: d1bf0a2e0afb1c54e9080e5f71e3531f, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/prefabs/BuckyBall.prefab.meta b/Assets/prefabs/BuckyBall.prefab.meta new file mode 100644 index 00000000..922de451 --- /dev/null +++ b/Assets/prefabs/BuckyBall.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 162bd7e646d9efc43b165a28fc3d4b8a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/prefabs/EyeBall.prefab b/Assets/prefabs/EyeBall.prefab new file mode 100644 index 00000000..88da9f67 --- /dev/null +++ b/Assets/prefabs/EyeBall.prefab @@ -0,0 +1,181 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1695455300394943408 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3271879587084955561} + - component: {fileID: 1441202824908847591} + - component: {fileID: 5487669025861629125} + m_Layer: 0 + m_Name: EyeBall + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3271879587084955561 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1695455300394943408} + m_LocalRotation: {x: 0.00000009415696, y: 0.7071068, z: 0.7071067, w: -0.00000009415697} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.5} + m_Children: [] + m_Father: {fileID: 1078990859502005740} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1441202824908847591 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1695455300394943408} + m_Mesh: {fileID: 4300002, guid: 5f603b8c73c81724b9bdc1c65764eb4c, type: 3} +--- !u!23 &5487669025861629125 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1695455300394943408} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 574a32f1fd43e0e498988286b3eeb64b, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} +--- !u!1 &2539113821616047929 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1078990859502005740} + - component: {fileID: 6969064954170738865} + - component: {fileID: 4257294590364382204} + - component: {fileID: 6806477615653695746} + - component: {fileID: 8967263318246512668} + m_Layer: 0 + m_Name: EyeBall + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1078990859502005740 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2539113821616047929} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: + - {fileID: 3271879587084955561} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 200, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!111 &6969064954170738865 +Animation: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2539113821616047929} + m_Enabled: 1 + serializedVersion: 3 + m_Animation: {fileID: 1989289236423521904, guid: 5f603b8c73c81724b9bdc1c65764eb4c, type: 3} + m_Animations: + - {fileID: 1989289236423521904, guid: 5f603b8c73c81724b9bdc1c65764eb4c, type: 3} + m_WrapMode: 0 + m_PlayAutomatically: 1 + m_AnimatePhysics: 0 + m_CullingType: 0 +--- !u!54 &4257294590364382204 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2539113821616047929} + serializedVersion: 2 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_UseGravity: 1 + m_IsKinematic: 0 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!135 &6806477615653695746 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2539113821616047929} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &8967263318246512668 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2539113821616047929} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 82709d4f5089aa9499b5c235a4bdb678, type: 3} + m_Name: + m_EditorClassIdentifier: + centerBall: {fileID: 4744770356124370292, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} diff --git a/Assets/prefabs/EyeBall.prefab.meta b/Assets/prefabs/EyeBall.prefab.meta new file mode 100644 index 00000000..08007fdb --- /dev/null +++ b/Assets/prefabs/EyeBall.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ab1e0f5f1492ab74d8cfa5c4dfe32bea +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/prefabs/WheelBall.prefab b/Assets/prefabs/WheelBall.prefab new file mode 100644 index 00000000..d1620a22 --- /dev/null +++ b/Assets/prefabs/WheelBall.prefab @@ -0,0 +1,181 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2254913560243331653 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1116580580141847294} + - component: {fileID: 6683525293825519053} + - component: {fileID: 7883577750224666257} + - component: {fileID: 6997296753873013518} + - component: {fileID: 5775854006098636769} + m_Layer: 0 + m_Name: WheelBall + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1116580580141847294 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2254913560243331653} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 100, y: 100, z: 100} + m_Children: + - {fileID: 4980953371433146511} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 100, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!111 &6683525293825519053 +Animation: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2254913560243331653} + m_Enabled: 1 + serializedVersion: 3 + m_Animation: {fileID: 1989289236423521904, guid: 74cbada03bcd41d49acec56746acf71e, type: 3} + m_Animations: + - {fileID: 1989289236423521904, guid: 74cbada03bcd41d49acec56746acf71e, type: 3} + m_WrapMode: 0 + m_PlayAutomatically: 1 + m_AnimatePhysics: 0 + m_CullingType: 0 +--- !u!54 &7883577750224666257 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2254913560243331653} + serializedVersion: 2 + m_Mass: 1 + m_Drag: 0 + m_AngularDrag: 0.05 + m_UseGravity: 0 + m_IsKinematic: 0 + m_Interpolate: 0 + m_Constraints: 0 + m_CollisionDetection: 0 +--- !u!135 &6997296753873013518 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2254913560243331653} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Radius: 0.5 + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &5775854006098636769 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2254913560243331653} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 82709d4f5089aa9499b5c235a4bdb678, type: 3} + m_Name: + m_EditorClassIdentifier: + centerBall: {fileID: 4744770356124370292, guid: 162bd7e646d9efc43b165a28fc3d4b8a, type: 3} +--- !u!1 &7341950896755038674 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4980953371433146511} + - component: {fileID: 1049572248404910685} + - component: {fileID: 8129603944478248046} + m_Layer: 0 + m_Name: WheelBall + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4980953371433146511 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7341950896755038674} + m_LocalRotation: {x: 0.7071068, y: -0.7071067, z: 0.000000109611264, w: -0.00000007870266} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.5, y: 0.5, z: 0.63137704} + m_Children: [] + m_Father: {fileID: 1116580580141847294} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1049572248404910685 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7341950896755038674} + m_Mesh: {fileID: 4300000, guid: 74cbada03bcd41d49acec56746acf71e, type: 3} +--- !u!23 &8129603944478248046 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7341950896755038674} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 2 + m_RayTraceProcedural: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 2100000, guid: 40db05b0756f19c43ae471505d9b8ce5, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 3 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/prefabs/WheelBall.prefab.meta b/Assets/prefabs/WheelBall.prefab.meta new file mode 100644 index 00000000..4bbd8238 --- /dev/null +++ b/Assets/prefabs/WheelBall.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 44b3c644ec7c4bc4e93251966b37eab5 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources.meta b/Assets/resources.meta new file mode 100644 index 00000000..ea336921 --- /dev/null +++ b/Assets/resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cf1f9b5490e24354ab56324932eb0644 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack.meta b/Assets/resources/Ball Pack.meta new file mode 100644 index 00000000..da737915 --- /dev/null +++ b/Assets/resources/Ball Pack.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dca8059aaeec82a44938b1182c37c963 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models.meta b/Assets/resources/Ball Pack/Models.meta new file mode 100644 index 00000000..12d45cf1 --- /dev/null +++ b/Assets/resources/Ball Pack/Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1d9ce60a7503ef542893b30a8a41a606 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/AtomBall.fbx b/Assets/resources/Ball Pack/Models/AtomBall.fbx new file mode 100644 index 00000000..d06b558b --- /dev/null +++ b/Assets/resources/Ball Pack/Models/AtomBall.fbx @@ -0,0 +1,2312 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2011 + Month: 03 + Day: 16 + Hour: 12 + Minute: 43 + Second: 10 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2011-03-16 12:43:10:000" +Creator: "Blender version 2.56 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 14 + ObjectType: "Model" { + Count: 11 + } + ObjectType: "Geometry" { + Count: 2 + } + ObjectType: "Material" { + Count: 2 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::Camera Switcher", "CameraSwitcher" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Camera Index", "Integer", "A+",100 + } + MultiLayer: 0 + MultiTake: 1 + Hidden: "True" + Shading: W + Culling: "CullingOff" + Version: 101 + Name: "Model::Camera Switcher" + CameraId: 0 + CameraName: 100 + CameraIndexName: + } + Model: "Model::blend_root", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::AtomBallSpheres", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.327362716197968,-0.290093243122101,-0.159554764628410 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",-0.054317422211170,-0.054317422211170,-0.054317422211170 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.000000,0.000000,-1.439386,1.041540,-0.756714,-0.643715,-0.397825,-1.224400,-0.643715,-1.287423,0.000000,-0.643715,-0.397825,1.224400,-0.643715,1.041540,0.756715,-0.643715,0.397825,-1.224400,0.643716 + ,-1.041540,-0.756714,0.643716,-1.041540,0.756715,0.643716,0.397825,1.224400,0.643716,1.287423,0.000000,0.643716,0.000000,0.000000,1.439386,10.445913,-1.373025,-12.928734,11.487453,-2.129739,-12.133062 + ,10.048089,-2.597425,-12.133062,9.158490,-1.373025,-12.133062,10.048089,-0.148625,-12.133062,11.487453,-0.616310,-12.133062,10.843738,-2.597425,-10.845632,9.404373,-2.129739,-10.845632,9.404373,-0.616310,-10.845632 + ,10.843738,-0.148625,-10.845632,11.733336,-1.373025,-10.845632,10.445913,-1.373025,-10.049961,1.224533,4.253645,-13.947611,2.266073,3.496931,-13.151939,0.826708,3.029245,-13.151939,-0.062890,4.253645,-13.151939 + ,0.826708,5.478045,-13.151939,2.266073,5.010359,-13.151939,1.622358,3.029245,-11.864509,0.182993,3.496931,-11.864509,0.182993,5.010359,-11.864509,1.622358,5.478045,-11.864509,2.511956,4.253645,-11.864509 + ,1.224533,4.253645,-11.068838,6.027608,2.939860,-1.784911,3.453610,4.809957,-3.751284,7.010767,5.965766,-3.751284,9.209266,2.939860,-3.751284,7.010767,-0.086046,-3.751284,3.453610,1.069763,-3.751284 + ,5.044448,5.965766,-6.932960,8.601605,4.809957,-6.932960,8.601605,1.069763,-6.932960,5.044448,-0.086046,-6.932960,2.845950,2.939860,-6.932960,6.027608,2.939860,-8.899333,4.514646,4.039079,-2.316166 + ,6.605496,4.718449,-2.316165,5.092528,5.817685,-3.471962,4.514646,1.840642,-2.316166,3.001674,2.939860,-3.471969,7.897739,2.939860,-2.316175,8.475643,4.718455,-3.471968,6.605496,1.161272,-2.316165 + ,8.475643,1.161266,-3.471968,5.092528,0.062036,-3.471962,2.644495,1.840637,-5.342122,2.644495,4.039083,-5.342122,3.936731,5.817703,-5.342122,6.027608,6.497071,-5.342122,8.118485,5.817703,-5.342122 + ,9.410721,4.039083,-5.342122,9.410721,1.840637,-5.342122,8.118485,0.062017,-5.342122,6.027608,-0.617350,-5.342122,3.936731,0.062017,-5.342122,3.579573,4.718455,-7.212276,6.962688,5.817685,-7.212281 + ,9.053542,2.939860,-7.212276,6.962688,0.062036,-7.212281,3.579573,1.161266,-7.212276,4.157476,2.939860,-8.368070,5.449719,4.718449,-8.368079,7.540570,4.039079,-8.368078,7.540570,1.840642,-8.368078 + ,5.449719,1.161272,-8.368079 + PolygonVertexIndex: 2,0,-2,1,0,-6,3,0,-3,4,0,-4,5,0,-5,1,5,-11,2,1,-7,3,2,-8,4,3,-9,5,4,-10,10,6,-2,6,7,-3,7,8,-4 + ,8,9,-5,9,10,-6,6,10,-12,7,6,-12,8,7,-12,9,8,-12,10,9,-12,14,12,-14,13,12,-18,15,12,-15,16,12,-16,17,12,-17,13,17,-23 + ,14,13,-19,15,14,-20,16,15,-21,17,16,-22,22,18,-14,18,19,-15,19,20,-16,20,21,-17,21,22,-18,18,22,-24,19,18,-24,20,19,-24,21,20,-24 + ,22,21,-24,26,24,-26,25,24,-30,27,24,-27,28,24,-28,29,24,-29,25,29,-35,26,25,-31,27,26,-32,28,27,-33,29,28,-34,34,30,-26,30,31,-27 + ,31,32,-28,32,33,-29,33,34,-30,30,34,-36,31,30,-36,32,31,-36,33,32,-36,34,33,-36,50,37,-49,48,49,-51,38,50,-50,49,48,-37,52,48,-38 + ,48,52,-52,41,51,-53,51,36,-49,54,38,-50,49,53,-55,39,54,-54,53,49,-37,56,39,-54,53,55,-57,40,56,-56,55,53,-37,57,40,-56,55,51,-58 + ,41,57,-52,51,55,-37,59,52,-38,52,59,-59,46,58,-60,58,41,-53,61,50,-39,50,61,-61,42,60,-62,60,37,-51,63,54,-40,54,63,-63,43,62,-64 + ,62,38,-55,65,56,-41,56,65,-65,44,64,-66,64,39,-57,67,57,-42,57,67,-67,45,66,-68,66,40,-58,68,46,-60,59,60,-69,42,68,-61,60,59,-38 + ,69,42,-62,61,62,-70,43,69,-63,62,61,-39,70,43,-64,63,64,-71,44,70,-65,64,63,-40,71,44,-66,65,66,-72,45,71,-67,66,65,-41,72,45,-68 + ,67,58,-73,46,72,-59,58,67,-42,74,68,-43,68,74,-74,47,73,-75,73,46,-69,75,69,-44,69,75,-75,47,74,-76,74,42,-70,76,70,-45,70,76,-76 + ,47,75,-77,75,43,-71,77,71,-46,71,77,-77,47,76,-78,76,44,-72,73,72,-47,72,73,-78,47,77,-74,77,45,-73 + Edges: 0,1,0,2,1,2,0,5,1,5,0,3,2,3,0,4,3,4,4,5,5,10,1,10,1,6 + ,2,6,2,7,3,7,3,8,4,8,4,9,5,9,6,10,6,7,7,8,8,9,9,10,10,11 + ,6,11,7,11,8,11,9,11,12,13,12,14,13,14,12,17,13,17,12,15,14,15,12,16,15,16 + ,16,17,17,22,13,22,13,18,14,18,14,19,15,19,15,20,16,20,16,21,17,21,18,22,18,19 + ,19,20,20,21,21,22,22,23,18,23,19,23,20,23,21,23,24,25,24,26,25,26,24,29,25,29 + ,24,27,26,27,24,28,27,28,28,29,29,34,25,34,25,30,26,30,26,31,27,31,27,32,28,32 + ,28,33,29,33,30,34,30,31,31,32,32,33,33,34,34,35,30,35,31,35,32,35,33,35,37,48 + ,36,48,49,36,49,38,37,50,50,38,36,51,41,51,37,52,52,41,39,53,36,53,39,54,54,38 + ,55,40,55,36,56,40,56,39,40,57,57,41,58,41,58,46,37,59,59,46,42,60,37,60,42,61 + ,38,61,43,62,62,38,39,63,43,63,64,39,64,44,40,65,65,44,40,66,45,66,67,45,67,41 + ,68,42,68,46,69,42,69,43,70,44,70,43,45,71,44,71,45,72,46,72,46,73,73,47,42,74 + ,74,47,43,75,75,47,44,76,76,47,45,77,77,47,50,48,49,48,49,50,52,48,48,51,52,51 + ,49,54,49,53,54,53,56,53,55,53,55,56,55,57,55,51,57,51,59,52,58,52,58,59,50,61 + ,50,60,60,61,54,63,54,62,62,63,56,65,64,56,64,65,67,57,57,66,67,66,68,59,59,60 + ,68,60,69,61,62,61,69,62,70,63,64,63,64,70,65,71,65,66,66,71,67,72,67,58,58,72 + ,68,74,68,73,74,73,69,75,69,74,74,75,70,76,70,75,75,76,77,71,71,76,77,76,73,72 + ,77,72,77,73 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: 0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,1.000000000000000,-0.723593831062317,0.525711834430695,0.447187721729279 + ,0.276375621557236,0.850642442703247,0.447187721729279,0.894405961036682,0.000000000000000,0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.723593831062317,-0.525711834430695,-0.447187721729279,-0.276375621557236,-0.850642442703247,-0.447187721729279 + ,-0.894405961036682,0.000000000000000,-0.447187721729279,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.425305962562561,0.308999896049500,0.850642442703247,0.162450030446053,0.499984741210938,0.850642442703247 + ,-0.262855917215347,0.808984637260437,0.525711834430695,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,-0.850642442703247,0.000000000000000,0.525711834430695,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.688161849975586,0.499984741210938,0.525711834430695,0.162450030446053,-0.499984741210938,0.850642442703247 + ,0.688161849975586,-0.499984741210938,0.525711834430695,-0.262855917215347,-0.808984637260437,0.525711834430695 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,-0.951048314571381,0.308999896049500,0.000000000000000 + ,-0.587755978107452,0.809015154838562,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.951048314571381,0.308999896049500,0.000000000000000 + ,0.951048314571381,-0.308999896049500,0.000000000000000,0.587755978107452,-0.809015154838562,0.000000000000000 + ,0.000000000000000,-1.000000000000000,0.000000000000000,-0.587755978107452,-0.809015154838562,0.000000000000000 + ,-0.688161849975586,0.499984741210938,-0.525711834430695,0.262855917215347,0.808984637260437,-0.525711834430695 + ,0.850642442703247,0.000000000000000,-0.525711834430695,0.262855917215347,-0.808984637260437,-0.525711834430695 + ,-0.688161849975586,-0.499984741210938,-0.525711834430695,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,-0.162450030446053,0.499984741210938,-0.850642442703247,0.425305962562561,0.308999896049500,-0.850642442703247 + ,0.425305962562561,-0.308999896049500,-0.850642442703247,-0.162450030446053,-0.499984741210938,-0.850642442703247 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + } + } + Model: "Model::AtomBallLines", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-0.000041365623474,0.000077024109487,0.000130839645863 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000630398915,15.000002124938769 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.500000119209290,0.500000000000000,0.500000119209290 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.000000,-0.999498,0.000000,0.000000,-0.950000,0.049497,0.000000,-0.900503,0.000000,0.000000,-0.950000,-0.049497,-0.265532,-0.963804,-0.000000,-0.252495,-0.916055,0.049497,-0.239458,-0.868305,-0.000000 + ,-0.252495,-0.916055,-0.049497,-0.504381,-0.863004,-0.000000,-0.479416,-0.820264,0.049497,-0.454451,-0.777523,-0.000000,-0.479416,-0.820264,-0.049497,-0.706695,-0.706695,-0.000000,-0.671695,-0.671695,0.049497 + ,-0.636695,-0.636695,-0.000000,-0.671695,-0.671695,-0.049497,-0.863004,-0.504381,-0.000000,-0.820264,-0.479416,0.049497,-0.777523,-0.454451,0.000000,-0.820264,-0.479416,-0.049497,-0.963804,-0.265532,-0.000000 + ,-0.916055,-0.252495,0.049497,-0.868305,-0.239458,0.000000,-0.916055,-0.252495,-0.049497,-0.999498,-0.000000,-0.000000,-0.950000,0.000000,0.049497,-0.900503,0.000000,0.000000,-0.950000,0.000000,-0.049497 + ,-0.963804,0.265532,-0.000000,-0.916055,0.252495,0.049497,-0.868305,0.239458,0.000000,-0.916055,0.252495,-0.049497,-0.863004,0.504381,-0.000000,-0.820264,0.479416,0.049497,-0.777523,0.454451,0.000000 + ,-0.820264,0.479416,-0.049497,-0.706695,0.706695,-0.000000,-0.671695,0.671695,0.049497,-0.636695,0.636695,0.000000,-0.671695,0.671695,-0.049497,-0.504381,0.863004,-0.000000,-0.479416,0.820264,0.049497 + ,-0.454451,0.777523,-0.000000,-0.479416,0.820264,-0.049497,-0.265532,0.963804,-0.000000,-0.252495,0.916055,0.049497,-0.239458,0.868305,0.000000,-0.252495,0.916055,-0.049497,0.000000,0.999498,-0.000000 + ,-0.000000,0.950000,0.049497,-0.000000,0.900503,0.000000,0.000000,0.950000,-0.049497,0.265532,0.963804,-0.000000,0.252495,0.916055,0.049497,0.239458,0.868305,0.000000,0.252495,0.916055,-0.049497 + ,0.504381,0.863004,-0.000000,0.479416,0.820264,0.049497,0.454451,0.777523,0.000000,0.479416,0.820264,-0.049497,0.706695,0.706695,-0.000000,0.671695,0.671695,0.049497,0.636695,0.636695,0.000000 + ,0.671695,0.671695,-0.049497,0.863004,0.504381,-0.000000,0.820264,0.479416,0.049497,0.777523,0.454451,0.000000,0.820264,0.479416,-0.049497,0.963804,0.265532,-0.000000,0.916055,0.252495,0.049497 + ,0.868305,0.239458,0.000000,0.916055,0.252495,-0.049497,0.999498,0.000000,-0.000000,0.950000,-0.000000,0.049497,0.900503,-0.000000,0.000000,0.950000,0.000000,-0.049497,0.963804,-0.265532,-0.000000 + ,0.916055,-0.252495,0.049497,0.868305,-0.239458,0.000000,0.916055,-0.252495,-0.049497,0.863004,-0.504381,-0.000000,0.820264,-0.479416,0.049497,0.777523,-0.454451,0.000000,0.820264,-0.479416,-0.049497 + ,0.706695,-0.706695,-0.000000,0.671695,-0.671695,0.049497,0.636695,-0.636695,0.000000,0.671695,-0.671695,-0.049497,0.504381,-0.863004,-0.000000,0.479416,-0.820264,0.049497,0.454451,-0.777523,0.000000 + ,0.479416,-0.820264,-0.049497,0.265532,-0.963804,-0.000000,0.252495,-0.916055,0.049497,0.239458,-0.868305,0.000000,0.252495,-0.916055,-0.049497,-0.184172,0.623345,-0.649498,-0.153319,0.666788,-0.604103 + ,-0.163552,0.720160,-0.648225,-0.194405,0.676716,-0.693620,-0.391300,0.644469,-0.518769,-0.361983,0.693255,-0.478020,-0.391241,0.743449,-0.517066,-0.420558,0.694663,-0.557814,-0.568045,0.619242,-0.362873 + ,-0.538687,0.667647,-0.321701,-0.581377,0.716265,-0.348419,-0.610735,0.667861,-0.389591,-0.706093,0.551964,-0.186380,-0.676485,0.599995,-0.144952,-0.729530,0.643814,-0.157843,-0.759139,0.595782,-0.199272 + ,-0.799236,0.447186,0.000994,-0.769236,0.494921,0.042483,-0.829167,0.531048,0.044252,-0.859167,0.483313,0.002763,-0.841285,0.309486,0.189519,-0.810830,0.357060,0.230861,-0.873733,0.382896,0.247469 + ,-0.904188,0.335321,0.206127,-0.826055,0.143269,0.369664,-0.795172,0.190865,0.410664,-0.856672,0.204454,0.441212,-0.887554,0.156859,0.400212,-0.752826,-0.035019,0.521966,-0.721638,0.012794,0.562477 + ,-0.777354,0.013236,0.604850,-0.808542,-0.034578,0.564340,-0.631305,-0.206769,0.631965,-0.600006,-0.158555,0.671913,-0.646143,-0.170991,0.723068,-0.677441,-0.219205,0.683119,-0.470722,-0.364347,0.697514 + ,-0.439559,-0.315594,0.736909,-0.473188,-0.339716,0.793364,-0.504351,-0.388470,0.753970,-0.280424,-0.499918,0.716313,-0.249675,-0.450530,0.755241,-0.268524,-0.484633,0.813394,-0.299273,-0.534020,0.774466 + ,-0.069784,-0.605646,0.686082,-0.039744,-0.555597,0.724718,-0.042159,-0.597433,0.780789,-0.072200,-0.647481,0.742153,0.152053,-0.673780,0.604474,0.181120,-0.623133,0.643074,0.195671,-0.669725,0.693249 + ,0.166604,-0.720371,0.654648,0.362014,-0.695575,0.478024,0.389928,-0.644490,0.516898,0.420527,-0.692343,0.557810,0.392613,-0.743428,0.518936,0.539161,-0.670609,0.321323,0.565858,-0.619326,0.360786 + ,0.610261,-0.664898,0.389969,0.583564,-0.716181,0.350506,0.677484,-0.603446,0.143955,0.703016,-0.552253,0.184296,0.758139,-0.592332,0.200268,0.732607,-0.643525,0.159928,0.770755,-0.498648,-0.044338 + ,0.795274,-0.447873,-0.002857,0.857648,-0.479586,-0.000908,0.833129,-0.530361,-0.042389,0.812763,-0.360805,-0.233796,0.836536,-0.310809,-0.190957,0.902256,-0.331576,-0.203192,0.878482,-0.381572,-0.246031 + ,0.797296,-0.194349,-0.414840,0.820722,-0.145484,-0.370529,0.885430,-0.153375,-0.396036,0.862004,-0.202240,-0.440348,0.723634,-0.015769,-0.567950,0.747203,0.031685,-0.522205,0.806546,0.037552,-0.558867 + ,0.782976,-0.009902,-0.604611,0.601504,0.156269,-0.678622,0.625733,0.202151,-0.631635,0.675943,0.221491,-0.676411,0.651714,0.175609,-0.723398,0.440174,0.314092,-0.744688,0.465554,0.358358,-0.696767 + ,0.503736,0.389971,-0.746191,0.478356,0.345706,-0.794112,0.249018,0.449838,-0.763837,0.276017,0.492535,-0.715381,0.299930,0.534713,-0.765871,0.272931,0.492015,-0.814326,0.037436,0.555645,-0.733778 + ,0.066486,0.596933,-0.685287,0.074507,0.647434,-0.733093,0.045457,0.606145,-0.781584,-0.259099,-0.047699,-0.917589,-0.233943,-0.003267,-0.869704,-0.232657,0.047700,-0.917670,-0.257813,0.003268,-0.965555 + ,-0.486872,0.017934,-0.821662,-0.449160,0.058360,-0.778726,-0.458474,0.112768,-0.821772,-0.496187,0.072343,-0.864708,-0.674532,0.076895,-0.671797,-0.626278,0.114033,-0.637266,-0.644670,0.171270,-0.673122 + ,-0.692924,0.134132,-0.707653,-0.816016,0.126851,-0.479457,-0.759879,0.161228,-0.455648,-0.785078,0.220844,-0.482310,-0.841215,0.186467,-0.506119,-0.905195,0.165448,-0.255709,-0.844111,0.197703,-0.244375 + ,-0.873602,0.259153,-0.260319,-0.934685,0.226898,-0.271653,-0.935936,0.190330,-0.011620,-0.873166,0.221222,-0.013978,-0.904146,0.283855,-0.018136,-0.966917,0.252963,-0.015778,-0.902109,0.199142,0.241719 + ,-0.841219,0.229576,0.225404,-0.870616,0.292614,0.233281,-0.931506,0.262180,0.249596,-0.804700,0.190316,0.478011,-0.749182,0.221261,0.448684,-0.773980,0.283868,0.467800,-0.829499,0.252923,0.497127 + ,-0.656012,0.165422,0.673990,-0.608809,0.197781,0.633681,-0.626457,0.259177,0.662302,-0.673659,0.226818,0.702611,-0.466904,0.126818,0.823123,-0.430214,0.161347,0.774526,-0.438800,0.220876,0.810339 + ,-0.475490,0.186347,0.858936,-0.248225,0.076860,0.918899,-0.223694,0.114192,0.865005,-0.221778,0.171302,0.905436,-0.246308,0.133971,0.959331,-0.010817,0.017904,0.954809,0.000431,0.058559,0.898947 + ,0.013840,0.112796,0.941120,0.002592,0.072141,0.996982,0.234447,-0.047690,0.924342,0.232218,-0.003405,0.870176,0.257309,0.047689,0.910917,0.259538,0.003404,0.965083,0.462066,-0.113281,0.828059 + ,0.447336,-0.065370,0.779196,0.483281,-0.017421,0.815375,0.498010,-0.065332,0.864238,0.649675,-0.172230,0.678233,0.624461,-0.121002,0.637737,0.669527,-0.075935,0.666686,0.694741,-0.127163,0.707182 + ,0.791121,-0.222175,0.485944,0.758069,-0.168156,0.456119,0.809973,-0.125520,0.475823,0.843024,-0.179540,0.505648,0.880276,-0.260764,0.262256,0.842311,-0.204589,0.244848,0.898521,-0.163836,0.253773 + ,0.936485,-0.220011,0.271180,0.911008,-0.285643,0.018231,0.871375,-0.228068,0.014453,0.929074,-0.188542,0.011525,0.968707,-0.246118,0.015303,0.877189,-0.294456,-0.235042,0.839440,-0.236381,-0.224927 + ,0.895535,-0.197300,-0.239958,0.933285,-0.255375,-0.250073,0.779805,-0.285635,-0.471272,0.747415,-0.228026,-0.448206,0.798875,-0.188549,-0.474539,0.831265,-0.246158,-0.497605,0.631155,-0.260751,-0.667199 + ,0.607056,-0.204506,-0.633202,0.651313,-0.163848,-0.669094,0.675413,-0.220093,-0.703090,0.442097,-0.222160,-0.816292,0.428475,-0.168032,-0.774047,0.463608,-0.125534,-0.817170,0.477230,-0.179662,-0.859415 + ,0.223474,-0.172218,-0.912043,0.221969,-0.120838,-0.864527,0.246528,-0.075945,-0.912292,0.248033,-0.127325,-0.959809,-0.013871,-0.113279,-0.947944,-0.002141,-0.065166,-0.898471,0.010849,-0.017420,-0.947986 + ,-0.000882,-0.065534,-0.997458,-0.163571,-0.720163,-0.648221,-0.153240,-0.666775,-0.604141,-0.184153,-0.623340,-0.649503,-0.194484,-0.676727,-0.693583,-0.390208,-0.743163,-0.517060,-0.360778,-0.693004,-0.478100 + ,-0.390142,-0.644183,-0.518772,-0.419573,-0.694342,-0.557733,-0.579007,-0.715728,-0.348485,-0.536138,-0.667173,-0.321938,-0.565551,-0.618736,-0.363033,-0.608420,-0.667290,-0.389579,-0.725767,-0.643121,-0.158105 + ,-0.672590,-0.599398,-0.145437,-0.702254,-0.551337,-0.186791,-0.755432,-0.595060,-0.199459,-0.824171,-0.530360,0.043659,-0.764190,-0.494328,0.041681,-0.794245,-0.446571,0.000258,-0.854226,-0.482603,0.002236 + ,-0.867895,-0.382430,0.246419,-0.805010,-0.356639,0.229677,-0.835520,-0.309055,0.188385,-0.898404,-0.334847,0.205127,-0.850611,-0.204471,0.439604,-0.789141,-0.190836,0.409017,-0.820083,-0.143253,0.368047 + ,-0.881552,-0.156889,0.398634,-0.771760,-0.013736,0.602871,-0.716020,-0.013155,0.560531,-0.747280,0.034622,0.520033,-0.803020,0.034042,0.562373,-0.641500,0.170266,0.721115,-0.595248,0.158028,0.670017 + ,-0.626633,0.206189,0.630074,-0.672885,0.218427,0.681172,-0.469774,0.338987,0.791736,-0.435955,0.315059,0.735312,-0.467216,0.363755,0.695924,-0.501035,0.387683,0.752348,-0.266416,0.484069,0.812276 + ,-0.247358,0.450103,0.754112,-0.278207,0.499437,0.715195,-0.297265,0.533403,0.773359,-0.041253,0.597137,0.780252,-0.038667,0.555361,0.724144,-0.068794,0.605368,0.685522,-0.071380,0.647144,0.741630 + ,0.195649,0.669738,0.693262,0.181207,0.623147,0.643055,0.152075,0.673764,0.604463,0.166518,0.720355,0.654670,0.420507,0.692677,0.557922,0.389961,0.644799,0.517001,0.362007,0.695860,0.478125 + ,0.392554,0.743738,0.519046,0.610248,0.665319,0.390103,0.565861,0.619721,0.360938,0.539140,0.670982,0.321461,0.583527,0.716580,0.350627,0.758132,0.592686,0.200378,0.703011,0.552591,0.184435 + ,0.677463,0.603762,0.144075,0.732584,0.643856,0.160018,0.857645,0.479798,-0.000844,0.795274,0.448078,-0.002767,0.770742,0.498833,-0.044265,0.833113,0.530553,-0.042342,0.902258,0.331648,-0.203172 + ,0.836542,0.310875,-0.190924,0.812756,0.360858,-0.233772,0.878472,0.381630,-0.246021,0.885433,0.153379,-0.396040,0.820728,0.145482,-0.370527,0.797294,0.194346,-0.414836,0.861999,0.202242,-0.440348 + ,0.806522,-0.037573,-0.558931,0.747179,-0.031715,-0.522268,0.723610,0.015751,-0.568002,0.782953,0.009893,-0.604664,0.675866,-0.221554,-0.676602,0.625649,-0.202230,-0.631827,0.601428,-0.156331,-0.678802 + ,0.651645,-0.175655,-0.723577,0.503607,-0.390076,-0.746510,0.465416,-0.358478,-0.697083,0.440044,-0.314199,-0.744995,0.478235,-0.345797,-0.794422,0.299776,-0.534839,-0.766246,0.275869,-0.492663,-0.715752 + ,0.248866,-0.449962,-0.764204,0.272773,-0.492139,-0.814697,0.074383,-0.647533,-0.733381,0.066402,-0.597016,-0.685587,0.037321,-0.555740,-0.734071,0.045302,-0.606258,-0.781865 + PolygonVertexIndex: 0,4,7,-4,4,0,1,-6,2,6,5,-2,3,7,6,-3,4,8,11,-8,5,9,8,-5,6,10,9,-6,7,11,10,-7,8,12,15,-12,9,13,12,-9,10,14,13,-10,11,15,14,-11,12,16,19,-16 + ,13,17,16,-13,14,18,17,-14,15,19,18,-15,16,20,23,-20,17,21,20,-17,18,22,21,-18,19,23,22,-19,20,24,27,-24,21,25,24,-21,22,26,25,-22,23,27,26,-23,24,28,31,-28,25,29,28,-25 + ,26,30,29,-26,27,31,30,-27,28,32,35,-32,29,33,32,-29,30,34,33,-30,31,35,34,-31,32,36,39,-36,33,37,36,-33,34,38,37,-34,35,39,38,-35,36,40,43,-40,37,41,40,-37,38,42,41,-38 + ,39,43,42,-39,40,44,47,-44,41,45,44,-41,42,46,45,-42,43,47,46,-43,44,48,51,-48,45,49,48,-45,46,50,49,-46,47,51,50,-47,48,52,55,-52,49,53,52,-49,50,54,53,-50,51,55,54,-51 + ,52,56,59,-56,53,57,56,-53,54,58,57,-54,55,59,58,-55,56,60,63,-60,57,61,60,-57,58,62,61,-58,59,63,62,-59,60,64,67,-64,61,65,64,-61,62,66,65,-62,63,67,66,-63,64,68,71,-68 + ,65,69,68,-65,66,70,69,-66,67,71,70,-67,68,72,75,-72,69,73,72,-69,70,74,73,-70,71,75,74,-71,72,76,79,-76,73,77,76,-73,74,78,77,-74,75,79,78,-75,76,80,83,-80,77,81,80,-77 + ,78,82,81,-78,79,83,82,-79,80,84,87,-84,81,85,84,-81,82,86,85,-82,83,87,86,-83,84,88,91,-88,85,89,88,-85,86,90,89,-86,87,91,90,-87,88,92,95,-92,89,93,92,-89,90,94,93,-90 + ,91,95,94,-91,92,0,3,-96,0,92,93,-2,94,2,1,-94,95,3,2,-95,96,100,103,-100,97,101,100,-97,98,102,101,-98,99,103,102,-99,100,104,107,-104,101,105,104,-101,102,106,105,-102,103,107,106,-103 + ,104,108,111,-108,105,109,108,-105,106,110,109,-106,107,111,110,-107,108,112,115,-112,109,113,112,-109,110,114,113,-110,111,115,114,-111,112,116,119,-116,113,117,116,-113,114,118,117,-114,115,119,118,-115,116,120,123,-120 + ,117,121,120,-117,118,122,121,-118,119,123,122,-119,120,124,127,-124,121,125,124,-121,122,126,125,-122,123,127,126,-123,124,128,131,-128,125,129,128,-125,126,130,129,-126,127,131,130,-127,128,132,135,-132,129,133,132,-129 + ,130,134,133,-130,131,135,134,-131,132,136,139,-136,133,137,136,-133,134,138,137,-134,135,139,138,-135,136,140,143,-140,137,141,140,-137,138,142,141,-138,139,143,142,-139,140,144,147,-144,141,145,144,-141,142,146,145,-142 + ,143,147,146,-143,144,148,151,-148,145,149,148,-145,146,150,149,-146,147,151,150,-147,148,152,155,-152,149,153,152,-149,150,154,153,-150,151,155,154,-151,152,156,159,-156,153,157,156,-153,154,158,157,-154,155,159,158,-155 + ,156,160,163,-160,157,161,160,-157,158,162,161,-158,159,163,162,-159,160,164,167,-164,161,165,164,-161,162,166,165,-162,163,167,166,-163,164,168,171,-168,165,169,168,-165,166,170,169,-166,167,171,170,-167,168,172,175,-172 + ,169,173,172,-169,170,174,173,-170,171,175,174,-171,172,176,179,-176,173,177,176,-173,174,178,177,-174,175,179,178,-175,176,180,183,-180,177,181,180,-177,178,182,181,-178,179,183,182,-179,180,184,187,-184,181,185,184,-181 + ,182,186,185,-182,183,187,186,-183,184,188,191,-188,185,189,188,-185,186,190,189,-186,187,191,190,-187,188,96,99,-192,189,97,96,-189,190,98,97,-190,191,99,98,-191,192,196,199,-196,193,197,196,-193,194,198,197,-194 + ,195,199,198,-195,196,200,203,-200,197,201,200,-197,198,202,201,-198,199,203,202,-199,200,204,207,-204,201,205,204,-201,202,206,205,-202,203,207,206,-203,204,208,211,-208,205,209,208,-205,206,210,209,-206,207,211,210,-207 + ,208,212,215,-212,209,213,212,-209,210,214,213,-210,211,215,214,-211,212,216,219,-216,213,217,216,-213,214,218,217,-214,215,219,218,-215,216,220,223,-220,217,221,220,-217,218,222,221,-218,219,223,222,-219,220,224,227,-224 + ,221,225,224,-221,222,226,225,-222,223,227,226,-223,224,228,231,-228,225,229,228,-225,226,230,229,-226,227,231,230,-227,228,232,235,-232,229,233,232,-229,230,234,233,-230,231,235,234,-231,232,236,239,-236,233,237,236,-233 + ,234,238,237,-234,235,239,238,-235,236,240,243,-240,237,241,240,-237,238,242,241,-238,239,243,242,-239,240,244,247,-244,241,245,244,-241,242,246,245,-242,243,247,246,-243,244,248,251,-248,245,249,248,-245,246,250,249,-246 + ,247,251,250,-247,248,252,255,-252,249,253,252,-249,250,254,253,-250,251,255,254,-251,252,256,259,-256,253,257,256,-253,254,258,257,-254,255,259,258,-255,256,260,263,-260,257,261,260,-257,258,262,261,-258,259,263,262,-259 + ,260,264,267,-264,261,265,264,-261,262,266,265,-262,263,267,266,-263,264,268,271,-268,265,269,268,-265,266,270,269,-266,267,271,270,-267,268,272,275,-272,269,273,272,-269,270,274,273,-270,271,275,274,-271,272,276,279,-276 + ,273,277,276,-273,274,278,277,-274,275,279,278,-275,276,280,283,-280,277,281,280,-277,278,282,281,-278,279,283,282,-279,280,284,287,-284,281,285,284,-281,282,286,285,-282,283,287,286,-283,284,192,195,-288,285,193,192,-285 + ,286,194,193,-286,287,195,194,-287,288,292,295,-292,289,293,292,-289,290,294,293,-290,291,295,294,-291,292,296,299,-296,293,297,296,-293,294,298,297,-294,295,299,298,-295,296,300,303,-300,297,301,300,-297,298,302,301,-298 + ,299,303,302,-299,300,304,307,-304,301,305,304,-301,302,306,305,-302,303,307,306,-303,304,308,311,-308,305,309,308,-305,306,310,309,-306,307,311,310,-307,308,312,315,-312,309,313,312,-309,310,314,313,-310,311,315,314,-311 + ,312,316,319,-316,313,317,316,-313,314,318,317,-314,315,319,318,-315,316,320,323,-320,317,321,320,-317,318,322,321,-318,319,323,322,-319,320,324,327,-324,321,325,324,-321,322,326,325,-322,323,327,326,-323,324,328,331,-328 + ,325,329,328,-325,326,330,329,-326,327,331,330,-327,328,332,335,-332,329,333,332,-329,330,334,333,-330,331,335,334,-331,332,336,339,-336,333,337,336,-333,334,338,337,-334,335,339,338,-335,336,340,343,-340,337,341,340,-337 + ,338,342,341,-338,339,343,342,-339,340,344,347,-344,341,345,344,-341,342,346,345,-342,343,347,346,-343,344,348,351,-348,345,349,348,-345,346,350,349,-346,347,351,350,-347,348,352,355,-352,349,353,352,-349,350,354,353,-350 + ,351,355,354,-351,352,356,359,-356,353,357,356,-353,354,358,357,-354,355,359,358,-355,356,360,363,-360,357,361,360,-357,358,362,361,-358,359,363,362,-359,360,364,367,-364,361,365,364,-361,362,366,365,-362,363,367,366,-363 + ,364,368,371,-368,365,369,368,-365,366,370,369,-366,367,371,370,-367,368,372,375,-372,369,373,372,-369,370,374,373,-370,371,375,374,-371,372,376,379,-376,373,377,376,-373,374,378,377,-374,375,379,378,-375,376,380,383,-380 + ,377,381,380,-377,378,382,381,-378,379,383,382,-379,380,288,291,-384,381,289,288,-381,382,290,289,-382,383,291,290,-383 + Edges: 0,1,0,3,0,4,0,92,1,2,1,5,1,93,2,3,2,6,2,94,3,7,3,95,4,5 + ,4,7,4,8,5,6,5,9,6,7,6,10,7,11,8,9,8,11,8,12,9,10,9,13,10,11 + ,10,14,11,15,12,13,12,15,12,16,13,14,13,17,14,15,14,18,15,19,16,17,16,19,16,20 + ,17,18,17,21,18,19,18,22,19,23,20,21,20,23,20,24,21,22,21,25,22,23,22,26,23,27 + ,24,25,24,27,24,28,25,26,25,29,26,27,26,30,27,31,28,29,28,31,28,32,29,30,29,33 + ,30,31,30,34,31,35,32,33,32,35,32,36,33,34,33,37,34,35,34,38,35,39,36,37,36,39 + ,36,40,37,38,37,41,38,39,38,42,39,43,40,41,40,43,40,44,41,42,41,45,42,43,42,46 + ,43,47,44,45,44,47,44,48,45,46,45,49,46,47,46,50,47,51,48,49,48,51,48,52,49,50 + ,49,53,50,51,50,54,51,55,52,53,52,55,52,56,53,54,53,57,54,55,54,58,55,59,56,57 + ,56,59,56,60,57,58,57,61,58,59,58,62,59,63,60,61,60,63,60,64,61,62,61,65,62,63 + ,62,66,63,67,64,65,64,67,64,68,65,66,65,69,66,67,66,70,67,71,68,69,68,71,68,72 + ,69,70,69,73,70,71,70,74,71,75,72,73,72,75,72,76,73,74,73,77,74,75,74,78,75,79 + ,76,77,76,79,76,80,77,78,77,81,78,79,78,82,79,83,80,81,80,83,80,84,81,82,81,85 + ,82,83,82,86,83,87,84,85,84,87,84,88,85,86,85,89,86,87,86,90,87,91,88,89,88,91 + ,88,92,89,90,89,93,90,91,90,94,91,95,92,93,92,95,93,94,94,95,96,97,96,99,96,100 + ,96,188,97,98,97,101,97,189,98,99,98,102,98,190,99,103,99,191,100,101,100,103,100,104,101,102 + ,101,105,102,103,102,106,103,107,104,105,104,107,104,108,105,106,105,109,106,107,106,110,107,111,108,109 + ,108,111,108,112,109,110,109,113,110,111,110,114,111,115,112,113,112,115,112,116,113,114,113,117,114,115 + ,114,118,115,119,116,117,116,119,116,120,117,118,117,121,118,119,118,122,119,123,120,121,120,123,120,124 + ,121,122,121,125,122,123,122,126,123,127,124,125,124,127,124,128,125,126,125,129,126,127,126,130,127,131 + ,128,129,128,131,128,132,129,130,129,133,130,131,130,134,131,135,132,133,132,135,132,136,133,134,133,137 + ,134,135,134,138,135,139,136,137,136,139,136,140,137,138,137,141,138,139,138,142,139,143,140,141,140,143 + ,140,144,141,142,141,145,142,143,142,146,143,147,144,145,144,147,144,148,145,146,145,149,146,147,146,150 + ,147,151,148,149,148,151,148,152,149,150,149,153,150,151,150,154,151,155,152,153,152,155,152,156,153,154 + ,153,157,154,155,154,158,155,159,156,157,156,159,156,160,157,158,157,161,158,159,158,162,159,163,160,161 + ,160,163,160,164,161,162,161,165,162,163,162,166,163,167,164,165,164,167,164,168,165,166,165,169,166,167 + ,166,170,167,171,168,169,168,171,168,172,169,170,169,173,170,171,170,174,171,175,172,173,172,175,172,176 + ,173,174,173,177,174,175,174,178,175,179,176,177,176,179,176,180,177,178,177,181,178,179,178,182,179,183 + ,180,181,180,183,180,184,181,182,181,185,182,183,182,186,183,187,184,185,184,187,184,188,185,186,185,189 + ,186,187,186,190,187,191,188,189,188,191,189,190,190,191,192,193,192,195,192,196,192,284,193,194,193,197 + ,193,285,194,195,194,198,194,286,195,199,195,287,196,197,196,199,196,200,197,198,197,201,198,199,198,202 + ,199,203,200,201,200,203,200,204,201,202,201,205,202,203,202,206,203,207,204,205,204,207,204,208,205,206 + ,205,209,206,207,206,210,207,211,208,209,208,211,208,212,209,210,209,213,210,211,210,214,211,215,212,213 + ,212,215,212,216,213,214,213,217,214,215,214,218,215,219,216,217,216,219,216,220,217,218,217,221,218,219 + ,218,222,219,223,220,221,220,223,220,224,221,222,221,225,222,223,222,226,223,227,224,225,224,227,224,228 + ,225,226,225,229,226,227,226,230,227,231,228,229,228,231,228,232,229,230,229,233,230,231,230,234,231,235 + ,232,233,232,235,232,236,233,234,233,237,234,235,234,238,235,239,236,237,236,239,236,240,237,238,237,241 + ,238,239,238,242,239,243,240,241,240,243,240,244,241,242,241,245,242,243,242,246,243,247,244,245,244,247 + ,244,248,245,246,245,249,246,247,246,250,247,251,248,249,248,251,248,252,249,250,249,253,250,251,250,254 + ,251,255,252,253,252,255,252,256,253,254,253,257,254,255,254,258,255,259,256,257,256,259,256,260,257,258 + ,257,261,258,259,258,262,259,263,260,261,260,263,260,264,261,262,261,265,262,263,262,266,263,267,264,265 + ,264,267,264,268,265,266,265,269,266,267,266,270,267,271,268,269,268,271,268,272,269,270,269,273,270,271 + ,270,274,271,275,272,273,272,275,272,276,273,274,273,277,274,275,274,278,275,279,276,277,276,279,276,280 + ,277,278,277,281,278,279,278,282,279,283,280,281,280,283,280,284,281,282,281,285,282,283,282,286,283,287 + ,284,285,284,287,285,286,286,287,288,289,288,291,288,292,288,380,289,290,289,293,289,381,290,291,290,294 + ,290,382,291,295,291,383,292,293,292,295,292,296,293,294,293,297,294,295,294,298,295,299,296,297,296,299 + ,296,300,297,298,297,301,298,299,298,302,299,303,300,301,300,303,300,304,301,302,301,305,302,303,302,306 + ,303,307,304,305,304,307,304,308,305,306,305,309,306,307,306,310,307,311,308,309,308,311,308,312,309,310 + ,309,313,310,311,310,314,311,315,312,313,312,315,312,316,313,314,313,317,314,315,314,318,315,319,316,317 + ,316,319,316,320,317,318,317,321,318,319,318,322,319,323,320,321,320,323,320,324,321,322,321,325,322,323 + ,322,326,323,327,324,325,324,327,324,328,325,326,325,329,326,327,326,330,327,331,328,329,328,331,328,332 + ,329,330,329,333,330,331,330,334,331,335,332,333,332,335,332,336,333,334,333,337,334,335,334,338,335,339 + ,336,337,336,339,336,340,337,338,337,341,338,339,338,342,339,343,340,341,340,343,340,344,341,342,341,345 + ,342,343,342,346,343,347,344,345,344,347,344,348,345,346,345,349,346,347,346,350,347,351,348,349,348,351 + ,348,352,349,350,349,353,350,351,350,354,351,355,352,353,352,355,352,356,353,354,353,357,354,355,354,358 + ,355,359,356,357,356,359,356,360,357,358,357,361,358,359,358,362,359,363,360,361,360,363,360,364,361,362 + ,361,365,362,363,362,366,363,367,364,365,364,367,364,368,365,366,365,369,366,367,366,370,367,371,368,369 + ,368,371,368,372,369,370,369,373,370,371,370,374,371,375,372,373,372,375,372,376,373,374,373,377,374,375 + ,374,378,375,379,376,377,376,379,376,380,377,378,377,381,378,379,378,382,379,383,380,381,380,383,381,382 + ,382,383 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: 0.000000000000000,-1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.263344228267670,-0.964690089225769,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.263405263423920,0.964659571647644,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.504318356513977,-0.863490700721741,0.000000000000000,0.000030518509448,0.000000000000000,0.999969482421875 + ,0.504379391670227,0.863460183143616,0.000000000000000,0.000030518509448,0.000000000000000,-0.999969482421875 + ,-0.707083344459534,-0.707083344459534,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.707083344459534,0.707083344459534,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.863490700721741,-0.504318356513977,0.000000000000000,0.000000000000000,0.000030518509448,0.999969482421875 + ,0.863460183143616,0.504379391670227,0.000000000000000,0.000000000000000,0.000030518509448,-0.999969482421875 + ,-0.964690089225769,-0.263344228267670,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.964659571647644,0.263405263423920,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.964690089225769,0.263344228267670,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.964659571647644,-0.263405263423920,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.863490700721741,0.504318356513977,0.000000000000000,0.000000000000000,-0.000030518509448,0.999969482421875 + ,0.863460183143616,-0.504379391670227,0.000000000000000,0.000000000000000,-0.000030518509448,-0.999969482421875 + ,-0.707083344459534,0.707083344459534,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.707083344459534,-0.707083344459534,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.504318356513977,0.863490700721741,0.000000000000000,0.000030518509448,0.000000000000000,0.999969482421875 + ,0.504379391670227,-0.863460183143616,0.000000000000000,0.000030518509448,0.000000000000000,-0.999969482421875 + ,-0.263344228267670,0.964690089225769,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.263405263423920,-0.964659571647644,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,-1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.263344228267670,0.964690089225769,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,-0.263405263423920,-0.964659571647644,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.504318356513977,0.863490700721741,0.000000000000000,-0.000030518509448,0.000000000000000,0.999969482421875 + ,-0.504379391670227,-0.863460183143616,0.000000000000000,-0.000030518509448,0.000000000000000,-0.999969482421875 + ,0.707083344459534,0.707083344459534,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,-0.707083344459534,-0.707083344459534,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.863490700721741,0.504318356513977,0.000000000000000,0.000000000000000,-0.000030518509448,0.999969482421875 + ,-0.863460183143616,-0.504379391670227,0.000000000000000,0.000000000000000,-0.000030518509448,-0.999969482421875 + ,0.964690089225769,0.263344228267670,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,-0.964659571647644,-0.263405263423920,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,-1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.964690089225769,-0.263344228267670,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,-0.964659571647644,0.263405263423920,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.863490700721741,-0.504318356513977,0.000000000000000,0.000000000000000,0.000030518509448,0.999969482421875 + ,-0.863460183143616,0.504379391670227,0.000000000000000,0.000000000000000,0.000030518509448,-0.999969482421875 + ,0.707083344459534,-0.707083344459534,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,-0.707083344459534,0.707083344459534,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.504318356513977,-0.863490700721741,0.000000000000000,-0.000030518509448,0.000000000000000,0.999969482421875 + ,-0.504379391670227,0.863460183143616,0.000000000000000,-0.000030518509448,0.000000000000000,-0.999969482421875 + ,0.263344228267670,-0.964690089225769,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + ,-0.263405263423920,0.964659571647644,0.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.201208531856537,-0.979491531848907,-0.006866664625704,0.415478974580765,-0.082674644887447,0.905819892883301 + ,0.201208531856537,0.979491531848907,0.006866664625704,-0.415478974580765,0.082674644887447,-0.905819892883301 + ,-0.017761772498488,-0.998840272426605,-0.044557023793459,0.589678645133972,-0.037598803639412,0.806726276874542 + ,0.017792291939259,0.998840272426605,0.044495984911919,-0.589617609977722,0.037598803639412,-0.806756794452667 + ,0.131412699818611,-0.980101943016052,-0.148655652999878,0.727469682693481,0.001983703114092,0.686117112636566 + ,-0.131351664662361,0.980101943016052,0.148594617843628,-0.727408647537231,-0.001983703114092,-0.686178147792816 + ,0.233161419630051,-0.928098380565643,-0.290231019258499,0.834101378917694,0.046449169516563,0.549607813358307 + ,-0.233161419630051,0.928098380565643,0.290231019258499,-0.834101378917694,-0.046449169516563,-0.549607813358307 + ,0.298409998416901,-0.847804188728333,-0.438337355852127,0.907223701477051,0.120944850146770,0.402813792228699 + ,-0.298440515995026,0.847743153572083,0.438398391008377,-0.907254219055176,-0.120975375175476,-0.402752757072449 + ,0.323557227849960,-0.742728948593140,-0.586169004440308,0.941587567329407,0.223059788346291,0.252174437046051 + ,-0.323557227849960,0.742698431015015,0.586230039596558,-0.941587567329407,-0.223090305924416,-0.252143919467926 + ,0.305154561996460,-0.619830906391144,-0.722952961921692,0.931730091571808,0.346507161855698,0.108584858477116 + ,-0.305154561996460,0.619830906391144,0.722952961921692,-0.931730091571808,-0.346507161855698,-0.108554340898991 + ,0.243995487689972,-0.489791572093964,-0.836970150470734,0.876613676548004,0.480941176414490,-0.015289773233235 + ,-0.244026005268097,0.489822089672089,0.836939573287964,-0.876613676548004,-0.480880141258240,0.015259254723787 + ,0.146794036030769,-0.364146858453751,-0.919675290584564,0.781334877014160,0.614398658275604,-0.109469890594482 + ,-0.146824553608894,0.364207893610001,0.919644773006439,-0.781395912170410,-0.614337623119354,0.109439373016357 + ,0.022492140531540,-0.251991331577301,-0.967436730861664,0.654133737087250,0.737357735633850,-0.168431654572487 + ,-0.022492140531540,0.251991331577301,0.967436730861664,-0.654133737087250,-0.737357735633850,0.168431654572487 + ,-0.121951967477798,-0.158085882663727,-0.979857802391052,0.501266539096832,0.844141960144043,-0.190099790692329 + ,0.122013002634048,0.158055365085602,0.979827284812927,-0.501205503940582,-0.844172477722168,0.190069273114204 + ,-0.280129402875900,-0.087191380560398,-0.955961763858795,0.328806430101395,0.928617179393768,-0.171819210052490 + ,0.280190438032150,0.087160862982273,0.955961763858795,-0.328745394945145,-0.928647696971893,0.171819210052490 + ,-0.440931439399719,-0.045381024479866,-0.896389663219452,0.148289442062378,0.982482373714447,-0.112765893340111 + ,0.440931439399719,0.045381024479866,0.896389663219452,-0.148289442062378,-0.982482373714447,0.112765893340111 + ,-0.590655207633972,-0.037018951028585,-0.806054890155792,-0.024781029671431,0.999542236328125,-0.016815699636936 + ,0.590624690055847,0.037018951028585,0.806085407733917,0.024750512093306,-0.999542236328125,0.016876734793186 + ,-0.717245995998383,-0.061677906662226,-0.694051921367645,-0.176091805100441,0.978514969348907,0.106936857104301 + ,0.717184960842133,0.061647389084101,0.694112956523895,0.176061287522316,-0.978545486927032,-0.106906339526176 + ,-0.813348770141602,-0.115848258137703,-0.570085763931274,-0.295754879713058,0.922299861907959,0.248664811253548 + ,0.813348770141602,0.115848258137703,0.570085763931274,0.295754879713058,-0.922299861907959,-0.248664811253548 + ,-0.876033842563629,-0.195776239037514,-0.440656751394272,-0.378826260566711,0.833887755870819,0.401348918676376 + ,0.876064360141754,0.195806756615639,0.440595716238022,0.378856778144836,-0.833857238292694,-0.401379436254501 + ,-0.902127146720886,-0.298104792833328,-0.311868637800217,-0.419782102108002,0.715903222560883,0.557878375053406 + ,0.902127146720886,0.298135310411453,0.311807602643967,0.419782102108002,-0.715872704982758,-0.557908892631531 + ,-0.888515889644623,-0.416119873523712,-0.193273723125458,-0.413037508726120,0.574907660484314,0.706289887428284 + ,0.888515889644623,0.416119873523712,0.193273723125458,0.413037508726120,-0.574907660484314,-0.706289887428284 + ,-0.836085081100464,-0.540177643299103,-0.095522932708263,-0.357585370540619,0.422162532806396,0.832972168922424 + ,0.836115598678589,0.540147125720978,0.095553450286388,0.357615888118744,-0.422193050384521,-0.832941651344299 + ,-0.751060545444489,-0.659688115119934,-0.026215400546789,-0.259163171052933,0.270546585321426,0.927152335643768 + ,0.751091063022614,0.659627079963684,0.026245918124914,0.259224206209183,-0.270607620477676,-0.927121818065643 + ,-0.641804277896881,-0.766747057437897,0.011200292967260,-0.126560255885124,0.130649745464325,0.983306348323822 + ,0.641804277896881,0.766747057437897,-0.011200292967260,0.126560255885124,-0.130649745464325,-0.983306348323822 + ,-0.514755725860596,-0.857173383235931,0.016510512679815,0.033448286354542,0.008575701154768,0.999389648437500 + ,0.514694690704346,0.857203900814056,-0.016510512679815,-0.033509321510792,-0.008545182645321,-0.999389648437500 + ,-0.371135592460632,-0.928556144237518,0.003082369454205,0.218665122985840,-0.074892424046993,0.972899556159973 + ,0.371105074882507,0.928556144237518,-0.003082369454205,-0.218726158142090,0.074922941625118,-0.972899556159973 + ,-0.267586290836334,-0.963530361652374,0.000091555528343,0.240546897053719,-0.067964717745781,0.968230247497559 + ,0.267586290836334,0.963530361652374,-0.000091555528343,-0.240546897053719,0.067964717745781,-0.968230247497559 + ,-0.285775333642960,-0.958281219005585,0.003479110077024,0.475417345762253,-0.139957889914513,0.868526279926300 + ,0.285805851221085,0.958250701427460,-0.003509628586471,-0.475356310606003,0.139927372336388,-0.868556797504425 + ,-0.301156640052795,-0.953459262847900,0.013794366270304,0.673055231571198,-0.203619495034218,0.710989713668823 + ,0.301217675209045,0.953428745269775,-0.013824884779751,-0.672994196414948,0.203619495034218,-0.711020231246948 + ,-0.311990708112717,-0.949613928794861,0.029084138572216,0.821405708789825,-0.255531489849091,0.509842216968536 + ,0.311990708112717,0.949613928794861,-0.029084138572216,-0.821405708789825,0.255531489849091,-0.509842216968536 + ,-0.318552196025848,-0.946745216846466,0.046723838895559,0.914700746536255,-0.295480221509933,0.275582134723663 + ,0.318521678447723,0.946745216846466,-0.046662800014019,-0.914731264114380,0.295510739088058,-0.275521099567413 + ,-0.320505380630493,-0.944944620132446,0.065828427672386,0.946806252002716,-0.321237832307816,0.018219549208879 + ,0.320474863052368,0.944944620132446,-0.065767385065556,-0.946806252002716,0.321237832307816,-0.018158514052629 + ,-0.317514568567276,-0.944395303726196,0.085024565458298,0.911801517009735,-0.329966127872467,-0.244300663471222 + ,0.317514568567276,0.944395303726196,-0.085024565458298,-0.911801517009735,0.329966127872467,0.244300663471222 + ,-0.309823900461197,-0.945219278335571,0.102755822241306,0.811090409755707,-0.320444345474243,-0.489272743463516 + ,0.309793382883072,0.945219278335571,-0.102816857397556,-0.811120927333832,0.320444345474243,0.489242225885391 + ,-0.298165827989578,-0.947202980518341,0.117587819695473,0.654866158962250,-0.293862730264664,-0.696218729019165 + ,0.298135310411453,0.947233498096466,-0.117618337273598,-0.654927194118500,0.293893247842789,0.696188211441040 + ,-0.283639013767242,-0.950254857540131,0.128604993224144,0.457167267799377,-0.253089994192123,-0.852595627307892 + ,0.283639013767242,0.950254857540131,-0.128604993224144,-0.457167267799377,0.253089994192123,0.852595627307892 + ,-0.267006427049637,-0.954100131988525,0.135410621762276,0.228278458118439,-0.200354009866714,-0.952726840972900 + ,0.267067462205887,0.954100131988525,-0.135410621762276,-0.228217408061028,0.200354009866714,0.952757358551025 + ,-0.249061554670334,-0.958616912364960,0.137638479471207,-0.021942809224129,-0.137791067361832,-0.990203559398651 + ,0.249122589826584,0.958616912364960,-0.137638479471207,0.022003844380379,0.137760549783707,0.990203559398651 + ,-0.231116667389870,-0.963499844074249,0.134983360767365,-0.276100963354111,-0.069399088621140,-0.958586394786835 + ,0.231116667389870,0.963499844074249,-0.134983360767365,0.276100963354111,0.069399088621140,0.958586394786835 + ,-0.214636683464050,-0.968291282653809,0.127597883343697,-0.512009024620056,-0.000976592302322,-0.858943462371826 + ,0.214606165885925,0.968321800231934,-0.127567365765572,0.511978507041931,0.000976592302322,0.858973979949951 + ,-0.200994908809662,-0.972655415534973,0.116245001554489,-0.710074186325073,0.061677906662226,-0.701406896114349 + ,0.200933873653412,0.972655415534973,-0.116214483976364,0.710013151168823,-0.061647389084101,0.701467931270599 + ,-0.190923795104027,-0.976287126541138,0.101962342858315,-0.858272016048431,0.114444412291050,-0.500228881835938 + ,0.190923795104027,0.976287126541138,-0.101962342858315,0.858272016048431,-0.114413894712925,0.500228881835938 + ,-0.184850618243217,-0.979033768177032,0.085512861609459,-0.951384007930756,0.155217140913010,-0.265938282012939 + ,0.184850618243217,0.979003250598907,-0.085573896765709,0.951414525508881,-0.155217140913010,0.265877246856689 + ,-0.183080539107323,-0.980742812156677,0.067720569670200,-0.983306348323822,0.181707203388214,-0.008545182645321 + ,0.183080539107323,0.980742812156677,-0.067781612277031,0.983306348323822,-0.181707203388214,0.008484145626426 + ,-0.185888245701790,-0.981292128562927,0.049836724996567,-0.948087990283966,0.191259503364563,0.254036068916321 + ,0.185888245701790,0.981292128562927,-0.049836724996567,0.948087990283966,-0.191259503364563,-0.254036068916321 + ,-0.193090602755547,-0.980590224266052,0.033326212316751,-0.847102284431458,0.182561725378036,0.499038666486740 + ,0.193121135234833,0.980590224266052,-0.033295694738626,0.847132802009583,-0.182561725378036,-0.498977631330490 + ,-0.203955203294754,-0.978759109973907,0.019562363624573,-0.690603375434875,0.156865134835243,0.705984652042389 + ,0.204016238451004,0.978759109973907,-0.019501328468323,0.690633893013000,-0.156895652413368,-0.705954134464264 + ,-0.217535942792892,-0.975981950759888,0.009338663890958,-0.492599248886108,0.116916410624981,0.862331032752991 + ,0.217535942792892,0.975981950759888,-0.009338663890958,0.492599248886108,-0.116916410624981,-0.862331032752991 + ,-0.233039334416389,-0.972441792488098,0.003021332435310,-0.263435781002045,0.064973905682564,0.962462246417999 + ,0.232947781682014,0.972472310066223,-0.003051850944757,0.263344228267670,-0.064973905682564,-0.962492763996124 + ,-0.249763488769531,-0.968291282653809,0.000457777641714,-0.013000885024667,0.002594073303044,0.999908447265625 + ,0.249702438712120,0.968291282653809,-0.000457777641714,0.012970366515219,-0.002594073303044,-0.999908447265625 + ,0.200720235705376,-0.979613661766052,0.006866664625704,0.417096465826035,0.082735680043697,0.905056893825531 + ,-0.200720235705376,0.979613661766052,-0.006866664625704,-0.417096465826035,-0.082735680043697,-0.905056893825531 + ,0.016754660755396,-0.998840272426605,0.044801171869040,0.591906487941742,0.037079989910126,0.805108785629272 + ,-0.016693625599146,0.998840272426605,-0.044831689447165,-0.591875970363617,-0.037079989910126,-0.805139303207397 + ,-0.132602930068970,-0.979796767234802,0.149540692567825,0.729819655418396,-0.002990813925862,0.683614611625671 + ,0.132663965225220,0.979796767234802,-0.149601727724075,-0.729758620262146,0.002990813925862,-0.683645129203796 + ,-0.233924373984337,-0.927426993846893,0.291726440191269,0.835993528366089,-0.047700431197882,0.546586513519287 + ,0.233924373984337,0.927426993846893,-0.291726440191269,-0.835993528366089,0.047700431197882,-0.546617031097412 + ,-0.298440515995026,-0.847041249275208,0.439802229404449,0.908322393894196,-0.122104555368423,0.400006115436554 + ,0.298409998416901,0.847071766853333,-0.439771711826324,-0.908322393894196,0.122135072946548,-0.399975597858429 + ,-0.322885841131210,-0.742332220077515,0.587054073810577,0.941984295845032,-0.223548084497452,0.250282287597656 + ,0.322885841131210,0.742362737655640,-0.587023556232452,-0.941984295845032,0.223578602075577,-0.250251770019531 + ,-0.304300069808960,-0.620136141777039,0.723044514656067,0.932035267353058,-0.345866262912750,0.107821896672249 + ,0.304300069808960,0.620136141777039,-0.723044514656067,-0.932035267353058,0.345866262912750,-0.107821896672249 + ,-0.243568226695061,-0.490829199552536,0.836481809616089,0.877590239048004,-0.479140609502792,-0.015137180685997 + ,0.243568226695061,0.490798681974411,-0.836512327194214,-0.877620756626129,0.479110091924667,0.015106662176549 + ,-0.147129729390144,-0.365642249584198,0.919034421443939,0.783410131931305,-0.611865580081940,-0.108981594443321 + ,0.147099211812019,0.365611732006073,-0.919064939022064,-0.783440649509430,0.611804544925690,0.108951076865196 + ,-0.023407697677612,-0.253364652395248,0.967070519924164,0.657063484191895,-0.734794139862061,-0.168187499046326 + ,0.023407697677612,0.253364652395248,-0.967070519924164,-0.657032966613770,0.734824657440186,0.168187499046326 + ,0.120944850146770,-0.158909872174263,0.979827284812927,0.504379391670227,-0.842219293117523,-0.190282911062241 + ,-0.120853297412395,0.158940404653549,-0.979827284812927,-0.504318356513977,0.842280328273773,0.190282911062241 + ,0.279366433620453,-0.087374493479729,0.956175446510315,0.331400483846664,-0.927610099315643,-0.172276988625526 + ,-0.279305398464203,0.087374493479729,-0.956205964088440,-0.331339448690414,0.927610099315643,0.172276988625526 + ,0.440473645925522,-0.045106358826160,0.896603286266327,0.150059506297112,-0.982177197933197,-0.113162636756897 + ,-0.440473645925522,0.045106358826160,-0.896603286266327,-0.150059506297112,0.982177197933197,0.113162636756897 + ,0.590502619743347,-0.036530654877424,0.806176960468292,-0.023834954947233,-0.999542236328125,-0.016876734793186 + ,-0.590533137321472,0.036530654877424,-0.806146442890167,0.023804437369108,0.999572753906250,0.016907254233956 + ,0.717276513576508,-0.061189610511065,0.694082438945770,-0.175695061683655,-0.978576004505157,0.107272557914257 + ,-0.717307031154633,0.061189610511065,-0.694021403789520,0.175634026527405,0.978576004505157,-0.107211522758007 + ,0.813470840454102,-0.115451522171497,0.569994211196899,-0.295571774244308,-0.922238826751709,0.249153107404709 + ,-0.813470840454102,0.115451522171497,-0.569994211196899,0.295571774244308,0.922238826751709,-0.249153107404709 + ,0.876155912876129,-0.195532083511353,0.440504163503647,-0.378673672676086,-0.833735167980194,0.401776164770126 + ,-0.876155912876129,0.195501565933228,-0.440565198659897,0.378704190254211,0.833704650402069,-0.401837199926376 + ,0.902218699455261,-0.297921687364578,0.311777085065842,-0.419629514217377,-0.715811610221863,0.558091998100281 + ,-0.902218699455261,0.297891169786453,-0.311807602643967,0.419629514217377,0.715781092643738,-0.558153033256531 + ,0.888546407222748,-0.416058838367462,0.193182170391083,-0.412915438413620,-0.574938178062439,0.706320405006409 + ,-0.888546407222748,0.416058838367462,-0.193212687969208,0.412915438413620,0.574938178062439,-0.706320405006409 + ,0.836115598678589,-0.540147125720978,0.095431379973888,-0.357615888118744,-0.422376155853271,0.832880616188049 + ,-0.836085081100464,0.540208160877228,-0.095400862395763,0.357615888118744,0.422406703233719,-0.832850098609924 + ,0.751091063022614,-0.659657597541809,0.026123844087124,-0.259315788745880,-0.270882278680801,0.926999747753143 + ,-0.751060545444489,0.659688115119934,-0.026093326508999,0.259376823902130,0.270943313837051,-0.926969230175018 + ,0.641834795475006,-0.766747057437897,-0.011322367005050,-0.126712858676910,-0.130924403667450,0.983245313167572 + ,-0.641834795475006,0.766747057437897,0.011322367005050,0.126712858676910,0.130924403667450,-0.983245313167572 + ,0.514664173126221,-0.857203900814056,-0.016571551561356,0.033570360392332,-0.008636738173664,0.999389648437500 + ,-0.514725208282471,0.857173383235931,0.016571551561356,-0.033631399273872,0.008606219664216,-0.999389648437500 + ,0.370952486991882,-0.928617179393768,-0.003082369454205,0.219428077340126,0.075106054544449,0.972716450691223 + ,-0.371013522148132,0.928586661815643,0.003082369454205,-0.219489127397537,-0.075136572122574,-0.972685933113098 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + } + } + Model: "Model::Producer Perspective", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,71.299999999999997,287.500000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",10.000000 + Property: "FarPlane", "double", "",4000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",0 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,71.300000,287.500000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Top", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Bottom", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,-4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,-4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Front", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Back", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,-4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,-4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Right", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Left", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: -4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Material: "Material::AtomSphere", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Lambert" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.0000,0.5926,0.0197 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",1.0000 + Property: "DiffuseColor", "ColorRGB", "",0.0000,0.5926,0.0197 + Property: "DiffuseFactor", "double", "",0.8000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000 + Property: "SpecularFactor", "double", "",0.2500 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.0,0.6,0.0 + Property: "Specular", "ColorRGB", "",1.0,1.0,1.0 + Property: "Shininess", "double", "",23.9 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Material: "Material::unnamed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Phong" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",0.5000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",1.0000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "SpecularFactor", "double", "",0.2000 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",0.8,0.8,0.8 + Property: "Shininess", "double", "",20.0 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 3 + PoseNode: { + Node: "Model::blend_root" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::AtomBallSpheres" + Matrix: -0.054317414760590,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000002374290,0.054317414760590,0.000000000000000,0.000000000000000,-0.054317414760590,0.000000002374290,0.000000000000000,0.327362716197968,-0.290093243122101,-0.159554764628410,1.000000000000000 + } + PoseNode: { + Node: "Model::AtomBallLines" + Matrix: 0.482962965965271,0.129409536719322,-0.000000005656671,0.000000000000000,0.000000000000000,-0.000000021855694,-0.500000000000000,0.000000000000000,-0.129409536719322,0.482962965965271,-0.000000021110981,0.000000000000000,-0.000041365623474,0.000077024109487,0.000130839645863,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",100 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::blend_root", "Null" { + } + Model: "Model::AtomBallSpheres", "Mesh" { + } + Model: "Model::AtomBallLines", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::AtomSphere", "" { + } + Material: "Material::unnamed", "" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::blend_root", "Model::Scene" + Connect: "OO", "Model::AtomBallSpheres", "Model::blend_root" + Connect: "OO", "Model::AtomBallLines", "Model::blend_root" + Connect: "OO", "Material::AtomSphere", "Model::AtomBallSpheres" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" + Take: "Default Take" { + FileName: "Default_Take.tak" + LocalTime: 0,479181389250 + ReferenceTime: 0,479181389250 + + ;Models animation + ;---------------------------------------------------- + Model: "Model::AtomBallSpheres" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.327362716197968 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.327362716197968,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.290093243122101 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.290093243122101,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.159554764628410 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.159554764628410,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 89.999995674159678 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,89.999995674159678,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 180.000005008697713 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,180.000005008697713,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.054317414760590 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.054317414760590,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.054317414760590 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.054317414760590,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.054317414760590 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.054317414760590,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::AtomBallLines" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: -0.000041365623474 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000041365623474,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000077024109487 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000077024109487,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000130839645863 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000130839645863,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000648206662 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000648206662,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 15.000000417391476 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,15.000000417391476,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.500000119209290 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000119209290,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.500000119209290 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000119209290,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + } +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FlogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.1,0.1,0.1,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 479181389250 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/Assets/resources/Ball Pack/Models/AtomBall.fbx.meta b/Assets/resources/Ball Pack/Models/AtomBall.fbx.meta new file mode 100644 index 00000000..13d91157 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/AtomBall.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: 4a1142b17f64bbc40871f76529421f77 +ModelImporter: + serializedVersion: 20200 + internalIDToNameTable: + - first: + 43: 4300000 + second: AtomBallSpheres + - first: + 43: 4300002 + second: AtomBallLines + - first: + 1001: 100100000 + second: DataTemplate __Singleton__ + - first: + 74: 1989289236423521904 + second: Default Take + externalObjects: {} + materials: + materialImportMode: 1 + materialName: 3 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 0 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + fileIdsGeneration: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + meshOptimizationFlags: -1 + indexFormat: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 0 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 4 + normalCalculationMode: 0 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 1 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/BombBall.fbx b/Assets/resources/Ball Pack/Models/BombBall.fbx new file mode 100644 index 00000000..03765600 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/BombBall.fbx @@ -0,0 +1,2296 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2011 + Month: 03 + Day: 16 + Hour: 12 + Minute: 50 + Second: 01 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2011-03-16 12:50:01:000" +Creator: "Blender version 2.56 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 16 + ObjectType: "Model" { + Count: 12 + } + ObjectType: "Geometry" { + Count: 3 + } + ObjectType: "Material" { + Count: 1 + } + ObjectType: "Texture" { + Count: 1 + } + ObjectType: "Video" { + Count: 1 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::Camera Switcher", "CameraSwitcher" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Camera Index", "Integer", "A+",100 + } + MultiLayer: 0 + MultiTake: 1 + Hidden: "True" + Shading: W + Culling: "CullingOff" + Version: 101 + Name: "Model::Camera Switcher" + CameraId: 0 + CameraName: 100 + CameraIndexName: + } + Model: "Model::blend_root", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::BombWick", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000029802322,0.473081022500992,-0.000000020679030 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-89.999988843970513,-89.999988843970513,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.500000000000000,0.500000000000000,0.135865211486816 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.000000,0.070000,0.875504,0.060622,-0.035000,0.875504,-0.060622,-0.035000,0.875504,0.000000,-0.135110,2.107721,0.060622,-0.188172,1.774281,-0.060622,-0.188172,1.774281,0.009076,-0.318172,2.127399 + ,0.069697,-0.276270,1.773090,-0.051546,-0.276270,1.773090,0.034412,-0.437537,1.282742 + PolygonVertexIndex: 0,3,4,-2,1,4,5,-3,3,0,2,-6,4,3,6,-8,5,4,7,-9,3,5,8,-7,7,6,-10,8,7,-10,6,8,-10 + Edges: 0,1,1,4,3,4,0,3,1,2,2,5,4,5,0,2,3,5,3,6,6,7,4,7,7,8 + ,5,8,6,8,7,9,8,9,6,9 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: 0.000000000000000,0.986144602298737,0.165776550769806,0.865413367748260,-0.493697941303253,-0.085238195955753 + ,-0.865413367748260,-0.493697941303253,-0.085238195955753,-0.001007110811770,0.891415119171143,0.453138828277588 + ,0.879879117012024,-0.192083492875099,-0.434614092111588,-0.868373692035675,-0.251136809587479,-0.427564322948456 + ,0.071749016642570,-0.901852488517761,0.426007866859436,0.841944634914398,0.256355464458466,-0.474745929241180 + ,-0.846186697483063,0.142429888248444,-0.513473927974701,0.381695002317429,-0.608661174774170,-0.695547342300415 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.343613,0.539798,0.465657,0.537770,0.498549,0.553641,0.407409,0.555156,0.407409,0.555156,0.498549,0.553641,0.495911,0.520849 + ,0.404771,0.522364,0.465657,0.537770,0.343613,0.539798,0.404771,0.522364,0.495911,0.520849,0.498549,0.553641,0.465657,0.537770 + ,0.574780,0.538414,0.551166,0.555224,0.495911,0.520849,0.498549,0.553641,0.551166,0.555224,0.548528,0.522432,0.465657,0.537770 + ,0.495911,0.520849,0.548528,0.522432,0.574780,0.538414,0.551166,0.555224,0.574780,0.538414,0.646356,0.544086,0.548528,0.522432 + ,0.551166,0.555224,0.646356,0.544086,0.574780,0.538414,0.548528,0.522432,0.646356,0.544086 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: "Model::BombBall", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-89.999988843970513,-89.999988843970513,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.500000000000000,0.500000000000000,0.500000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.587785,0.000000,0.809017,0.951057,0.000000,0.309017,0.951056,0.000000,-0.309017,0.587785,0.000000,-0.809017,-0.000000,-0.000000,-1.000000,0.415627,0.415627,-0.809017,0.672498,0.672499,-0.309017 + ,0.672499,0.672499,0.309017,0.415627,0.415627,0.809017,-0.000000,0.587785,0.809017,-0.000000,0.951057,0.309017,-0.000000,0.951057,-0.309017,-0.000000,0.587785,-0.809017,-0.415627,0.415627,-0.809017 + ,-0.672499,0.672498,-0.309017,-0.672499,0.672499,0.309017,-0.415627,0.415627,0.809017,0.000000,0.000000,1.000000,-0.587785,-0.000000,0.809017,-0.951057,-0.000000,0.309017,-0.951057,-0.000000,-0.309017 + ,-0.587785,-0.000000,-0.809017,-0.415627,-0.415627,-0.809017,-0.672498,-0.672499,-0.309017,-0.672499,-0.672499,0.309017,-0.415627,-0.415627,0.809017,0.000000,-0.587785,0.809017,0.000000,-0.951057,0.309017 + ,0.000000,-0.951057,-0.309017,0.000000,-0.587785,-0.809017,0.415627,-0.415627,-0.809017,0.672499,-0.672498,-0.309017,0.672499,-0.672499,0.309017,0.415627,-0.415627,0.809017 + PolygonVertexIndex: 4,5,-4,3,5,6,-3,2,6,7,-2,8,0,1,-8,0,8,-18,8,9,-18,7,10,9,-9,6,11,10,-8,5,12,11,-7,4,12,-6,4,13,-13,12,13,14,-12,11,14,15,-11 + ,10,15,16,-10,9,16,-18,16,18,-18,15,19,18,-17,14,20,19,-16,13,21,20,-15,4,21,-14,4,22,-22,21,22,23,-21,20,23,24,-20,19,24,25,-19,18,25,-18,25,26,-18 + ,24,27,26,-26,23,28,27,-25,22,29,28,-24,4,29,-23,4,30,-30,29,30,31,-29,28,31,32,-28,27,32,33,-27,26,33,-18,33,0,-18,0,33,32,-2,31,2,1,-33,30,3,2,-32 + ,4,3,-31 + Edges: 0,1,1,2,2,3,3,5,4,5,2,6,5,6,1,7,6,7,0,8,7,8,8,9,9,10 + ,7,10,10,11,6,11,11,12,5,12,12,13,11,14,13,14,10,15,14,15,9,16,15,16,16,17 + ,16,18,18,19,15,19,19,20,14,20,20,21,13,21,21,22,20,23,22,23,19,24,23,24,18,25 + ,24,25,25,26,26,27,24,27,27,28,23,28,28,29,22,29,29,30,28,31,30,31,27,32,31,32 + ,26,33,32,33,3,4,3,30,2,31,1,32,0,33,0,17,17,33,4,30,4,29,17,26,17,25 + ,4,22,4,21,17,18,4,13,4,12,9,17,8,17 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: 0.581835389137268,0.000000000000000,0.813287734985352,0.949735999107361,0.000000000000000,0.312997817993164 + ,0.949735999107361,0.000000000000000,-0.312997817993164,0.581835389137268,0.000000000000000,-0.813287734985352 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.411420017480850,0.411420017480850,-0.813287734985352 + ,0.671559810638428,0.671559810638428,-0.312997817993164,0.671559810638428,0.671559810638428,0.312997817993164 + ,0.411420017480850,0.411420017480850,0.813287734985352,0.000000000000000,0.581835389137268,0.813287734985352 + ,0.000000000000000,0.949735999107361,0.312997817993164,0.000000000000000,0.949735999107361,-0.312997817993164 + ,0.000000000000000,0.581835389137268,-0.813287734985352,-0.411420017480850,0.411420017480850,-0.813287734985352 + ,-0.671559810638428,0.671559810638428,-0.312997817993164,-0.671559810638428,0.671559810638428,0.312997817993164 + ,-0.411420017480850,0.411420017480850,0.813287734985352,0.000000000000000,0.000000000000000,1.000000000000000 + ,-0.581835389137268,0.000000000000000,0.813287734985352,-0.949735999107361,0.000000000000000,0.312997817993164 + ,-0.949735999107361,0.000000000000000,-0.312997817993164,-0.581835389137268,0.000000000000000,-0.813287734985352 + ,-0.411420017480850,-0.411420017480850,-0.813287734985352,-0.671559810638428,-0.671559810638428,-0.312997817993164 + ,-0.671559810638428,-0.671559810638428,0.312997817993164,-0.411420017480850,-0.411420017480850,0.813287734985352 + ,0.000000000000000,-0.581835389137268,0.813287734985352,0.000000000000000,-0.949735999107361,0.312997817993164 + ,0.000000000000000,-0.949735999107361,-0.312997817993164,0.000000000000000,-0.581835389137268,-0.813287734985352 + ,0.411420017480850,-0.411420017480850,-0.813287734985352,0.671559810638428,-0.671559810638428,-0.312997817993164 + ,0.671559810638428,-0.671559810638428,0.312997817993164,0.411420017480850,-0.411420017480850,0.813287734985352 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.500000,0.026287,0.696657,0.071469,0.778115,0.071469,0.778115,0.071469,0.696657,0.071469,0.818198,0.189759,0.950000,0.189759 + ,0.950000,0.189759,0.818198,0.189759,0.818198,0.335972,0.950000,0.335972,0.696657,0.454262,0.778115,0.454262,0.950000,0.335972 + ,0.818198,0.335972,0.778115,0.454262,0.696657,0.454262,0.500000,0.499444,0.696657,0.454262,0.500000,0.454262,0.500000,0.499444 + ,0.818198,0.335972,0.500000,0.335972,0.500000,0.454262,0.696657,0.454262,0.818198,0.189759,0.500000,0.189759,0.500000,0.335972 + ,0.818198,0.335972,0.696657,0.071469,0.500000,0.071469,0.500000,0.189759,0.818198,0.189759,0.500000,0.026287,0.500000,0.071469 + ,0.696657,0.071469,0.500000,0.026287,0.303343,0.071469,0.500000,0.071469,0.500000,0.071469,0.303343,0.071469,0.181802,0.189759 + ,0.500000,0.189759,0.500000,0.189759,0.181802,0.189759,0.181802,0.335972,0.500000,0.335972,0.500000,0.335972,0.181802,0.335972 + ,0.303343,0.454262,0.500000,0.454262,0.500000,0.454262,0.303343,0.454262,0.500000,0.499444,0.303343,0.454262,0.221885,0.454262 + ,0.500000,0.499444,0.181802,0.335972,0.050000,0.335972,0.221885,0.454262,0.303343,0.454262,0.181802,0.189759,0.050000,0.189759 + ,0.050000,0.335972,0.181802,0.335972,0.303343,0.071469,0.221885,0.071469,0.050000,0.189759,0.181802,0.189759,0.500000,0.026287 + ,0.221885,0.071469,0.303343,0.071469,0.500000,0.026287,0.303343,0.071469,0.221885,0.071469,0.221885,0.071469,0.303343,0.071469 + ,0.181802,0.189759,0.050000,0.189759,0.050000,0.189759,0.181802,0.189759,0.181802,0.335972,0.050000,0.335972,0.050000,0.335972 + ,0.181802,0.335972,0.303343,0.454262,0.221885,0.454262,0.221885,0.454262,0.303343,0.454262,0.500000,0.499444,0.303343,0.454262 + ,0.500000,0.454262,0.500000,0.499444,0.181802,0.335972,0.500000,0.335972,0.500000,0.454262,0.303343,0.454262,0.181802,0.189759 + ,0.500000,0.189759,0.500000,0.335972,0.181802,0.335972,0.303343,0.071469,0.500000,0.071469,0.500000,0.189759,0.181802,0.189759 + ,0.500000,0.026287,0.500000,0.071469,0.303343,0.071469,0.500000,0.026287,0.696657,0.071469,0.500000,0.071469,0.500000,0.071469 + ,0.696657,0.071469,0.818198,0.189759,0.500000,0.189759,0.500000,0.189759,0.818198,0.189759,0.818198,0.335972,0.500000,0.335972 + ,0.500000,0.335972,0.818198,0.335972,0.696657,0.454262,0.500000,0.454262,0.500000,0.454262,0.696657,0.454262,0.500000,0.499444 + ,0.696657,0.454262,0.778115,0.454262,0.500000,0.499444,0.778115,0.454262,0.696657,0.454262,0.818198,0.335972,0.950000,0.335972 + ,0.818198,0.189759,0.950000,0.189759,0.950000,0.335972,0.818198,0.335972,0.696657,0.071469,0.778115,0.071469,0.950000,0.189759 + ,0.818198,0.189759,0.500000,0.026287,0.778115,0.071469,0.696657,0.071469 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 + ,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109 + ,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: "Model::BombTop", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000001,0.000000000000003,1.035209178924561 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,-0.000000000000057,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.302400022745132,0.302400022745132,0.560000002384186 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.000000,-0.000000,0.309017,0.951057,0.000000,0.309017,0.951056,0.000000,-0.309017,0.672498,0.672499,-0.309017,0.672499,0.672499,0.309017,-0.000000,0.951057,0.309017,-0.000000,0.951057,-0.309017 + ,-0.672499,0.672498,-0.309017,-0.672499,0.672499,0.309017,-0.951057,-0.000000,0.309017,-0.951057,-0.000000,-0.309017,-0.672498,-0.672499,-0.309017,-0.672499,-0.672499,0.309017,0.000000,-0.951057,0.309017 + ,0.000000,-0.951057,-0.309017,0.672499,-0.672498,-0.309017,0.672499,-0.672499,0.309017 + PolygonVertexIndex: 2,3,4,-2,0,1,-5,5,0,-5,3,6,5,-5,6,7,8,-6,8,0,-6,9,0,-9,7,10,9,-9,10,11,12,-10,12,0,-10,13,0,-13,11,14,13,-13,14,15,16,-14 + ,16,0,-14,0,16,-2,15,2,1,-17 + Edges: 0,1,1,2,2,3,1,4,3,4,4,5,5,6,3,6,6,7,5,8,7,8,8,9,9,10 + ,7,10,10,11,9,12,11,12,12,13,13,14,11,14,14,15,13,16,15,16,2,15,1,16,0,16 + ,0,13,0,12,0,9,0,8,0,5,0,4 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: 0.000000000000000,0.000000000000000,1.000000000000000,0.678579032421112,0.000000000000000,0.734488964080811 + ,1.000000000000000,0.000000000000000,0.000000000000000,0.707083344459534,0.707083344459534,0.000000000000000 + ,0.479811996221542,0.479811996221542,0.734488964080811,0.000000000000000,0.678579032421112,0.734488964080811 + ,0.000000000000000,1.000000000000000,0.000000000000000,-0.707083344459534,0.707083344459534,0.000000000000000 + ,-0.479811996221542,0.479811996221542,0.734488964080811,-0.678579032421112,0.000000000000000,0.734488964080811 + ,-1.000000000000000,0.000000000000000,0.000000000000000,-0.707083344459534,-0.707083344459534,0.000000000000000 + ,-0.479811996221542,-0.479811996221542,0.734488964080811,0.000000000000000,-0.678579032421112,0.734488964080811 + ,0.000000000000000,-1.000000000000000,0.000000000000000,0.707083344459534,-0.707083344459534,0.000000000000000 + ,0.479811996221542,-0.479811996221542,0.734488964080811 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.641402,0.962874,0.597976,0.962874,0.597976,0.567762,0.641402,0.567762,0.493131,0.765248,0.329721,0.567996,0.656540,0.567995 + ,0.887635,0.683543,0.493131,0.765248,0.656540,0.567995,0.597976,0.962874,0.493137,0.962874,0.493137,0.567762,0.597976,0.567762 + ,0.493137,0.962874,0.388297,0.962874,0.388297,0.567762,0.493137,0.567762,0.887635,0.846952,0.493131,0.765248,0.887635,0.683543 + ,0.656540,0.962500,0.493131,0.765248,0.887635,0.846952,0.388297,0.962874,0.344871,0.962874,0.344871,0.567762,0.388297,0.567762 + ,0.344871,0.962874,0.388297,0.962874,0.388297,0.567762,0.344871,0.567762,0.329722,0.962500,0.493131,0.765248,0.656540,0.962500 + ,0.098626,0.846952,0.493131,0.765248,0.329722,0.962500,0.388297,0.962874,0.493137,0.962874,0.493137,0.567762,0.388297,0.567762 + ,0.493137,0.962874,0.597976,0.962874,0.597976,0.567762,0.493137,0.567762,0.098626,0.683543,0.493131,0.765248,0.098626,0.846952 + ,0.493131,0.765248,0.098626,0.683543,0.329721,0.567996,0.597976,0.962874,0.641402,0.962874,0.641402,0.567762,0.597976,0.567762 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 + ,55 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: "Model::Producer Perspective", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,71.299999999999997,287.500000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",10.000000 + Property: "FarPlane", "double", "",4000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",0 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,71.300000,287.500000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Top", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Bottom", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,-4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,-4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Front", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Back", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,-4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,-4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Right", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Left", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: -4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Material: "Material::None__BombBall_png", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Phong" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",0.5000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",1.0000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "SpecularFactor", "double", "",0.2000 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",0.8,0.8,0.8 + Property: "Shininess", "double", "",20.0 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Video: "Video::BombBall_png", "Clip" { + Type: "Clip" + Properties60: { + Property: "FrameRate", "double", "",0 + Property: "LastFrame", "int", "",0 + Property: "Width", "int", "",0 + Property: "Height", "int", "",0 + Property: "Path", "charptr", "", "BombBall.png" + Property: "StartFrame", "int", "",0 + Property: "StopFrame", "int", "",0 + Property: "PlaySpeed", "double", "",1 + Property: "Offset", "KTime", "",0 + Property: "InterlaceMode", "enum", "",0 + Property: "FreeRunning", "bool", "",0 + Property: "Loop", "bool", "",0 + Property: "AccessMode", "enum", "",0 + } + UseMipMap: 0 + Filename: "BombBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\BombBall.png" + } + Texture: "Texture::BombBall_png", "TextureVideoClip" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::BombBall_png" + Properties60: { + Property: "Translation", "Vector", "A+",0,0,0 + Property: "Rotation", "Vector", "A+",0,0,0 + Property: "Scaling", "Vector", "A+",1,1,1 + Property: "Texture alpha", "Number", "A+",0 + Property: "TextureTypeUse", "enum", "",0 + Property: "CurrentTextureBlendMode", "enum", "",1 + Property: "UseMaterial", "bool", "",0 + Property: "UseMipMap", "bool", "",0 + Property: "CurrentMappingType", "enum", "",0 + Property: "UVSwap", "bool", "",0 + Property: "WrapModeU", "enum", "",0 + Property: "WrapModeV", "enum", "",0 + Property: "TextureRotationPivot", "Vector3D", "",0,0,0 + Property: "TextureScalingPivot", "Vector3D", "",0,0,0 + Property: "VideoProperty", "object", "" + } + Media: "Video::BombBall_png" + FileName: "BombBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\BombBall.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 4 + PoseNode: { + Node: "Model::blend_root" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::BombWick" + Matrix: 0.000000037748951,0.000000021855694,0.500000000000000,0.000000000000000,0.500000000000000,0.000000087422777,-0.000000037748954,0.000000000000000,-0.000000023755428,0.135865211486816,-0.000000005938855,0.000000000000000,0.000000029802322,0.473081022500992,-0.000000020679030,1.000000000000000 + } + PoseNode: { + Node: "Model::BombBall" + Matrix: 0.000000037748951,0.000000021855694,0.500000000000000,0.000000000000000,0.500000000000000,0.000000087422777,-0.000000037748954,0.000000000000000,-0.000000087422777,0.500000000000000,-0.000000021855687,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::BombTop" + Matrix: 0.302400022745132,0.000000000000001,0.000000000000000,0.000000000000000,0.000000000000001,0.302400022745132,0.000000000000001,0.000000000000000,-0.000000000000000,0.000000000000002,0.560000002384186,0.000000000000000,0.000000000000001,0.000000000000003,1.035209178924561,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",100 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::blend_root", "Null" { + } + Model: "Model::BombWick", "Mesh" { + } + Model: "Model::BombBall", "Mesh" { + } + Model: "Model::BombTop", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::None__BombBall_png", "" { + } + Texture: "Texture::BombBall_png", "TextureVideoClip" { + } + Video: "Video::BombBall_png", "Clip" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::blend_root", "Model::Scene" + Connect: "OO", "Model::BombWick", "Model::blend_root" + Connect: "OO", "Model::BombBall", "Model::blend_root" + Connect: "OO", "Model::BombTop", "Model::BombBall" + Connect: "OO", "Material::None__BombBall_png", "Model::BombWick" + Connect: "OO", "Material::None__BombBall_png", "Model::BombBall" + Connect: "OO", "Material::None__BombBall_png", "Model::BombTop" + Connect: "OO", "Texture::BombBall_png", "Model::BombWick" + Connect: "OO", "Texture::BombBall_png", "Model::BombBall" + Connect: "OO", "Texture::BombBall_png", "Model::BombTop" + Connect: "OO", "Video::BombBall_png", "Texture::BombBall_png" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" + Take: "Default Take" { + FileName: "Default_Take.tak" + LocalTime: 0,479181389250 + ReferenceTime: 0,479181389250 + + ;Models animation + ;---------------------------------------------------- + Model: "Model::BombWick" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.000000029802322 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000029802322,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.473081022500992 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.473081022500992,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.000000020679030 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000020679030,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -89.999988843970513 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-89.999988843970513,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -89.999995674159678 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-89.999995674159678,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.135865211486816 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.135865211486816,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::BombBall" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -89.999988843970513 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-89.999988843970513,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -89.999995674159678 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-89.999995674159678,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::BombTop" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.000000000000001 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000001,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000000000003 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000003,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.035209178924561 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.035209178924561,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 0.000000000000189 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000189,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000085 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000085,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000101 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000101,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.302400022745132 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.302400022745132,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.302400022745132 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.302400022745132,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.560000002384186 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.560000002384186,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + } +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FlogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.1,0.1,0.1,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 479181389250 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/Assets/resources/Ball Pack/Models/BombBall.fbx.meta b/Assets/resources/Ball Pack/Models/BombBall.fbx.meta new file mode 100644 index 00000000..897841c2 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/BombBall.fbx.meta @@ -0,0 +1,120 @@ +fileFormatVersion: 2 +guid: 38972d9a807375f4fbdbf2e076aa183f +ModelImporter: + serializedVersion: 20200 + internalIDToNameTable: + - first: + 43: 4300000 + second: Cylinder + - first: + 43: 4300002 + second: BombBall + - first: + 43: 4300004 + second: BombTop + - first: + 43: 4300006 + second: BombWick + - first: + 1001: 100100000 + second: DataTemplate __Singleton__ + - first: + 74: 1989289236423521904 + second: Default Take + externalObjects: {} + materials: + materialImportMode: 1 + materialName: 3 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 0 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + fileIdsGeneration: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + meshOptimizationFlags: -1 + indexFormat: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 0 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 4 + normalCalculationMode: 0 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 1 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/BuckyBall.fbx b/Assets/resources/Ball Pack/Models/BuckyBall.fbx new file mode 100644 index 00000000..35733f43 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/BuckyBall.fbx @@ -0,0 +1,3176 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2011 + Month: 03 + Day: 16 + Hour: 12 + Minute: 53 + Second: 12 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2011-03-16 12:53:12:000" +Creator: "Blender version 2.56 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 13 + ObjectType: "Model" { + Count: 11 + } + ObjectType: "Geometry" { + Count: 2 + } + ObjectType: "Material" { + Count: 1 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::Camera Switcher", "CameraSwitcher" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Camera Index", "Integer", "A+",100 + } + MultiLayer: 0 + MultiTake: 1 + Hidden: "True" + Shading: W + Culling: "CullingOff" + Version: 101 + Name: "Model::Camera Switcher" + CameraId: 0 + CameraName: 100 + CameraIndexName: + } + Model: "Model::blend_root", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::BuckyBallAtoms", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.045528739690781,0.408940017223358,0.140125438570976 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",-0.054317422211170,-0.054317422211170,-0.054317422211170 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 5.256688,2.670787,10.645391,5.980288,2.145067,11.198175,4.980303,1.820147,11.198175,4.362263,2.670787,11.198175,4.980303,3.521427,11.198175,5.980288,3.196507,11.198175,5.533073,1.820147,12.092606 + ,4.533088,2.145067,12.092606,4.533088,3.196507,12.092606,5.533073,3.521427,12.092606,6.151113,2.670787,12.092606,5.256688,2.670787,12.645391,8.553457,-4.174094,7.932868,9.277058,-4.699814,8.485653 + ,8.277072,-5.024734,8.485653,7.659032,-4.174094,8.485653,8.277072,-3.323454,8.485653,9.277058,-3.648374,8.485653,8.829843,-5.024734,9.380083,7.829857,-4.699814,9.380083,7.829857,-3.648374,9.380083 + ,8.829843,-3.323454,9.380083,9.447882,-4.174094,9.380083,8.553457,-4.174094,9.932868,4.738625,-9.424642,7.932868,5.462224,-9.950361,8.485653,4.462240,-10.275282,8.485653,3.844200,-9.424642,8.485653 + ,4.462240,-8.574001,8.485653,5.462224,-8.898922,8.485653,5.015009,-10.275282,9.380083,4.015025,-9.950361,9.380083,4.015025,-8.898922,9.380083,5.015009,-8.574001,9.380083,5.633049,-9.424642,9.380083 + ,4.738625,-9.424642,9.932868,1.705988,-10.410021,7.932869,2.429588,-10.935740,8.485654,1.429603,-11.260661,8.485654,0.811563,-10.410021,8.485654,1.429603,-9.559381,8.485654,2.429588,-9.884301,8.485654 + ,1.982373,-11.260661,9.380084,0.982388,-10.935740,9.380084,0.982388,-9.884301,9.380084,1.982373,-9.559381,9.380084,2.600413,-10.410021,9.380084,1.705988,-10.410021,9.932869,4.466362,-8.404478,2.412027 + ,5.189962,-8.930198,2.964812,4.189977,-9.255118,2.964812,3.571937,-8.404478,2.964812,4.189977,-7.553838,2.964812,5.189962,-7.878758,2.964812,4.742747,-9.255118,3.859242,3.742762,-8.930198,3.859242 + ,3.742762,-7.878758,3.859242,4.742747,-7.553838,3.859242,5.360787,-8.404478,3.859242,4.466362,-8.404478,4.412027,7.499045,-4.230346,2.412027,8.222645,-4.756066,2.964812,7.222660,-5.080986,2.964812 + ,6.604620,-4.230346,2.964812,7.222660,-3.379706,2.964812,8.222645,-3.704626,2.964812,7.775430,-5.080986,3.859242,6.775445,-4.756066,3.859242,6.775445,-3.704626,3.859242,7.775430,-3.379706,3.859242 + ,8.393470,-4.230346,3.859242,7.499045,-4.230346,4.412027,6.142784,-8.404463,5.124548,6.866384,-8.930182,5.677333,5.866399,-9.255103,5.677333,5.248359,-8.404463,5.677333,5.866399,-7.553823,5.677333 + ,6.866384,-7.878743,5.677333,6.419168,-9.255103,6.571764,5.419184,-8.930182,6.571764,5.419184,-7.878743,6.571764,6.419168,-7.553823,6.571764,7.037209,-8.404463,6.571764,6.142784,-8.404463,7.124548 + ,1.326691,-9.424635,2.412027,2.050291,-9.950355,2.964812,1.050306,-10.275275,2.964812,0.432266,-9.424635,2.964812,1.050306,-8.573995,2.964812,2.050291,-8.898915,2.964812,1.603076,-10.275275,3.859242 + ,0.603091,-9.950355,3.859242,0.603091,-8.898915,3.859242,1.603076,-8.573995,3.859242,2.221116,-9.424635,3.859242,1.326691,-9.424635,4.412027,8.017102,-5.824745,5.124545,8.740702,-6.350465,5.677330 + ,7.740717,-6.675385,5.677330,7.122677,-5.824745,5.677330,7.740717,-4.974105,5.677330,8.740702,-5.299025,5.677330,8.293488,-6.675385,6.571760,7.293502,-6.350465,6.571760,7.293502,-5.299025,6.571760 + ,8.293488,-4.974105,6.571760,8.911528,-5.824745,6.571760,8.017102,-5.824745,7.124545,2.544168,2.670772,12.321828,3.267767,2.145052,12.874613,2.267782,1.820132,12.874613,1.649743,2.670772,12.874613 + ,2.267782,3.521412,12.874613,3.267767,3.196492,12.874613,2.820553,1.820132,13.769043,1.820568,2.145052,13.769043,1.820568,3.196492,13.769043,2.820553,3.521412,13.769043,3.438592,2.670772,13.769043 + ,2.544168,2.670772,14.321828,-1.356283,-0.985387,14.057414,-0.632683,-1.511107,14.610199,-1.632668,-1.836027,14.610199,-2.250708,-0.985387,14.610199,-1.632668,-0.134748,14.610199,-0.632683,-0.459668,14.610199 + ,-1.079898,-1.836027,15.504629,-2.079883,-1.511107,15.504629,-2.079883,-0.459668,15.504629,-1.079898,-0.134748,15.504629,-0.461858,-0.985387,15.504629,-1.356283,-0.985387,16.057413,5.256689,-7.830291,10.645391 + ,5.980289,-8.356010,11.198175,4.980304,-8.680931,11.198175,4.362264,-7.830291,11.198175,4.980304,-6.979651,11.198175,5.980289,-7.304571,11.198175,5.533073,-8.680931,12.092606,4.533089,-8.356010,12.092606 + ,4.533089,-7.304571,12.092606,5.533073,-6.979651,12.092606,6.151114,-7.830291,12.092606,5.256689,-7.830291,12.645391,2.544168,-7.830276,12.321828,3.267767,-8.355995,12.874613,2.267782,-8.680916,12.874613 + ,1.649743,-7.830276,12.874613,2.267782,-6.979636,12.874613,3.267767,-7.304555,12.874613,2.820553,-8.680916,13.769043,1.820568,-8.355995,13.769043,1.820568,-7.304555,13.769043,2.820553,-6.979636,13.769043 + ,3.438592,-7.830276,13.769043,2.544168,-7.830276,14.321828,0.349705,-9.424635,10.645391,1.073305,-9.950355,11.198175,0.073320,-10.275275,11.198175,-0.544720,-9.424635,11.198175,0.073320,-8.573995,11.198175 + ,1.073305,-8.898915,11.198175,0.626090,-10.275275,12.092606,-0.373895,-9.950355,12.092606,-0.373895,-8.898915,12.092606,0.626090,-8.573995,12.092606,1.244130,-9.424635,12.092606,0.349705,-9.424635,12.645391 + ,-1.356283,-4.174116,14.057414,-0.632683,-4.699836,14.610199,-1.632668,-5.024756,14.610199,-2.250708,-4.174116,14.610199,-1.632668,-3.323476,14.610199,-0.632683,-3.648396,14.610199,-1.079898,-5.024756,15.504629 + ,-2.079883,-4.699836,15.504629,-2.079883,-3.648396,15.504629,-1.079898,-3.323476,15.504629,-0.461858,-4.174116,15.504629,-1.356283,-4.174116,16.057413,7.197190,-5.159481,10.645390,7.920790,-5.685201,11.198174 + ,6.920805,-6.010121,11.198174,6.302765,-5.159481,11.198174,6.920805,-4.308841,11.198174,7.920790,-4.633761,11.198174,7.473575,-6.010121,12.092605,6.473590,-5.685201,12.092605,6.473590,-4.633761,12.092605 + ,7.473575,-4.308841,12.092605,8.091615,-5.159481,12.092605,7.197190,-5.159481,12.645390,6.358982,-2.579751,12.321827,7.082582,-3.105471,12.874612,6.082597,-3.430391,12.874612,5.464557,-2.579751,12.874612 + ,6.082597,-1.729112,12.874612,7.082582,-2.054032,12.874612,6.635367,-3.430391,13.769042,5.635382,-3.105471,13.769042,5.635382,-2.054032,13.769042,6.635367,-1.729112,13.769042,7.253407,-2.579751,13.769042 + ,6.358982,-2.579751,14.321827,1.676396,-5.159503,14.057418,2.399996,-5.685223,14.610203,1.400011,-6.010143,14.610203,0.781971,-5.159503,14.610203,1.400011,-4.308863,14.610203,2.399996,-4.633783,14.610203 + ,1.952781,-6.010143,15.504633,0.952796,-5.685223,15.504633,0.952796,-4.633783,15.504633,1.952781,-4.308863,15.504633,2.570821,-5.159503,15.504633,1.676396,-5.159503,16.057417,3.550714,-2.579751,14.057432 + ,4.274313,-3.105471,14.610217,3.274328,-3.430391,14.610217,2.656289,-2.579751,14.610217,3.274328,-1.729112,14.610217,4.274313,-2.054032,14.610217,3.827099,-3.430391,15.504647,2.827114,-3.105471,15.504647 + ,2.827114,-2.054032,15.504647,3.827099,-1.729112,15.504647,4.445138,-2.579751,15.504647,3.550714,-2.579751,16.057432,1.676396,0.000000,14.057418,2.399996,-0.525720,14.610203,1.400011,-0.850640,14.610203 + ,0.781971,0.000000,14.610203,1.400011,0.850640,14.610203,2.399996,0.525720,14.610203,1.952781,-0.850640,15.504633,0.952796,-0.525720,15.504633,0.952796,0.525720,15.504633,1.952781,0.850640,15.504633 + ,2.570821,0.000000,15.504633,1.676396,0.000000,16.057417,-6.340706,-5.824745,7.932873,-5.617106,-6.350465,8.485658,-6.617091,-6.675385,8.485658,-7.235131,-5.824745,8.485658,-6.617091,-4.974105,8.485658 + ,-5.617106,-5.299025,8.485658,-6.064322,-6.675385,9.380088,-7.064306,-6.350465,9.380088,-7.064306,-5.299025,9.380088,-6.064322,-4.974105,9.380088,-5.446281,-5.824745,9.380088,-6.340706,-5.824745,9.932873 + ,-3.062229,-9.424642,5.124550,-2.338629,-9.950361,5.677335,-3.338614,-10.275282,5.677335,-3.956654,-9.424642,5.677335,-3.338614,-8.574001,5.677335,-2.338629,-8.898922,5.677335,-2.785844,-10.275282,6.571765 + ,-3.785829,-9.950361,6.571765,-3.785829,-8.898922,6.571765,-2.785844,-8.574001,6.571765,-2.167804,-9.424642,6.571765,-3.062229,-9.424642,7.124550,-4.466388,-8.404463,7.932869,-3.742788,-8.930182,8.485654 + ,-4.742773,-9.255103,8.485654,-5.360813,-8.404463,8.485654,-4.742773,-7.553823,8.485654,-3.742788,-7.878743,8.485654,-4.190003,-9.255103,9.380084,-5.189988,-8.930182,9.380084,-5.189988,-7.878743,9.380084 + ,-4.190003,-7.553823,9.380084,-3.571963,-8.404463,9.380084,-4.466388,-8.404463,9.932869,-5.822649,-4.230346,10.645391,-5.099049,-4.756066,11.198175,-6.099034,-5.080986,11.198175,-6.717074,-4.230346,11.198175 + ,-6.099034,-3.379706,11.198175,-5.099049,-3.704626,11.198175,-5.546264,-5.080986,12.092606,-6.546249,-4.756066,12.092606,-6.546249,-3.704626,12.092606,-5.546264,-3.379706,12.092606,-4.928224,-4.230346,12.092606 + ,-5.822649,-4.230346,12.645391,-2.789967,-8.404477,10.645391,-2.066367,-8.930197,11.198175,-3.066352,-9.255117,11.198175,-3.684391,-8.404477,11.198175,-3.066352,-7.553837,11.198175,-2.066367,-7.878757,11.198175 + ,-2.513582,-9.255117,12.092606,-3.513566,-8.930197,12.092606,-3.513566,-7.878757,12.092606,-2.513582,-7.553837,12.092606,-1.895542,-8.404477,12.092606,-2.789967,-8.404477,12.645391,-3.628181,-5.824728,12.321827 + ,-2.904581,-6.350448,12.874612,-3.904566,-6.675367,12.874612,-4.522605,-5.824728,12.874612,-3.904566,-4.974088,12.874612,-2.904581,-5.299007,12.874612,-3.351795,-6.675367,13.769042,-4.351780,-6.350448,13.769042 + ,-4.351780,-5.299007,13.769042,-3.351795,-4.974088,13.769042,-2.733756,-5.824728,13.769042,-3.628181,-5.824728,14.321827,-0.029593,-10.410022,5.124548,0.694007,-10.935741,5.677333,-0.305977,-11.260662,5.677333 + ,-0.924017,-10.410022,5.677333,-0.305977,-9.559381,5.677333,0.694007,-9.884302,5.677333,0.246792,-11.260662,6.571764,-0.753192,-10.935741,6.571764,-0.753192,-9.884302,6.571764,0.246792,-9.559381,6.571764 + ,0.864832,-10.410022,6.571764,-0.029593,-10.410022,7.124548,1.705988,5.250518,7.932869,2.429588,4.724798,8.485654,1.429603,4.399878,8.485654,0.811563,5.250518,8.485654,1.429603,6.101158,8.485654 + ,2.429588,5.776238,8.485654,1.982373,4.399878,9.380084,0.982388,4.724798,9.380084,0.982388,5.776238,9.380084,1.982373,6.101158,9.380084,2.600413,5.250518,9.380084,1.705988,5.250518,9.932869 + ,0.349705,4.265131,10.645390,1.073305,3.739411,11.198174,0.073320,3.414491,11.198174,-0.544720,4.265131,11.198174,0.073320,5.115771,11.198174,1.073305,4.790851,11.198174,0.626090,3.414491,12.092605 + ,-0.373895,3.739411,12.092605,-0.373895,4.790851,12.092605,0.626090,5.115771,12.092605,1.244130,4.265131,12.092605,0.349705,4.265131,12.645390,-6.877061,-0.985410,5.124550,-6.153461,-1.511130,5.677335 + ,-7.153446,-1.836050,5.677335,-7.771486,-0.985410,5.677335,-7.153446,-0.134770,5.677335,-6.153461,-0.459690,5.677335,-6.600676,-1.836050,6.571765,-7.600661,-1.511130,6.571765,-7.600661,-0.459690,6.571765 + ,-6.600676,-0.134770,6.571765,-5.982636,-0.985410,6.571765,-6.877061,-0.985410,7.124550,-3.628180,0.665225,12.321827,-2.904580,0.139505,12.874612,-3.904565,-0.185415,12.874612,-4.522605,0.665225,12.874612 + ,-3.904565,1.515865,12.874612,-2.904580,1.190945,12.874612,-3.351795,-0.185415,13.769042,-4.351780,0.139505,13.769042,-4.351780,1.190945,13.769042,-3.351795,1.515865,13.769042,-2.733755,0.665225,13.769042 + ,-3.628180,0.665225,14.321827,-6.877061,-4.174094,5.124550,-6.153461,-4.699814,5.677335,-7.153446,-5.024734,5.677335,-7.771486,-4.174094,5.677335,-7.153446,-3.323454,5.677335,-6.153461,-3.648374,5.677335 + ,-6.600676,-5.024734,6.571765,-7.600661,-4.699814,6.571765,-7.600661,-3.648374,6.571765,-6.600676,-3.323454,6.571765,-5.982636,-4.174094,6.571765,-6.877061,-4.174094,7.124550,-0.029593,5.250518,5.124548 + ,0.694007,4.724798,5.677333,-0.305978,4.399878,5.677333,-0.924018,5.250518,5.677333,-0.305978,6.101158,5.677333,0.694007,5.776238,5.677333,0.246792,4.399878,6.571764,-0.753193,4.724798,6.571764 + ,-0.753193,5.776238,6.571764,0.246792,6.101158,6.571764,0.864832,5.250518,6.571764,-0.029593,5.250518,7.124548,-6.340707,0.665241,7.932873,-5.617107,0.139521,8.485658,-6.617092,-0.185399,8.485658 + ,-7.235132,0.665241,8.485658,-6.617092,1.515881,8.485658,-5.617107,1.190961,8.485658,-6.064322,-0.185399,9.380088,-7.064307,0.139521,9.380088,-7.064307,1.190961,9.380088,-6.064322,1.515881,9.380088 + ,-5.446282,0.665241,9.380088,-6.340707,0.665241,9.932873,-5.822649,-0.929158,10.645391,-5.099049,-1.454878,11.198175,-6.099034,-1.779798,11.198175,-6.717074,-0.929158,11.198175,-6.099034,-0.078518,11.198175 + ,-5.099049,-0.403438,11.198175,-5.546264,-1.779798,12.092606,-6.546249,-1.454878,12.092606,-6.546249,-0.403438,12.092606,-5.546264,-0.078518,12.092606,-4.928224,-0.929158,12.092606,-5.822649,-0.929158,12.645391 + ,-3.062229,4.265139,5.124550,-2.338629,3.739419,5.677335,-3.338614,3.414499,5.677335,-3.956654,4.265139,5.677335,-3.338614,5.115778,5.677335,-2.338629,4.790859,5.677335,-2.785844,3.414499,6.571765 + ,-3.785829,3.739419,6.571765,-3.785829,4.790859,6.571765,-2.785844,5.115778,6.571765,-2.167804,4.265139,6.571765,-3.062229,4.265139,7.124550,-4.466388,3.244959,7.932869,-3.742788,2.719239,8.485654 + ,-4.742773,2.394319,8.485654,-5.360813,3.244959,8.485654,-4.742773,4.095599,8.485654,-3.742788,3.770679,8.485654,-4.190003,2.394319,9.380084,-5.189988,2.719239,9.380084,-5.189988,3.770679,9.380084 + ,-4.190003,4.095599,9.380084,-3.571963,3.244959,9.380084,-4.466388,3.244959,9.932869,6.142784,3.244959,5.124548,6.866384,2.719239,5.677333,5.866399,2.394319,5.677333,5.248359,3.244959,5.677333 + ,5.866399,4.095599,5.677333,6.866384,3.770679,5.677333,6.419168,2.394319,6.571764,5.419184,2.719239,6.571764,5.419184,3.770679,6.571764,6.419168,4.095599,6.571764,7.037209,3.244959,6.571764 + ,6.142784,3.244959,7.124548,4.466362,3.244974,2.412027,5.189962,2.719254,2.964812,4.189978,2.394334,2.964812,3.571938,3.244974,2.964812,4.189978,4.095614,2.964812,5.189962,3.770694,2.964812 + ,4.742747,2.394334,3.859242,3.742763,2.719254,3.859242,3.742763,3.770694,3.859242,4.742747,4.095614,3.859242,5.360787,3.244974,3.859242,4.466362,3.244974,4.412027,7.197190,-0.000023,10.645390 + ,7.920790,-0.525743,11.198174,6.920805,-0.850663,11.198174,6.302765,-0.000023,11.198174,6.920805,0.850617,11.198174,7.920790,0.525697,11.198174,7.473575,-0.850663,12.092605,6.473590,-0.525743,12.092605 + ,6.473590,0.525697,12.092605,7.473575,0.850617,12.092605,8.091615,-0.000023,12.092605,7.197190,-0.000023,12.645390,4.738625,4.265139,7.932868,5.462224,3.739419,8.485653,4.462240,3.414499,8.485653 + ,3.844200,4.265139,8.485653,4.462240,5.115778,8.485653,5.462224,4.790859,8.485653,5.015009,3.414499,9.380083,4.015025,3.739419,9.380083,4.015025,4.790859,9.380083,5.015009,5.115778,9.380083 + ,5.633049,4.265139,9.380083,4.738625,4.265139,9.932868,8.553456,-0.985410,7.932868,9.277056,-1.511130,8.485653,8.277071,-1.836050,8.485653,7.659031,-0.985410,8.485653,8.277071,-0.134770,8.485653 + ,9.277056,-0.459690,8.485653,8.829842,-1.836050,9.380083,7.829856,-1.511130,9.380083,7.829856,-0.459690,9.380083,8.829842,-0.134770,9.380083,9.447882,-0.985410,9.380083,8.553456,-0.985410,9.932868 + ,8.017102,0.665241,5.124545,8.740702,0.139521,5.677330,7.740717,-0.185399,5.677330,7.122677,0.665241,5.677330,7.740717,1.515881,5.677330,8.740702,1.190961,5.677330,8.293488,-0.185399,6.571760 + ,7.293502,0.139521,6.571760,7.293502,1.190961,6.571760,8.293488,1.515881,6.571760,8.911528,0.665241,6.571760,8.017102,0.665241,7.124545,7.499044,-0.929158,2.412027,8.222645,-1.454878,2.964812 + ,7.222660,-1.779798,2.964812,6.604620,-0.929158,2.964812,7.222660,-0.078518,2.964812,8.222645,-0.403438,2.964812,7.775429,-1.779798,3.859242,6.775445,-1.454878,3.859242,6.775445,-0.403438,3.859242 + ,7.775429,-0.078518,3.859242,8.393469,-0.929158,3.859242,7.499044,-0.929158,4.412027,-0.867772,2.670772,0.735590,-0.144172,2.145052,1.288375,-1.144157,1.820132,1.288375,-1.762197,2.670772,1.288375 + ,-1.144157,3.521412,1.288375,-0.144172,3.196492,1.288375,-0.591387,1.820132,2.182805,-1.591372,2.145052,2.182805,-1.591372,3.196492,2.182805,-0.591387,3.521412,2.182805,0.026653,2.670772,2.182805 + ,-0.867772,2.670772,2.735590,1.326691,4.265131,2.412028,2.050291,3.739411,2.964813,1.050306,3.414491,2.964813,0.432266,4.265131,2.964813,1.050306,5.115771,2.964813,2.050291,4.790851,2.964813 + ,1.603076,3.414491,3.859243,0.603091,3.739411,3.859243,0.603091,4.790851,3.859243,1.603076,5.115771,3.859243,2.221116,4.265131,3.859243,1.326691,4.265131,4.412028,-3.580293,-7.830291,2.412028 + ,-2.856693,-8.356010,2.964813,-3.856678,-8.680931,2.964813,-4.474718,-7.830291,2.964813,-3.856678,-6.979651,2.964813,-2.856693,-7.304571,2.964813,-3.303908,-8.680931,3.859243,-4.303893,-8.356010,3.859243 + ,-4.303893,-7.304571,3.859243,-3.303908,-6.979651,3.859243,-2.685868,-7.830291,3.859243,-3.580293,-7.830291,4.412028,-5.520794,-5.159481,2.412028,-4.797194,-5.685201,2.964813,-5.797179,-6.010120,2.964813 + ,-6.415219,-5.159481,2.964813,-5.797179,-4.308841,2.964813,-4.797194,-4.633760,2.964813,-5.244410,-6.010120,3.859243,-6.244394,-5.685201,3.859243,-6.244394,-4.633760,3.859243,-5.244410,-4.308841,3.859243 + ,-4.626369,-5.159481,3.859243,-5.520794,-5.159481,4.412028,-0.867772,-7.830276,0.735590,-0.144172,-8.355995,1.288375,-1.144157,-8.680916,1.288375,-1.762197,-7.830276,1.288375,-1.144157,-6.979636,1.288375 + ,-0.144172,-7.304555,1.288375,-0.591387,-8.680916,2.182805,-1.591372,-8.355995,2.182805,-1.591372,-7.304555,2.182805,-0.591387,-6.979636,2.182805,0.026653,-7.830276,2.182805,-0.867772,-7.830276,2.735590 + ,5.304576,-5.824728,0.735591,6.028176,-6.350448,1.288376,5.028192,-6.675367,1.288376,4.410151,-5.824728,1.288376,5.028192,-4.974088,1.288376,6.028176,-5.299007,1.288376,5.580961,-6.675367,2.182806 + ,4.580976,-6.350448,2.182806,4.580976,-5.299007,2.182806,5.580961,-4.974088,2.182806,6.199001,-5.824728,2.182806,5.304576,-5.824728,2.735591,5.304575,0.665224,0.735591,6.028175,0.139504,1.288376 + ,5.028191,-0.185416,1.288376,4.410151,0.665224,1.288376,5.028191,1.515864,1.288376,6.028175,1.190944,1.288376,5.580960,-0.185416,2.182806,4.580976,0.139504,2.182806,4.580976,1.190944,2.182806 + ,5.580960,1.515864,2.182806,6.199000,0.665224,2.182806,5.304575,0.665224,2.735591,-1.874318,-2.579752,-1.000015,-1.150718,-3.105472,-0.447230,-2.150703,-3.430392,-0.447230,-2.768743,-2.579752,-0.447230 + ,-2.150703,-1.729112,-0.447230,-1.150718,-2.054032,-0.447230,-1.597933,-3.430392,0.447200,-2.597918,-3.105472,0.447200,-2.597918,-2.054032,0.447200,-1.597933,-1.729112,0.447200,-0.979893,-2.579752,0.447200 + ,-1.874318,-2.579752,0.999985,-5.520794,-0.000023,2.412028,-4.797194,-0.525743,2.964813,-5.797179,-0.850663,2.964813,-6.415219,-0.000023,2.964813,-5.797179,0.850617,2.964813,-4.797194,0.525697,2.964813 + ,-5.244410,-0.850663,3.859243,-6.244394,-0.525743,3.859243,-6.244394,0.525697,3.859243,-5.244410,0.850617,3.859243,-4.626369,-0.000023,3.859243,-5.520794,-0.000023,4.412028,-4.682587,-2.579752,0.735591 + ,-3.958987,-3.105472,1.288375,-4.958972,-3.430392,1.288375,-5.577012,-2.579752,1.288375,-4.958972,-1.729112,1.288375,-3.958987,-2.054032,1.288375,-4.406202,-3.430392,2.182806,-5.406187,-3.105472,2.182806 + ,-5.406187,-2.054032,2.182806,-4.406202,-1.729112,2.182806,-3.788162,-2.579752,2.182806,-4.682587,-2.579752,2.735590,-3.580293,2.670787,2.412028,-2.856693,2.145067,2.964813,-3.856678,1.820147,2.964813 + ,-4.474718,2.670787,2.964813,-3.856678,3.521427,2.964813,-2.856693,3.196507,2.964813,-3.303908,1.820147,3.859243,-4.303893,2.145067,3.859243,-4.303893,3.196507,3.859243,-3.303908,3.521427,3.859243 + ,-2.685868,2.670787,3.859243,-3.580293,2.670787,4.412028,-2.789967,3.244974,10.645391,-2.066367,2.719254,11.198175,-3.066352,2.394334,11.198175,-3.684391,3.244974,11.198175,-3.066352,4.095614,11.198175 + ,-2.066367,3.770694,11.198175,-2.513582,2.394334,12.092606,-3.513566,2.719254,12.092606,-3.513566,3.770694,12.092606,-2.513582,4.095614,12.092606,-1.895542,3.244974,12.092606,-2.789967,3.244974,12.645391 + ,-0.000000,-5.159504,-1.000000,0.723600,-5.685224,-0.447215,-0.276385,-6.010144,-0.447215,-0.894425,-5.159504,-0.447215,-0.276385,-4.308864,-0.447215,0.723600,-4.633784,-0.447215,0.276385,-6.010144,0.447215 + ,-0.723600,-5.685224,0.447215,-0.723600,-4.633784,0.447215,0.276385,-4.308864,0.447215,0.894425,-5.159504,0.447215,-0.000000,-5.159504,1.000000,3.032678,-4.174117,-0.999996,3.756278,-4.699837,-0.447211 + ,2.756293,-5.024756,-0.447211,2.138253,-4.174117,-0.447211,2.756293,-3.323477,-0.447211,3.756278,-3.648397,-0.447211,3.309063,-5.024756,0.447219,2.309078,-4.699837,0.447219,2.309078,-3.648397,0.447219 + ,3.309063,-3.323477,0.447219,3.927103,-4.174117,0.447219,3.032678,-4.174117,1.000004,3.032678,-0.985387,-0.999996,3.756278,-1.511107,-0.447211,2.756293,-1.836027,-0.447211,2.138253,-0.985387,-0.447211 + ,2.756293,-0.134748,-0.447211,3.756278,-0.459668,-0.447211,3.309063,-1.836027,0.447219,2.309078,-1.511107,0.447219,2.309078,-0.459668,0.447219,3.309063,-0.134748,0.447219,3.927103,-0.985387,0.447219 + ,3.032678,-0.985387,1.000004,0.000000,0.000000,-1.000000,0.723600,-0.525720,-0.447215,-0.276385,-0.850640,-0.447215,-0.894425,0.000000,-0.447215,-0.276385,0.850640,-0.447215,0.723600,0.525720,-0.447215 + ,0.276385,-0.850640,0.447215,-0.723600,-0.525720,0.447215,-0.723600,0.525720,0.447215,0.276385,0.850640,0.447215,0.894425,0.000000,0.447215,0.000000,0.000000,1.000000 + PolygonVertexIndex: 2,0,-2,1,0,-6,3,0,-3,4,0,-4,5,0,-5,1,5,-11,2,1,-7,3,2,-8,4,3,-9,5,4,-10,10,6,-2,6,7,-3,7,8,-4 + ,8,9,-5,9,10,-6,6,10,-12,7,6,-12,8,7,-12,9,8,-12,10,9,-12,14,12,-14,13,12,-18,15,12,-15,16,12,-16,17,12,-17,13,17,-23 + ,14,13,-19,15,14,-20,16,15,-21,17,16,-22,22,18,-14,18,19,-15,19,20,-16,20,21,-17,21,22,-18,18,22,-24,19,18,-24,20,19,-24,21,20,-24 + ,22,21,-24,26,24,-26,25,24,-30,27,24,-27,28,24,-28,29,24,-29,25,29,-35,26,25,-31,27,26,-32,28,27,-33,29,28,-34,34,30,-26,30,31,-27 + ,31,32,-28,32,33,-29,33,34,-30,30,34,-36,31,30,-36,32,31,-36,33,32,-36,34,33,-36,38,36,-38,37,36,-42,39,36,-39,40,36,-40,41,36,-41 + ,37,41,-47,38,37,-43,39,38,-44,40,39,-45,41,40,-46,46,42,-38,42,43,-39,43,44,-40,44,45,-41,45,46,-42,42,46,-48,43,42,-48,44,43,-48 + ,45,44,-48,46,45,-48,50,48,-50,49,48,-54,51,48,-51,52,48,-52,53,48,-53,49,53,-59,50,49,-55,51,50,-56,52,51,-57,53,52,-58,58,54,-50 + ,54,55,-51,55,56,-52,56,57,-53,57,58,-54,54,58,-60,55,54,-60,56,55,-60,57,56,-60,58,57,-60,62,60,-62,61,60,-66,63,60,-63,64,60,-64 + ,65,60,-65,61,65,-71,62,61,-67,63,62,-68,64,63,-69,65,64,-70,70,66,-62,66,67,-63,67,68,-64,68,69,-65,69,70,-66,66,70,-72,67,66,-72 + ,68,67,-72,69,68,-72,70,69,-72,74,72,-74,73,72,-78,75,72,-75,76,72,-76,77,72,-77,73,77,-83,74,73,-79,75,74,-80,76,75,-81,77,76,-82 + ,82,78,-74,78,79,-75,79,80,-76,80,81,-77,81,82,-78,78,82,-84,79,78,-84,80,79,-84,81,80,-84,82,81,-84,86,84,-86,85,84,-90,87,84,-87 + ,88,84,-88,89,84,-89,85,89,-95,86,85,-91,87,86,-92,88,87,-93,89,88,-94,94,90,-86,90,91,-87,91,92,-88,92,93,-89,93,94,-90,90,94,-96 + ,91,90,-96,92,91,-96,93,92,-96,94,93,-96,98,96,-98,97,96,-102,99,96,-99,100,96,-100,101,96,-101,97,101,-107,98,97,-103,99,98,-104,100,99,-105 + ,101,100,-106,106,102,-98,102,103,-99,103,104,-100,104,105,-101,105,106,-102,102,106,-108,103,102,-108,104,103,-108,105,104,-108,106,105,-108,110,108,-110,109,108,-114 + ,111,108,-111,112,108,-112,113,108,-113,109,113,-119,110,109,-115,111,110,-116,112,111,-117,113,112,-118,118,114,-110,114,115,-111,115,116,-112,116,117,-113,117,118,-114 + ,114,118,-120,115,114,-120,116,115,-120,117,116,-120,118,117,-120,122,120,-122,121,120,-126,123,120,-123,124,120,-124,125,120,-125,121,125,-131,122,121,-127,123,122,-128 + ,124,123,-129,125,124,-130,130,126,-122,126,127,-123,127,128,-124,128,129,-125,129,130,-126,126,130,-132,127,126,-132,128,127,-132,129,128,-132,130,129,-132,134,132,-134 + ,133,132,-138,135,132,-135,136,132,-136,137,132,-137,133,137,-143,134,133,-139,135,134,-140,136,135,-141,137,136,-142,142,138,-134,138,139,-135,139,140,-136,140,141,-137 + ,141,142,-138,138,142,-144,139,138,-144,140,139,-144,141,140,-144,142,141,-144,146,144,-146,145,144,-150,147,144,-147,148,144,-148,149,144,-149,145,149,-155,146,145,-151 + ,147,146,-152,148,147,-153,149,148,-154,154,150,-146,150,151,-147,151,152,-148,152,153,-149,153,154,-150,150,154,-156,151,150,-156,152,151,-156,153,152,-156,154,153,-156 + ,158,156,-158,157,156,-162,159,156,-159,160,156,-160,161,156,-161,157,161,-167,158,157,-163,159,158,-164,160,159,-165,161,160,-166,166,162,-158,162,163,-159,163,164,-160 + ,164,165,-161,165,166,-162,162,166,-168,163,162,-168,164,163,-168,165,164,-168,166,165,-168,170,168,-170,169,168,-174,171,168,-171,172,168,-172,173,168,-173,169,173,-179 + ,170,169,-175,171,170,-176,172,171,-177,173,172,-178,178,174,-170,174,175,-171,175,176,-172,176,177,-173,177,178,-174,174,178,-180,175,174,-180,176,175,-180,177,176,-180 + ,178,177,-180,182,180,-182,181,180,-186,183,180,-183,184,180,-184,185,180,-185,181,185,-191,182,181,-187,183,182,-188,184,183,-189,185,184,-190,190,186,-182,186,187,-183 + ,187,188,-184,188,189,-185,189,190,-186,186,190,-192,187,186,-192,188,187,-192,189,188,-192,190,189,-192,194,192,-194,193,192,-198,195,192,-195,196,192,-196,197,192,-197 + ,193,197,-203,194,193,-199,195,194,-200,196,195,-201,197,196,-202,202,198,-194,198,199,-195,199,200,-196,200,201,-197,201,202,-198,198,202,-204,199,198,-204,200,199,-204 + ,201,200,-204,202,201,-204,206,204,-206,205,204,-210,207,204,-207,208,204,-208,209,204,-209,205,209,-215,206,205,-211,207,206,-212,208,207,-213,209,208,-214,214,210,-206 + ,210,211,-207,211,212,-208,212,213,-209,213,214,-210,210,214,-216,211,210,-216,212,211,-216,213,212,-216,214,213,-216,218,216,-218,217,216,-222,219,216,-219,220,216,-220 + ,221,216,-221,217,221,-227,218,217,-223,219,218,-224,220,219,-225,221,220,-226,226,222,-218,222,223,-219,223,224,-220,224,225,-221,225,226,-222,222,226,-228,223,222,-228 + ,224,223,-228,225,224,-228,226,225,-228,230,228,-230,229,228,-234,231,228,-231,232,228,-232,233,228,-233,229,233,-239,230,229,-235,231,230,-236,232,231,-237,233,232,-238 + ,238,234,-230,234,235,-231,235,236,-232,236,237,-233,237,238,-234,234,238,-240,235,234,-240,236,235,-240,237,236,-240,238,237,-240,242,240,-242,241,240,-246,243,240,-243 + ,244,240,-244,245,240,-245,241,245,-251,242,241,-247,243,242,-248,244,243,-249,245,244,-250,250,246,-242,246,247,-243,247,248,-244,248,249,-245,249,250,-246,246,250,-252 + ,247,246,-252,248,247,-252,249,248,-252,250,249,-252,254,252,-254,253,252,-258,255,252,-255,256,252,-256,257,252,-257,253,257,-263,254,253,-259,255,254,-260,256,255,-261 + ,257,256,-262,262,258,-254,258,259,-255,259,260,-256,260,261,-257,261,262,-258,258,262,-264,259,258,-264,260,259,-264,261,260,-264,262,261,-264,266,264,-266,265,264,-270 + ,267,264,-267,268,264,-268,269,264,-269,265,269,-275,266,265,-271,267,266,-272,268,267,-273,269,268,-274,274,270,-266,270,271,-267,271,272,-268,272,273,-269,273,274,-270 + ,270,274,-276,271,270,-276,272,271,-276,273,272,-276,274,273,-276,278,276,-278,277,276,-282,279,276,-279,280,276,-280,281,276,-281,277,281,-287,278,277,-283,279,278,-284 + ,280,279,-285,281,280,-286,286,282,-278,282,283,-279,283,284,-280,284,285,-281,285,286,-282,282,286,-288,283,282,-288,284,283,-288,285,284,-288,286,285,-288,290,288,-290 + ,289,288,-294,291,288,-291,292,288,-292,293,288,-293,289,293,-299,290,289,-295,291,290,-296,292,291,-297,293,292,-298,298,294,-290,294,295,-291,295,296,-292,296,297,-293 + ,297,298,-294,294,298,-300,295,294,-300,296,295,-300,297,296,-300,298,297,-300,302,300,-302,301,300,-306,303,300,-303,304,300,-304,305,300,-305,301,305,-311,302,301,-307 + ,303,302,-308,304,303,-309,305,304,-310,310,306,-302,306,307,-303,307,308,-304,308,309,-305,309,310,-306,306,310,-312,307,306,-312,308,307,-312,309,308,-312,310,309,-312 + ,314,312,-314,313,312,-318,315,312,-315,316,312,-316,317,312,-317,313,317,-323,314,313,-319,315,314,-320,316,315,-321,317,316,-322,322,318,-314,318,319,-315,319,320,-316 + ,320,321,-317,321,322,-318,318,322,-324,319,318,-324,320,319,-324,321,320,-324,322,321,-324,326,324,-326,325,324,-330,327,324,-327,328,324,-328,329,324,-329,325,329,-335 + ,326,325,-331,327,326,-332,328,327,-333,329,328,-334,334,330,-326,330,331,-327,331,332,-328,332,333,-329,333,334,-330,330,334,-336,331,330,-336,332,331,-336,333,332,-336 + ,334,333,-336,338,336,-338,337,336,-342,339,336,-339,340,336,-340,341,336,-341,337,341,-347,338,337,-343,339,338,-344,340,339,-345,341,340,-346,346,342,-338,342,343,-339 + ,343,344,-340,344,345,-341,345,346,-342,342,346,-348,343,342,-348,344,343,-348,345,344,-348,346,345,-348,350,348,-350,349,348,-354,351,348,-351,352,348,-352,353,348,-353 + ,349,353,-359,350,349,-355,351,350,-356,352,351,-357,353,352,-358,358,354,-350,354,355,-351,355,356,-352,356,357,-353,357,358,-354,354,358,-360,355,354,-360,356,355,-360 + ,357,356,-360,358,357,-360,362,360,-362,361,360,-366,363,360,-363,364,360,-364,365,360,-365,361,365,-371,362,361,-367,363,362,-368,364,363,-369,365,364,-370,370,366,-362 + ,366,367,-363,367,368,-364,368,369,-365,369,370,-366,366,370,-372,367,366,-372,368,367,-372,369,368,-372,370,369,-372,374,372,-374,373,372,-378,375,372,-375,376,372,-376 + ,377,372,-377,373,377,-383,374,373,-379,375,374,-380,376,375,-381,377,376,-382,382,378,-374,378,379,-375,379,380,-376,380,381,-377,381,382,-378,378,382,-384,379,378,-384 + ,380,379,-384,381,380,-384,382,381,-384,386,384,-386,385,384,-390,387,384,-387,388,384,-388,389,384,-389,385,389,-395,386,385,-391,387,386,-392,388,387,-393,389,388,-394 + ,394,390,-386,390,391,-387,391,392,-388,392,393,-389,393,394,-390,390,394,-396,391,390,-396,392,391,-396,393,392,-396,394,393,-396,398,396,-398,397,396,-402,399,396,-399 + ,400,396,-400,401,396,-401,397,401,-407,398,397,-403,399,398,-404,400,399,-405,401,400,-406,406,402,-398,402,403,-399,403,404,-400,404,405,-401,405,406,-402,402,406,-408 + ,403,402,-408,404,403,-408,405,404,-408,406,405,-408,410,408,-410,409,408,-414,411,408,-411,412,408,-412,413,408,-413,409,413,-419,410,409,-415,411,410,-416,412,411,-417 + ,413,412,-418,418,414,-410,414,415,-411,415,416,-412,416,417,-413,417,418,-414,414,418,-420,415,414,-420,416,415,-420,417,416,-420,418,417,-420,422,420,-422,421,420,-426 + ,423,420,-423,424,420,-424,425,420,-425,421,425,-431,422,421,-427,423,422,-428,424,423,-429,425,424,-430,430,426,-422,426,427,-423,427,428,-424,428,429,-425,429,430,-426 + ,426,430,-432,427,426,-432,428,427,-432,429,428,-432,430,429,-432,434,432,-434,433,432,-438,435,432,-435,436,432,-436,437,432,-437,433,437,-443,434,433,-439,435,434,-440 + ,436,435,-441,437,436,-442,442,438,-434,438,439,-435,439,440,-436,440,441,-437,441,442,-438,438,442,-444,439,438,-444,440,439,-444,441,440,-444,442,441,-444,446,444,-446 + ,445,444,-450,447,444,-447,448,444,-448,449,444,-449,445,449,-455,446,445,-451,447,446,-452,448,447,-453,449,448,-454,454,450,-446,450,451,-447,451,452,-448,452,453,-449 + ,453,454,-450,450,454,-456,451,450,-456,452,451,-456,453,452,-456,454,453,-456,458,456,-458,457,456,-462,459,456,-459,460,456,-460,461,456,-461,457,461,-467,458,457,-463 + ,459,458,-464,460,459,-465,461,460,-466,466,462,-458,462,463,-459,463,464,-460,464,465,-461,465,466,-462,462,466,-468,463,462,-468,464,463,-468,465,464,-468,466,465,-468 + ,470,468,-470,469,468,-474,471,468,-471,472,468,-472,473,468,-473,469,473,-479,470,469,-475,471,470,-476,472,471,-477,473,472,-478,478,474,-470,474,475,-471,475,476,-472 + ,476,477,-473,477,478,-474,474,478,-480,475,474,-480,476,475,-480,477,476,-480,478,477,-480,482,480,-482,481,480,-486,483,480,-483,484,480,-484,485,480,-485,481,485,-491 + ,482,481,-487,483,482,-488,484,483,-489,485,484,-490,490,486,-482,486,487,-483,487,488,-484,488,489,-485,489,490,-486,486,490,-492,487,486,-492,488,487,-492,489,488,-492 + ,490,489,-492,494,492,-494,493,492,-498,495,492,-495,496,492,-496,497,492,-497,493,497,-503,494,493,-499,495,494,-500,496,495,-501,497,496,-502,502,498,-494,498,499,-495 + ,499,500,-496,500,501,-497,501,502,-498,498,502,-504,499,498,-504,500,499,-504,501,500,-504,502,501,-504,506,504,-506,505,504,-510,507,504,-507,508,504,-508,509,504,-509 + ,505,509,-515,506,505,-511,507,506,-512,508,507,-513,509,508,-514,514,510,-506,510,511,-507,511,512,-508,512,513,-509,513,514,-510,510,514,-516,511,510,-516,512,511,-516 + ,513,512,-516,514,513,-516,518,516,-518,517,516,-522,519,516,-519,520,516,-520,521,516,-521,517,521,-527,518,517,-523,519,518,-524,520,519,-525,521,520,-526,526,522,-518 + ,522,523,-519,523,524,-520,524,525,-521,525,526,-522,522,526,-528,523,522,-528,524,523,-528,525,524,-528,526,525,-528,530,528,-530,529,528,-534,531,528,-531,532,528,-532 + ,533,528,-533,529,533,-539,530,529,-535,531,530,-536,532,531,-537,533,532,-538,538,534,-530,534,535,-531,535,536,-532,536,537,-533,537,538,-534,534,538,-540,535,534,-540 + ,536,535,-540,537,536,-540,538,537,-540,542,540,-542,541,540,-546,543,540,-543,544,540,-544,545,540,-545,541,545,-551,542,541,-547,543,542,-548,544,543,-549,545,544,-550 + ,550,546,-542,546,547,-543,547,548,-544,548,549,-545,549,550,-546,546,550,-552,547,546,-552,548,547,-552,549,548,-552,550,549,-552,554,552,-554,553,552,-558,555,552,-555 + ,556,552,-556,557,552,-557,553,557,-563,554,553,-559,555,554,-560,556,555,-561,557,556,-562,562,558,-554,558,559,-555,559,560,-556,560,561,-557,561,562,-558,558,562,-564 + ,559,558,-564,560,559,-564,561,560,-564,562,561,-564,566,564,-566,565,564,-570,567,564,-567,568,564,-568,569,564,-569,565,569,-575,566,565,-571,567,566,-572,568,567,-573 + ,569,568,-574,574,570,-566,570,571,-567,571,572,-568,572,573,-569,573,574,-570,570,574,-576,571,570,-576,572,571,-576,573,572,-576,574,573,-576,578,576,-578,577,576,-582 + ,579,576,-579,580,576,-580,581,576,-581,577,581,-587,578,577,-583,579,578,-584,580,579,-585,581,580,-586,586,582,-578,582,583,-579,583,584,-580,584,585,-581,585,586,-582 + ,582,586,-588,583,582,-588,584,583,-588,585,584,-588,586,585,-588,590,588,-590,589,588,-594,591,588,-591,592,588,-592,593,588,-593,589,593,-599,590,589,-595,591,590,-596 + ,592,591,-597,593,592,-598,598,594,-590,594,595,-591,595,596,-592,596,597,-593,597,598,-594,594,598,-600,595,594,-600,596,595,-600,597,596,-600,598,597,-600,602,600,-602 + ,601,600,-606,603,600,-603,604,600,-604,605,600,-605,601,605,-611,602,601,-607,603,602,-608,604,603,-609,605,604,-610,610,606,-602,606,607,-603,607,608,-604,608,609,-605 + ,609,610,-606,606,610,-612,607,606,-612,608,607,-612,609,608,-612,610,609,-612,614,612,-614,613,612,-618,615,612,-615,616,612,-616,617,612,-617,613,617,-623,614,613,-619 + ,615,614,-620,616,615,-621,617,616,-622,622,618,-614,618,619,-615,619,620,-616,620,621,-617,621,622,-618,618,622,-624,619,618,-624,620,619,-624,621,620,-624,622,621,-624 + ,626,624,-626,625,624,-630,627,624,-627,628,624,-628,629,624,-629,625,629,-635,626,625,-631,627,626,-632,628,627,-633,629,628,-634,634,630,-626,630,631,-627,631,632,-628 + ,632,633,-629,633,634,-630,630,634,-636,631,630,-636,632,631,-636,633,632,-636,634,633,-636,638,636,-638,637,636,-642,639,636,-639,640,636,-640,641,636,-641,637,641,-647 + ,638,637,-643,639,638,-644,640,639,-645,641,640,-646,646,642,-638,642,643,-639,643,644,-640,644,645,-641,645,646,-642,642,646,-648,643,642,-648,644,643,-648,645,644,-648 + ,646,645,-648,650,648,-650,649,648,-654,651,648,-651,652,648,-652,653,648,-653,649,653,-659,650,649,-655,651,650,-656,652,651,-657,653,652,-658,658,654,-650,654,655,-651 + ,655,656,-652,656,657,-653,657,658,-654,654,658,-660,655,654,-660,656,655,-660,657,656,-660,658,657,-660,662,660,-662,661,660,-666,663,660,-663,664,660,-664,665,660,-665 + ,661,665,-671,662,661,-667,663,662,-668,664,663,-669,665,664,-670,670,666,-662,666,667,-663,667,668,-664,668,669,-665,669,670,-666,666,670,-672,667,666,-672,668,667,-672 + ,669,668,-672,670,669,-672,674,672,-674,673,672,-678,675,672,-675,676,672,-676,677,672,-677,673,677,-683,674,673,-679,675,674,-680,676,675,-681,677,676,-682,682,678,-674 + ,678,679,-675,679,680,-676,680,681,-677,681,682,-678,678,682,-684,679,678,-684,680,679,-684,681,680,-684,682,681,-684,686,684,-686,685,684,-690,687,684,-687,688,684,-688 + ,689,684,-689,685,689,-695,686,685,-691,687,686,-692,688,687,-693,689,688,-694,694,690,-686,690,691,-687,691,692,-688,692,693,-689,693,694,-690,690,694,-696,691,690,-696 + ,692,691,-696,693,692,-696,694,693,-696,698,696,-698,697,696,-702,699,696,-699,700,696,-700,701,696,-701,697,701,-707,698,697,-703,699,698,-704,700,699,-705,701,700,-706 + ,706,702,-698,702,703,-699,703,704,-700,704,705,-701,705,706,-702,702,706,-708,703,702,-708,704,703,-708,705,704,-708,706,705,-708,710,708,-710,709,708,-714,711,708,-711 + ,712,708,-712,713,708,-713,709,713,-719,710,709,-715,711,710,-716,712,711,-717,713,712,-718,718,714,-710,714,715,-711,715,716,-712,716,717,-713,717,718,-714,714,718,-720 + ,715,714,-720,716,715,-720,717,716,-720,718,717,-720 + Edges: 0,1,0,2,1,2,0,5,1,5,0,3,2,3,0,4,3,4,4,5,5,10,1,10,1,6 + ,2,6,2,7,3,7,3,8,4,8,4,9,5,9,6,10,6,7,7,8,8,9,9,10,10,11 + ,6,11,7,11,8,11,9,11,12,13,12,14,13,14,12,17,13,17,12,15,14,15,12,16,15,16 + ,16,17,17,22,13,22,13,18,14,18,14,19,15,19,15,20,16,20,16,21,17,21,18,22,18,19 + ,19,20,20,21,21,22,22,23,18,23,19,23,20,23,21,23,24,25,24,26,25,26,24,29,25,29 + ,24,27,26,27,24,28,27,28,28,29,29,34,25,34,25,30,26,30,26,31,27,31,27,32,28,32 + ,28,33,29,33,30,34,30,31,31,32,32,33,33,34,34,35,30,35,31,35,32,35,33,35,36,37 + ,36,38,37,38,36,41,37,41,36,39,38,39,36,40,39,40,40,41,41,46,37,46,37,42,38,42 + ,38,43,39,43,39,44,40,44,40,45,41,45,42,46,42,43,43,44,44,45,45,46,46,47,42,47 + ,43,47,44,47,45,47,48,49,48,50,49,50,48,53,49,53,48,51,50,51,48,52,51,52,52,53 + ,53,58,49,58,49,54,50,54,50,55,51,55,51,56,52,56,52,57,53,57,54,58,54,55,55,56 + ,56,57,57,58,58,59,54,59,55,59,56,59,57,59,60,61,60,62,61,62,60,65,61,65,60,63 + ,62,63,60,64,63,64,64,65,65,70,61,70,61,66,62,66,62,67,63,67,63,68,64,68,64,69 + ,65,69,66,70,66,67,67,68,68,69,69,70,70,71,66,71,67,71,68,71,69,71,72,73,72,74 + ,73,74,72,77,73,77,72,75,74,75,72,76,75,76,76,77,77,82,73,82,73,78,74,78,74,79 + ,75,79,75,80,76,80,76,81,77,81,78,82,78,79,79,80,80,81,81,82,82,83,78,83,79,83 + ,80,83,81,83,84,85,84,86,85,86,84,89,85,89,84,87,86,87,84,88,87,88,88,89,89,94 + ,85,94,85,90,86,90,86,91,87,91,87,92,88,92,88,93,89,93,90,94,90,91,91,92,92,93 + ,93,94,94,95,90,95,91,95,92,95,93,95,96,97,96,98,97,98,96,101,97,101,96,99,98,99 + ,96,100,99,100,100,101,101,106,97,106,97,102,98,102,98,103,99,103,99,104,100,104,100,105,101,105 + ,102,106,102,103,103,104,104,105,105,106,106,107,102,107,103,107,104,107,105,107,108,109,108,110,109,110 + ,108,113,109,113,108,111,110,111,108,112,111,112,112,113,113,118,109,118,109,114,110,114,110,115,111,115 + ,111,116,112,116,112,117,113,117,114,118,114,115,115,116,116,117,117,118,118,119,114,119,115,119,116,119 + ,117,119,120,121,120,122,121,122,120,125,121,125,120,123,122,123,120,124,123,124,124,125,125,130,121,130 + ,121,126,122,126,122,127,123,127,123,128,124,128,124,129,125,129,126,130,126,127,127,128,128,129,129,130 + ,130,131,126,131,127,131,128,131,129,131,132,133,132,134,133,134,132,137,133,137,132,135,134,135,132,136 + ,135,136,136,137,137,142,133,142,133,138,134,138,134,139,135,139,135,140,136,140,136,141,137,141,138,142 + ,138,139,139,140,140,141,141,142,142,143,138,143,139,143,140,143,141,143,144,145,144,146,145,146,144,149 + ,145,149,144,147,146,147,144,148,147,148,148,149,149,154,145,154,145,150,146,150,146,151,147,151,147,152 + ,148,152,148,153,149,153,150,154,150,151,151,152,152,153,153,154,154,155,150,155,151,155,152,155,153,155 + ,156,157,156,158,157,158,156,161,157,161,156,159,158,159,156,160,159,160,160,161,161,166,157,166,157,162 + ,158,162,158,163,159,163,159,164,160,164,160,165,161,165,162,166,162,163,163,164,164,165,165,166,166,167 + ,162,167,163,167,164,167,165,167,168,169,168,170,169,170,168,173,169,173,168,171,170,171,168,172,171,172 + ,172,173,173,178,169,178,169,174,170,174,170,175,171,175,171,176,172,176,172,177,173,177,174,178,174,175 + ,175,176,176,177,177,178,178,179,174,179,175,179,176,179,177,179,180,181,180,182,181,182,180,185,181,185 + ,180,183,182,183,180,184,183,184,184,185,185,190,181,190,181,186,182,186,182,187,183,187,183,188,184,188 + ,184,189,185,189,186,190,186,187,187,188,188,189,189,190,190,191,186,191,187,191,188,191,189,191,192,193 + ,192,194,193,194,192,197,193,197,192,195,194,195,192,196,195,196,196,197,197,202,193,202,193,198,194,198 + ,194,199,195,199,195,200,196,200,196,201,197,201,198,202,198,199,199,200,200,201,201,202,202,203,198,203 + ,199,203,200,203,201,203,204,205,204,206,205,206,204,209,205,209,204,207,206,207,204,208,207,208,208,209 + ,209,214,205,214,205,210,206,210,206,211,207,211,207,212,208,212,208,213,209,213,210,214,210,211,211,212 + ,212,213,213,214,214,215,210,215,211,215,212,215,213,215,216,217,216,218,217,218,216,221,217,221,216,219 + ,218,219,216,220,219,220,220,221,221,226,217,226,217,222,218,222,218,223,219,223,219,224,220,224,220,225 + ,221,225,222,226,222,223,223,224,224,225,225,226,226,227,222,227,223,227,224,227,225,227,228,229,228,230 + ,229,230,228,233,229,233,228,231,230,231,228,232,231,232,232,233,233,238,229,238,229,234,230,234,230,235 + ,231,235,231,236,232,236,232,237,233,237,234,238,234,235,235,236,236,237,237,238,238,239,234,239,235,239 + ,236,239,237,239,240,241,240,242,241,242,240,245,241,245,240,243,242,243,240,244,243,244,244,245,245,250 + ,241,250,241,246,242,246,242,247,243,247,243,248,244,248,244,249,245,249,246,250,246,247,247,248,248,249 + ,249,250,250,251,246,251,247,251,248,251,249,251,252,253,252,254,253,254,252,257,253,257,252,255,254,255 + ,252,256,255,256,256,257,257,262,253,262,253,258,254,258,254,259,255,259,255,260,256,260,256,261,257,261 + ,258,262,258,259,259,260,260,261,261,262,262,263,258,263,259,263,260,263,261,263,264,265,264,266,265,266 + ,264,269,265,269,264,267,266,267,264,268,267,268,268,269,269,274,265,274,265,270,266,270,266,271,267,271 + ,267,272,268,272,268,273,269,273,270,274,270,271,271,272,272,273,273,274,274,275,270,275,271,275,272,275 + ,273,275,276,277,276,278,277,278,276,281,277,281,276,279,278,279,276,280,279,280,280,281,281,286,277,286 + ,277,282,278,282,278,283,279,283,279,284,280,284,280,285,281,285,282,286,282,283,283,284,284,285,285,286 + ,286,287,282,287,283,287,284,287,285,287,288,289,288,290,289,290,288,293,289,293,288,291,290,291,288,292 + ,291,292,292,293,293,298,289,298,289,294,290,294,290,295,291,295,291,296,292,296,292,297,293,297,294,298 + ,294,295,295,296,296,297,297,298,298,299,294,299,295,299,296,299,297,299,300,301,300,302,301,302,300,305 + ,301,305,300,303,302,303,300,304,303,304,304,305,305,310,301,310,301,306,302,306,302,307,303,307,303,308 + ,304,308,304,309,305,309,306,310,306,307,307,308,308,309,309,310,310,311,306,311,307,311,308,311,309,311 + ,312,313,312,314,313,314,312,317,313,317,312,315,314,315,312,316,315,316,316,317,317,322,313,322,313,318 + ,314,318,314,319,315,319,315,320,316,320,316,321,317,321,318,322,318,319,319,320,320,321,321,322,322,323 + ,318,323,319,323,320,323,321,323,324,325,324,326,325,326,324,329,325,329,324,327,326,327,324,328,327,328 + ,328,329,329,334,325,334,325,330,326,330,326,331,327,331,327,332,328,332,328,333,329,333,330,334,330,331 + ,331,332,332,333,333,334,334,335,330,335,331,335,332,335,333,335,336,337,336,338,337,338,336,341,337,341 + ,336,339,338,339,336,340,339,340,340,341,341,346,337,346,337,342,338,342,338,343,339,343,339,344,340,344 + ,340,345,341,345,342,346,342,343,343,344,344,345,345,346,346,347,342,347,343,347,344,347,345,347,348,349 + ,348,350,349,350,348,353,349,353,348,351,350,351,348,352,351,352,352,353,353,358,349,358,349,354,350,354 + ,350,355,351,355,351,356,352,356,352,357,353,357,354,358,354,355,355,356,356,357,357,358,358,359,354,359 + ,355,359,356,359,357,359,360,361,360,362,361,362,360,365,361,365,360,363,362,363,360,364,363,364,364,365 + ,365,370,361,370,361,366,362,366,362,367,363,367,363,368,364,368,364,369,365,369,366,370,366,367,367,368 + ,368,369,369,370,370,371,366,371,367,371,368,371,369,371,372,373,372,374,373,374,372,377,373,377,372,375 + ,374,375,372,376,375,376,376,377,377,382,373,382,373,378,374,378,374,379,375,379,375,380,376,380,376,381 + ,377,381,378,382,378,379,379,380,380,381,381,382,382,383,378,383,379,383,380,383,381,383,384,385,384,386 + ,385,386,384,389,385,389,384,387,386,387,384,388,387,388,388,389,389,394,385,394,385,390,386,390,386,391 + ,387,391,387,392,388,392,388,393,389,393,390,394,390,391,391,392,392,393,393,394,394,395,390,395,391,395 + ,392,395,393,395,396,397,396,398,397,398,396,401,397,401,396,399,398,399,396,400,399,400,400,401,401,406 + ,397,406,397,402,398,402,398,403,399,403,399,404,400,404,400,405,401,405,402,406,402,403,403,404,404,405 + ,405,406,406,407,402,407,403,407,404,407,405,407,408,409,408,410,409,410,408,413,409,413,408,411,410,411 + ,408,412,411,412,412,413,413,418,409,418,409,414,410,414,410,415,411,415,411,416,412,416,412,417,413,417 + ,414,418,414,415,415,416,416,417,417,418,418,419,414,419,415,419,416,419,417,419,420,421,420,422,421,422 + ,420,425,421,425,420,423,422,423,420,424,423,424,424,425,425,430,421,430,421,426,422,426,422,427,423,427 + ,423,428,424,428,424,429,425,429,426,430,426,427,427,428,428,429,429,430,430,431,426,431,427,431,428,431 + ,429,431,432,433,432,434,433,434,432,437,433,437,432,435,434,435,432,436,435,436,436,437,437,442,433,442 + ,433,438,434,438,434,439,435,439,435,440,436,440,436,441,437,441,438,442,438,439,439,440,440,441,441,442 + ,442,443,438,443,439,443,440,443,441,443,444,445,444,446,445,446,444,449,445,449,444,447,446,447,444,448 + ,447,448,448,449,449,454,445,454,445,450,446,450,446,451,447,451,447,452,448,452,448,453,449,453,450,454 + ,450,451,451,452,452,453,453,454,454,455,450,455,451,455,452,455,453,455,456,457,456,458,457,458,456,461 + ,457,461,456,459,458,459,456,460,459,460,460,461,461,466,457,466,457,462,458,462,458,463,459,463,459,464 + ,460,464,460,465,461,465,462,466,462,463,463,464,464,465,465,466,466,467,462,467,463,467,464,467,465,467 + ,468,469,468,470,469,470,468,473,469,473,468,471,470,471,468,472,471,472,472,473,473,478,469,478,469,474 + ,470,474,470,475,471,475,471,476,472,476,472,477,473,477,474,478,474,475,475,476,476,477,477,478,478,479 + ,474,479,475,479,476,479,477,479,480,481,480,482,481,482,480,485,481,485,480,483,482,483,480,484,483,484 + ,484,485,485,490,481,490,481,486,482,486,482,487,483,487,483,488,484,488,484,489,485,489,486,490,486,487 + ,487,488,488,489,489,490,490,491,486,491,487,491,488,491,489,491,492,493,492,494,493,494,492,497,493,497 + ,492,495,494,495,492,496,495,496,496,497,497,502,493,502,493,498,494,498,494,499,495,499,495,500,496,500 + ,496,501,497,501,498,502,498,499,499,500,500,501,501,502,502,503,498,503,499,503,500,503,501,503,504,505 + ,504,506,505,506,504,509,505,509,504,507,506,507,504,508,507,508,508,509,509,514,505,514,505,510,506,510 + ,506,511,507,511,507,512,508,512,508,513,509,513,510,514,510,511,511,512,512,513,513,514,514,515,510,515 + ,511,515,512,515,513,515,516,517,516,518,517,518,516,521,517,521,516,519,518,519,516,520,519,520,520,521 + ,521,526,517,526,517,522,518,522,518,523,519,523,519,524,520,524,520,525,521,525,522,526,522,523,523,524 + ,524,525,525,526,526,527,522,527,523,527,524,527,525,527,528,529,528,530,529,530,528,533,529,533,528,531 + ,530,531,528,532,531,532,532,533,533,538,529,538,529,534,530,534,530,535,531,535,531,536,532,536,532,537 + ,533,537,534,538,534,535,535,536,536,537,537,538,538,539,534,539,535,539,536,539,537,539,540,541,540,542 + ,541,542,540,545,541,545,540,543,542,543,540,544,543,544,544,545,545,550,541,550,541,546,542,546,542,547 + ,543,547,543,548,544,548,544,549,545,549,546,550,546,547,547,548,548,549,549,550,550,551,546,551,547,551 + ,548,551,549,551,552,553,552,554,553,554,552,557,553,557,552,555,554,555,552,556,555,556,556,557,557,562 + ,553,562,553,558,554,558,554,559,555,559,555,560,556,560,556,561,557,561,558,562,558,559,559,560,560,561 + ,561,562,562,563,558,563,559,563,560,563,561,563,564,565,564,566,565,566,564,569,565,569,564,567,566,567 + ,564,568,567,568,568,569,569,574,565,574,565,570,566,570,566,571,567,571,567,572,568,572,568,573,569,573 + ,570,574,570,571,571,572,572,573,573,574,574,575,570,575,571,575,572,575,573,575,576,577,576,578,577,578 + ,576,581,577,581,576,579,578,579,576,580,579,580,580,581,581,586,577,586,577,582,578,582,578,583,579,583 + ,579,584,580,584,580,585,581,585,582,586,582,583,583,584,584,585,585,586,586,587,582,587,583,587,584,587 + ,585,587,588,589,588,590,589,590,588,593,589,593,588,591,590,591,588,592,591,592,592,593,593,598,589,598 + ,589,594,590,594,590,595,591,595,591,596,592,596,592,597,593,597,594,598,594,595,595,596,596,597,597,598 + ,598,599,594,599,595,599,596,599,597,599,600,601,600,602,601,602,600,605,601,605,600,603,602,603,600,604 + ,603,604,604,605,605,610,601,610,601,606,602,606,602,607,603,607,603,608,604,608,604,609,605,609,606,610 + ,606,607,607,608,608,609,609,610,610,611,606,611,607,611,608,611,609,611,612,613,612,614,613,614,612,617 + ,613,617,612,615,614,615,612,616,615,616,616,617,617,622,613,622,613,618,614,618,614,619,615,619,615,620 + ,616,620,616,621,617,621,618,622,618,619,619,620,620,621,621,622,622,623,618,623,619,623,620,623,621,623 + ,624,625,624,626,625,626,624,629,625,629,624,627,626,627,624,628,627,628,628,629,629,634,625,634,625,630 + ,626,630,626,631,627,631,627,632,628,632,628,633,629,633,630,634,630,631,631,632,632,633,633,634,634,635 + ,630,635,631,635,632,635,633,635,636,637,636,638,637,638,636,641,637,641,636,639,638,639,636,640,639,640 + ,640,641,641,646,637,646,637,642,638,642,638,643,639,643,639,644,640,644,640,645,641,645,642,646,642,643 + ,643,644,644,645,645,646,646,647,642,647,643,647,644,647,645,647,648,649,648,650,649,650,648,653,649,653 + ,648,651,650,651,648,652,651,652,652,653,653,658,649,658,649,654,650,654,650,655,651,655,651,656,652,656 + ,652,657,653,657,654,658,654,655,655,656,656,657,657,658,658,659,654,659,655,659,656,659,657,659,660,661 + ,660,662,661,662,660,665,661,665,660,663,662,663,660,664,663,664,664,665,665,670,661,670,661,666,662,666 + ,662,667,663,667,663,668,664,668,664,669,665,669,666,670,666,667,667,668,668,669,669,670,670,671,666,671 + ,667,671,668,671,669,671,672,673,672,674,673,674,672,677,673,677,672,675,674,675,672,676,675,676,676,677 + ,677,682,673,682,673,678,674,678,674,679,675,679,675,680,676,680,676,681,677,681,678,682,678,679,679,680 + ,680,681,681,682,682,683,678,683,679,683,680,683,681,683,684,685,684,686,685,686,684,689,685,689,684,687 + ,686,687,684,688,687,688,688,689,689,694,685,694,685,690,686,690,686,691,687,691,687,692,688,692,688,693 + ,689,693,690,694,690,691,691,692,692,693,693,694,694,695,690,695,691,695,692,695,693,695,696,697,696,698 + ,697,698,696,701,697,701,696,699,698,699,696,700,699,700,700,701,701,706,697,706,697,702,698,702,698,703 + ,699,703,699,704,700,704,700,705,701,705,702,706,702,703,703,704,704,705,705,706,706,707,702,707,703,707 + ,704,707,705,707,708,709,708,710,709,710,708,713,709,713,708,711,710,711,708,712,711,712,712,713,713,718 + ,709,718,709,714,710,714,710,715,711,715,711,716,712,716,712,717,713,717,714,718,714,715,715,716,716,717 + ,717,718,718,719,714,719,715,719,716,719,717,719 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: 0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,1.000000000000000 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.000000000000000,0.000000000000000,-0.999969482421875,0.723593831062317,-0.525711834430695,-0.447187721729279 + ,-0.276375621557236,-0.850642442703247,-0.447187721729279,-0.894405961036682,0.000000000000000,-0.447187721729279 + ,-0.276375621557236,0.850642442703247,-0.447187721729279,0.723593831062317,0.525711834430695,-0.447187721729279 + ,0.276375621557236,-0.850642442703247,0.447187721729279,-0.723593831062317,-0.525711834430695,0.447187721729279 + ,-0.723593831062317,0.525711834430695,0.447187721729279,0.276375621557236,0.850642442703247,0.447187721729279 + ,0.894405961036682,0.000000000000000,0.447187721729279,0.000000000000000,0.000000000000000,0.999969482421875 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + } + } + Model: "Model::BuckyBallLines", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.500000000000000,0.500000000000000,0.500000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: -0.334718,0.029094,-0.817882,-0.294674,-0.000000,-0.768384,-0.254629,-0.029094,-0.817882,-0.294674,0.000000,-0.867379,-0.131102,0.309345,-0.817880,-0.091058,0.280251,-0.768383,-0.051013,0.251157,-0.817880 + ,-0.091057,0.280251,-0.867378,-0.082161,-0.703548,0.447215,-0.074120,-0.758888,0.489320,-0.023974,-0.783637,0.447215,-0.032015,-0.728297,0.405110,0.156234,-0.530345,0.629334,0.164275,-0.585685,0.671439 + ,0.214422,-0.610434,0.629334,0.206381,-0.555094,0.587229,0.082161,-0.783637,-0.447215,0.087131,-0.718844,-0.421192,0.023974,-0.703548,-0.447215,0.019004,-0.768341,-0.473238,-0.065179,-0.890684,-0.152541 + ,-0.060209,-0.825892,-0.126518,-0.123366,-0.810596,-0.152541,-0.128336,-0.875388,-0.178563,0.409441,-0.679843,-0.447215,0.394145,-0.632768,-0.397718,0.378849,-0.585693,-0.447215,0.394145,-0.632768,-0.496712 + ,0.068363,-0.790668,-0.447215,0.053067,-0.743593,-0.397718,0.037771,-0.696518,-0.447215,0.053067,-0.743593,-0.496712,0.576263,-0.682264,-0.152541,0.534158,-0.632767,-0.126518,0.576262,-0.583269,-0.152541 + ,0.618368,-0.632766,-0.178563,0.394145,-0.682266,-0.447215,0.352040,-0.632768,-0.421193,0.394145,-0.583271,-0.447215,0.436250,-0.632768,-0.473237,0.394628,-0.703549,0.152541,0.457786,-0.718845,0.178563 + ,0.452816,-0.783638,0.152541,0.389658,-0.768342,0.126518,0.547169,-0.592722,-0.152541,0.610327,-0.608018,-0.126518,0.605357,-0.672811,-0.152541,0.542199,-0.657515,-0.178563,0.439018,-0.790668,0.152541 + ,0.423722,-0.743594,0.202038,0.408426,-0.696519,0.152541,0.423722,-0.743594,0.103043,0.109568,-0.897715,0.152541,0.094272,-0.850640,0.202038,0.078976,-0.803565,0.152541,0.094272,-0.850640,0.103043 + ,0.527077,-0.585688,0.447215,0.466990,-0.610436,0.473237,0.432927,-0.555095,0.447215,0.493014,-0.530347,0.421193,0.470797,-0.758890,0.152541,0.410710,-0.783638,0.178563,0.376648,-0.728297,0.152541 + ,0.436734,-0.703549,0.126518,0.185328,-0.520892,0.629334,0.211350,-0.570390,0.671439,0.185327,-0.619887,0.629334,0.159305,-0.570390,0.587229,0.480002,-0.520894,0.447215,0.506024,-0.570392,0.489320 + ,0.480002,-0.619889,0.447215,0.453980,-0.570391,0.405110,-0.023974,-0.703548,0.447215,-0.019004,-0.768341,0.473238,-0.082161,-0.783637,0.447215,-0.087131,-0.718844,0.421192,0.123366,-0.810596,0.152541 + ,0.128336,-0.875389,0.178563,0.065179,-0.890684,0.152541,0.060209,-0.825891,0.126518,0.094272,-0.900137,0.152541,0.052167,-0.850640,0.178563,0.094272,-0.801143,0.152541,0.136378,-0.850640,0.126519 + ,-0.094272,-0.900137,-0.152541,-0.136378,-0.850640,-0.126519,-0.094272,-0.801143,-0.152541,-0.052167,-0.850640,-0.178563,0.788648,-0.173201,0.152541,0.838146,-0.173201,0.202038,0.887643,-0.173201,0.152541 + ,0.838146,-0.173201,0.103043,0.788648,0.173201,0.152541,0.838146,0.173201,0.202038,0.887643,0.173201,0.152541,0.838146,0.173201,0.103043,0.826954,0.367815,-0.152541,0.766867,0.392564,-0.126519 + ,0.732804,0.337223,-0.152541,0.792891,0.312475,-0.178563,0.885221,0.188497,0.152541,0.825134,0.213245,0.178563,0.791071,0.157905,0.152541,0.851158,0.133157,0.126519,0.676525,0.194608,-0.447215 + ,0.710589,0.139268,-0.421192,0.770675,0.164016,-0.447215,0.736611,0.219356,-0.473238,0.732804,0.367815,-0.152541,0.766868,0.312475,-0.126518,0.826954,0.337224,-0.152541,0.792890,0.392563,-0.178564 + ,0.674103,-0.179312,-0.447215,0.723600,-0.179312,-0.397718,0.773098,-0.179312,-0.447215,0.723600,-0.179312,-0.496712,0.674102,0.179312,-0.447215,0.723600,0.179312,-0.397718,0.773097,0.179312,-0.447215 + ,0.723600,0.179312,-0.496712,0.456110,-0.312473,-0.629334,0.464152,-0.367813,-0.587229,0.514298,-0.392562,-0.629334,0.506257,-0.337222,-0.671439,0.694506,-0.139268,-0.447215,0.702547,-0.194608,-0.405110 + ,0.752694,-0.219356,-0.447215,0.744653,-0.164016,-0.489320,0.732804,-0.367815,-0.152541,0.766868,-0.312475,-0.126518,0.826954,-0.337224,-0.152541,0.792890,-0.392563,-0.178564,0.676525,-0.194608,-0.447215 + ,0.710589,-0.139268,-0.421192,0.770675,-0.164016,-0.447215,0.736611,-0.219356,-0.473238,0.347070,-0.617472,-0.447215,0.402186,-0.608019,-0.405110,0.441220,-0.648064,-0.447215,0.386104,-0.657517,-0.489320 + ,0.438129,-0.337222,-0.629334,0.493246,-0.327769,-0.587229,0.532279,-0.367813,-0.629334,0.477163,-0.377266,-0.671439,0.439958,-0.541297,0.447215,0.480002,-0.570391,0.496713,0.520046,-0.599486,0.447215 + ,0.480002,-0.570391,0.397718,0.650764,-0.251154,0.447215,0.690808,-0.280248,0.496713,0.730852,-0.309343,0.447215,0.690808,-0.280248,0.397718,0.661714,-0.240204,0.447215,0.724872,-0.255500,0.473237 + ,0.719902,-0.320293,0.447215,0.656744,-0.304997,0.421192,0.809052,-0.133157,0.152541,0.872210,-0.148452,0.178563,0.867240,-0.213245,0.152541,0.804082,-0.197950,0.126518,0.536219,-0.603672,-0.152541 + ,0.576263,-0.632766,-0.103043,0.616307,-0.661861,-0.152541,0.576263,-0.632767,-0.202038,0.739835,-0.323425,-0.152541,0.779879,-0.352519,-0.103044,0.819923,-0.381614,-0.152541,0.779879,-0.352519,-0.202039 + ,0.885221,-0.188497,0.152541,0.825134,-0.213245,0.178563,0.791071,-0.157905,0.152541,0.851158,-0.133157,0.126519,0.826954,-0.367815,-0.152541,0.766867,-0.392564,-0.126519,0.732804,-0.337223,-0.152541 + ,0.792891,-0.312475,-0.178563,0.138253,-0.585685,0.629334,0.193369,-0.595139,0.671439,0.232403,-0.555094,0.629334,0.177286,-0.545641,0.587229,0.043983,-0.295546,0.817880,0.099099,-0.305000,0.859985 + ,0.138133,-0.264956,0.817880,0.083016,-0.255502,0.775775,0.051013,-0.251157,0.817880,0.091057,-0.280251,0.867378,0.131102,-0.309345,0.817880,0.091058,-0.280251,0.768383,0.254629,0.029094,0.817882 + ,0.294674,-0.000000,0.867379,0.334718,-0.029094,0.817882,0.294674,0.000000,0.768384,0.294674,0.049497,0.817882,0.320696,0.000000,0.859987,0.294674,-0.049497,0.817882,0.268651,-0.000000,0.775777 + ,0.599750,0.049497,0.629334,0.625772,0.000000,0.671440,0.599750,-0.049497,0.629334,0.573727,-0.000000,0.587229,0.646824,0.015296,0.629334,0.607791,-0.024749,0.671439,0.552675,-0.015296,0.629334 + ,0.591708,0.024749,0.587230,0.737883,-0.264953,0.447215,0.698850,-0.304997,0.489320,0.643733,-0.295544,0.447215,0.682767,-0.255499,0.405110,0.552675,0.015296,0.629334,0.607791,0.024749,0.671439 + ,0.646824,-0.015296,0.629334,0.591708,-0.024749,0.587230,0.643733,0.295544,0.447215,0.698850,0.304997,0.489320,0.737883,0.264953,0.447215,0.682767,0.255499,0.405110,0.719902,0.320293,0.447215 + ,0.724872,0.255500,0.473237,0.661714,0.240204,0.447215,0.656744,0.304997,0.421193,0.867240,0.213245,0.152541,0.872209,0.148452,0.178563,0.809052,0.133157,0.152541,0.804082,0.197950,0.126518 + ,0.650764,0.251154,0.447215,0.690808,0.280248,0.496712,0.730852,0.309343,0.447215,0.690808,0.280248,0.397718,0.439958,0.541297,0.447215,0.480002,0.570391,0.496712,0.520046,0.599486,0.447215 + ,0.480002,0.570391,0.397718,0.432927,0.555095,0.447215,0.466990,0.610436,0.473237,0.527077,0.585688,0.447215,0.493014,0.530347,0.421193,0.376648,0.728297,0.152541,0.410710,0.783638,0.178563 + ,0.470797,0.758890,0.152541,0.436734,0.703549,0.126518,0.232403,0.555094,0.629335,0.193369,0.595139,0.671439,0.138253,0.585685,0.629335,0.177286,0.545641,0.587230,0.138133,0.264956,0.817880 + ,0.099099,0.305000,0.859985,0.043983,0.295546,0.817880,0.083016,0.255502,0.775775,0.131102,0.309345,0.817880,0.091057,0.280251,0.867377,0.051013,0.251157,0.817880,0.091058,0.280251,0.768382 + ,0.334718,0.029094,0.817882,0.294674,0.000000,0.867379,0.254629,-0.029094,0.817882,0.294674,-0.000000,0.768384,0.123366,0.810596,0.152541,0.128336,0.875389,0.178563,0.065179,0.890684,0.152541 + ,0.060209,0.825891,0.126518,-0.023974,0.703548,0.447215,-0.019003,0.768341,0.473238,-0.082161,0.783637,0.447215,-0.087131,0.718844,0.421192,-0.023974,0.783637,0.447215,-0.074120,0.758888,0.489320 + ,-0.082161,0.703548,0.447215,-0.032015,0.728297,0.405110,0.214422,0.610434,0.629335,0.164275,0.585685,0.671439,0.156234,0.530345,0.629335,0.206381,0.555094,0.587230,0.185327,0.619887,0.629335 + ,0.211350,0.570390,0.671440,0.185328,0.520892,0.629335,0.159305,0.570390,0.587229,0.480002,0.619889,0.447215,0.506024,0.570392,0.489320,0.480002,0.520894,0.447215,0.453980,0.570391,0.405110 + ,0.576262,0.583269,-0.152541,0.534158,0.632767,-0.126518,0.576263,0.682264,-0.152541,0.618368,0.632766,-0.178563,0.394145,0.583271,-0.447215,0.352040,0.632768,-0.421193,0.394145,0.682266,-0.447215 + ,0.436250,0.632768,-0.473237,0.616307,0.661861,-0.152541,0.576263,0.632766,-0.103043,0.536219,0.603672,-0.152541,0.576263,0.632767,-0.202038,0.819923,0.381614,-0.152541,0.779879,0.352519,-0.103044 + ,0.739835,0.323425,-0.152541,0.779879,0.352519,-0.202039,0.452816,0.783638,0.152541,0.457786,0.718845,0.178563,0.394628,0.703549,0.152541,0.389658,0.768342,0.126518,0.605357,0.672811,-0.152541 + ,0.610327,0.608018,-0.126518,0.547169,0.592722,-0.152541,0.542199,0.657515,-0.178563,0.109568,0.897715,0.152541,0.094272,0.850640,0.202038,0.078976,0.803565,0.152541,0.094272,0.850640,0.103043 + ,0.439018,0.790668,0.152541,0.423722,0.743594,0.202038,0.408426,0.696519,0.152541,0.423722,0.743594,0.103043,0.068363,0.790668,-0.447215,0.053067,0.743593,-0.397718,0.037772,0.696518,-0.447215 + ,0.053067,0.743593,-0.496712,0.409441,0.679843,-0.447215,0.394145,0.632768,-0.397718,0.378849,0.585693,-0.447215,0.394145,0.632768,-0.496712,0.441220,0.648064,-0.447215,0.402186,0.608019,-0.405110 + ,0.347070,0.617472,-0.447215,0.386104,0.657517,-0.489320,0.532279,0.367813,-0.629334,0.493246,0.327769,-0.587229,0.438129,0.337222,-0.629334,0.477163,0.377266,-0.671439,0.514298,0.392562,-0.629334 + ,0.464152,0.367813,-0.587229,0.456110,0.312473,-0.629334,0.506257,0.337222,-0.671439,0.752694,0.219356,-0.447215,0.702547,0.194608,-0.405110,0.694506,0.139268,-0.447215,0.744653,0.164016,-0.489320 + ,-0.094272,0.900137,-0.152541,-0.136378,0.850640,-0.126519,-0.094272,0.801143,-0.152541,-0.052167,0.850640,-0.178563,0.094272,0.900137,0.152541,0.052167,0.850640,0.178563,0.094272,0.801143,0.152541 + ,0.136378,0.850640,0.126519,-0.065179,0.890684,-0.152541,-0.060209,0.825891,-0.126518,-0.123366,0.810596,-0.152541,-0.128336,0.875389,-0.178563,0.082161,0.783637,-0.447215,0.087131,0.718844,-0.421192 + ,0.023974,0.703548,-0.447215,0.019003,0.768341,-0.473238,0.209303,0.213248,-0.817880,0.217344,0.157908,-0.775775,0.267491,0.133159,-0.817880,0.259450,0.188499,-0.859985,0.456111,0.392562,-0.629334 + ,0.464151,0.337222,-0.587229,0.514298,0.312473,-0.629334,0.506257,0.367813,-0.671439,0.287894,0.173203,-0.817880,0.238397,0.173204,-0.768382,0.188900,0.173204,-0.817880,0.238397,0.173204,-0.867377 + ,0.287894,-0.173204,-0.817880,0.238397,-0.173204,-0.768382,0.188899,-0.173203,-0.817880,0.238397,-0.173204,-0.867377,0.267491,-0.133159,-0.817880,0.217344,-0.157908,-0.775775,0.209303,-0.213248,-0.817880 + ,0.259450,-0.188499,-0.859985,0.514298,-0.312473,-0.629334,0.464151,-0.337222,-0.587229,0.456111,-0.392562,-0.629334,0.506257,-0.367813,-0.671439,-0.075762,0.327326,-0.817880,-0.091058,0.280251,-0.768383 + ,-0.106353,0.233176,-0.817880,-0.091057,0.280251,-0.867378,0.253693,0.220278,-0.817880,0.238397,0.173204,-0.768382,0.223101,0.126129,-0.817880,0.238397,0.173203,-0.867377,-0.138253,0.585685,-0.629335 + ,-0.177286,0.545641,-0.587230,-0.232403,0.555094,-0.629335,-0.193369,0.595139,-0.671439,-0.043983,0.295546,-0.817880,-0.083016,0.255502,-0.775775,-0.138133,0.264956,-0.817880,-0.099099,0.305000,-0.859985 + ,-0.214422,0.610434,-0.629335,-0.206381,0.555094,-0.587230,-0.156234,0.530345,-0.629335,-0.164275,0.585685,-0.671439,0.023973,0.783637,-0.447215,0.032014,0.728297,-0.405110,0.082161,0.703548,-0.447215 + ,0.074120,0.758888,-0.489320,-0.605357,0.672811,0.152541,-0.542199,0.657515,0.178563,-0.547169,0.592722,0.152541,-0.610327,0.608018,0.126518,-0.452816,0.783638,-0.152541,-0.389659,0.768342,-0.126518 + ,-0.394628,0.703549,-0.152541,-0.457786,0.718845,-0.178563,-0.409441,0.679843,0.447215,-0.394145,0.632768,0.496713,-0.378849,0.585693,0.447215,-0.394145,0.632768,0.397718,-0.068363,0.790668,0.447215 + ,-0.053067,0.743593,0.496713,-0.037772,0.696518,0.447215,-0.053067,0.743593,0.397718,-0.456111,0.392562,0.629334,-0.506257,0.367813,0.671439,-0.514298,0.312473,0.629334,-0.464151,0.337222,0.587229 + ,-0.209303,0.213248,0.817880,-0.259450,0.188499,0.859985,-0.267491,0.133159,0.817880,-0.217344,0.157908,0.775775,-0.253693,0.220278,0.817880,-0.238397,0.173203,0.867377,-0.223101,0.126129,0.817880 + ,-0.238397,0.173203,0.768382,0.075762,0.327326,0.817880,0.091057,0.280251,0.867378,0.106353,0.233176,0.817880,0.091058,0.280251,0.768383,-0.599750,0.049497,-0.629334,-0.573727,0.000000,-0.587229 + ,-0.599750,-0.049497,-0.629334,-0.625772,-0.000000,-0.671440,-0.294674,0.049497,-0.817882,-0.268651,0.000000,-0.775777,-0.294674,-0.049497,-0.817882,-0.320696,-0.000000,-0.859987,-0.819923,0.381614,0.152541 + ,-0.779879,0.352519,0.202039,-0.739835,0.323425,0.152541,-0.779879,0.352519,0.103044,-0.616307,0.661861,0.152541,-0.576263,0.632767,0.202038,-0.536219,0.603672,0.152541,-0.576263,0.632766,0.103043 + ,-0.480002,0.619889,-0.447215,-0.453980,0.570391,-0.405110,-0.480002,0.520894,-0.447215,-0.506024,0.570392,-0.489320,-0.185328,0.619887,-0.629335,-0.159305,0.570390,-0.587229,-0.185328,0.520892,-0.629335 + ,-0.211350,0.570390,-0.671440,-0.527077,0.585688,-0.447215,-0.493014,0.530347,-0.421193,-0.432927,0.555095,-0.447215,-0.466990,0.610436,-0.473237,-0.470797,0.758890,-0.152541,-0.436734,0.703549,-0.126518 + ,-0.376647,0.728297,-0.152541,-0.410710,0.783638,-0.178563,-0.532279,0.367813,0.629334,-0.477163,0.377266,0.671439,-0.438129,0.337222,0.629334,-0.493246,0.327769,0.587229,-0.441220,0.648064,0.447215 + ,-0.386104,0.657517,0.489320,-0.347070,0.617473,0.447215,-0.402186,0.608019,0.405110,-0.576263,0.682264,0.152541,-0.618368,0.632766,0.178563,-0.576262,0.583269,0.152541,-0.534158,0.632767,0.126518 + ,-0.394145,0.682266,0.447215,-0.436250,0.632768,0.473237,-0.394145,0.583271,0.447215,-0.352040,0.632769,0.421193,-0.439018,0.790668,-0.152541,-0.423722,0.743593,-0.103043,-0.408426,0.696519,-0.152541 + ,-0.423722,0.743593,-0.202038,-0.109568,0.897715,-0.152541,-0.094272,0.850640,-0.103043,-0.078976,0.803565,-0.152541,-0.094272,0.850640,-0.202038,-0.732804,0.367815,0.152541,-0.792890,0.392563,0.178564 + ,-0.826954,0.337224,0.152541,-0.766868,0.312475,0.126518,-0.676525,0.194608,0.447215,-0.736611,0.219356,0.473238,-0.770675,0.164016,0.447215,-0.710589,0.139268,0.421192,-0.752694,0.219356,0.447215 + ,-0.744653,0.164016,0.489320,-0.694506,0.139268,0.447215,-0.702547,0.194608,0.405110,-0.514298,0.392562,0.629334,-0.506257,0.337222,0.671439,-0.456110,0.312473,0.629334,-0.464152,0.367813,0.587229 + ,-0.773097,-0.179312,0.447215,-0.723600,-0.179312,0.496712,-0.674102,-0.179312,0.447215,-0.723600,-0.179312,0.397718,-0.773098,0.179312,0.447215,-0.723600,0.179312,0.496712,-0.674103,0.179312,0.447215 + ,-0.723600,0.179312,0.397718,-0.694506,-0.139268,0.447215,-0.744653,-0.164016,0.489320,-0.752694,-0.219356,0.447215,-0.702547,-0.194608,0.405110,-0.456110,-0.312473,0.629334,-0.506257,-0.337222,0.671439 + ,-0.514298,-0.392562,0.629334,-0.464152,-0.367813,0.587229,-0.514298,-0.312473,0.629334,-0.506257,-0.367813,0.671439,-0.456111,-0.392562,0.629334,-0.464152,-0.337222,0.587229,-0.267491,-0.133159,0.817880 + ,-0.259450,-0.188499,0.859985,-0.209303,-0.213248,0.817880,-0.217344,-0.157908,0.775775,-0.287894,-0.173203,0.817880,-0.238397,-0.173203,0.867377,-0.188900,-0.173203,0.817880,-0.238397,-0.173203,0.768382 + ,-0.287894,0.173203,0.817880,-0.238397,0.173203,0.867377,-0.188900,0.173203,0.817880,-0.238397,0.173203,0.768382,-0.223101,-0.126129,0.817880,-0.238397,-0.173203,0.867377,-0.253693,-0.220278,0.817880 + ,-0.238397,-0.173203,0.768382,0.106353,-0.233176,0.817880,0.091057,-0.280251,0.867378,0.075762,-0.327326,0.817880,0.091058,-0.280251,0.768383,-0.643733,0.295544,-0.447215,-0.682767,0.255499,-0.405110 + ,-0.737883,0.264953,-0.447215,-0.698849,0.304997,-0.489320,-0.552675,0.015296,-0.629334,-0.591708,-0.024749,-0.587230,-0.646824,-0.015296,-0.629334,-0.607791,0.024749,-0.671439,-0.867240,0.213245,-0.152541 + ,-0.804082,0.197950,-0.126518,-0.809052,0.133157,-0.152541,-0.872210,0.148452,-0.178563,-0.719902,0.320293,-0.447215,-0.656744,0.304997,-0.421193,-0.661714,0.240204,-0.447215,-0.724872,0.255500,-0.473237 + ,-0.552675,-0.015296,-0.629334,-0.591708,0.024749,-0.587230,-0.646824,0.015296,-0.629334,-0.607791,-0.024749,-0.671439,-0.643733,-0.295544,-0.447215,-0.682767,-0.255499,-0.405110,-0.737883,-0.264953,-0.447215 + ,-0.698850,-0.304997,-0.489320,-0.809052,-0.133157,-0.152541,-0.804082,-0.197950,-0.126518,-0.867240,-0.213245,-0.152541,-0.872209,-0.148452,-0.178563,-0.661714,-0.240204,-0.447215,-0.656744,-0.304997,-0.421193 + ,-0.719902,-0.320293,-0.447215,-0.724872,-0.255500,-0.473237,-0.887643,-0.173201,-0.152541,-0.838146,-0.173201,-0.103043,-0.788648,-0.173201,-0.152541,-0.838146,-0.173201,-0.202038,-0.887643,0.173201,-0.152541 + ,-0.838146,0.173201,-0.103043,-0.788648,0.173201,-0.152541,-0.838146,0.173201,-0.202038,-0.439958,0.541297,-0.447215,-0.480002,0.570391,-0.397717,-0.520046,0.599486,-0.447215,-0.480002,0.570391,-0.496712 + ,-0.650764,0.251154,-0.447215,-0.690808,0.280248,-0.397717,-0.730852,0.309343,-0.447215,-0.690808,0.280248,-0.496712,-0.732804,0.337223,0.152541,-0.792891,0.312475,0.178563,-0.826954,0.367815,0.152541 + ,-0.766867,0.392564,0.126519,-0.791071,0.157905,-0.152541,-0.851158,0.133157,-0.126519,-0.885221,0.188497,-0.152541,-0.825134,0.213245,-0.178563,-0.378849,-0.585693,0.447215,-0.394145,-0.632768,0.496712 + ,-0.409441,-0.679843,0.447215,-0.394145,-0.632768,0.397718,-0.037772,-0.696518,0.447215,-0.053067,-0.743593,0.496712,-0.068363,-0.790668,0.447215,-0.053067,-0.743593,0.397718,-0.441220,-0.648064,0.447215 + ,-0.386104,-0.657517,0.489320,-0.347070,-0.617473,0.447215,-0.402186,-0.608019,0.405110,-0.532279,-0.367813,0.629334,-0.477163,-0.377266,0.671439,-0.438129,-0.337222,0.629334,-0.493246,-0.327769,0.587229 + ,-0.480002,-0.520894,-0.447215,-0.453980,-0.570391,-0.405110,-0.480002,-0.619889,-0.447215,-0.506024,-0.570392,-0.489320,-0.185328,-0.520892,-0.629335,-0.159305,-0.570390,-0.587229,-0.185327,-0.619887,-0.629335 + ,-0.211350,-0.570390,-0.671440,-0.452816,-0.783638,-0.152541,-0.389658,-0.768342,-0.126518,-0.394628,-0.703549,-0.152541,-0.457786,-0.718845,-0.178563,-0.605357,-0.672811,0.152541,-0.542199,-0.657515,0.178563 + ,-0.547169,-0.592722,0.152541,-0.610327,-0.608018,0.126518,-0.394145,-0.682266,0.447215,-0.436250,-0.632768,0.473237,-0.394145,-0.583271,0.447215,-0.352040,-0.632768,0.421193,-0.576263,-0.682264,0.152541 + ,-0.618368,-0.632766,0.178563,-0.576262,-0.583269,0.152541,-0.534158,-0.632767,0.126519,-0.616307,-0.661861,0.152541,-0.576263,-0.632767,0.202038,-0.536219,-0.603672,0.152541,-0.576263,-0.632766,0.103043 + ,-0.819923,-0.381614,0.152541,-0.779879,-0.352519,0.202039,-0.739835,-0.323425,0.152541,-0.779879,-0.352519,0.103044,-0.791071,-0.157905,-0.152541,-0.851158,-0.133157,-0.126519,-0.885221,-0.188497,-0.152541 + ,-0.825134,-0.213245,-0.178563,-0.732804,-0.337223,0.152541,-0.792891,-0.312475,0.178563,-0.826954,-0.367815,0.152541,-0.766867,-0.392564,0.126519,-0.826954,-0.337224,0.152541,-0.792890,-0.392563,0.178564 + ,-0.732804,-0.367815,0.152541,-0.766868,-0.312475,0.126518,-0.770675,-0.164016,0.447215,-0.736611,-0.219356,0.473238,-0.676525,-0.194608,0.447215,-0.710589,-0.139268,0.421192,0.023974,-0.783637,-0.447215 + ,0.032015,-0.728297,-0.405110,0.082161,-0.703548,-0.447215,0.074120,-0.758888,-0.489320,-0.214421,-0.610434,-0.629334,-0.206380,-0.555094,-0.587229,-0.156234,-0.530345,-0.629334,-0.164275,-0.585685,-0.671439 + ,-0.254630,0.029094,-0.817882,-0.294674,0.000000,-0.768384,-0.334718,-0.029094,-0.817882,-0.294674,-0.000000,-0.867379,-0.051013,-0.251157,-0.817880,-0.091058,-0.280251,-0.768383,-0.131102,-0.309345,-0.817880 + ,-0.091057,-0.280251,-0.867378,-0.650764,-0.251154,-0.447215,-0.690808,-0.280248,-0.397717,-0.730852,-0.309343,-0.447215,-0.690808,-0.280248,-0.496712,-0.439958,-0.541297,-0.447215,-0.480002,-0.570391,-0.397717 + ,-0.520046,-0.599486,-0.447215,-0.480002,-0.570391,-0.496712,-0.432927,-0.555095,-0.447215,-0.493014,-0.530347,-0.421193,-0.527077,-0.585688,-0.447215,-0.466990,-0.610436,-0.473237,-0.376647,-0.728297,-0.152541 + ,-0.436734,-0.703549,-0.126518,-0.470797,-0.758890,-0.152541,-0.410710,-0.783638,-0.178563,-0.109568,-0.897715,-0.152541,-0.094272,-0.850640,-0.103043,-0.078976,-0.803565,-0.152541,-0.094272,-0.850640,-0.202038 + ,-0.439018,-0.790668,-0.152541,-0.423722,-0.743594,-0.103043,-0.408426,-0.696519,-0.152541,-0.423722,-0.743594,-0.202038,-0.106353,-0.233176,-0.817880,-0.091058,-0.280251,-0.768383,-0.075762,-0.327326,-0.817880 + ,-0.091057,-0.280251,-0.867378,0.223101,-0.126129,-0.817880,0.238397,-0.173203,-0.768382,0.253693,-0.220278,-0.817880,0.238397,-0.173203,-0.867377,-0.232403,-0.555094,-0.629335,-0.177286,-0.545641,-0.587230 + ,-0.138253,-0.585685,-0.629335,-0.193369,-0.595139,-0.671439,-0.138133,-0.264956,-0.817880,-0.083016,-0.255502,-0.775775,-0.043983,-0.295546,-0.817880,-0.099099,-0.305000,-0.859985 + PolygonVertexIndex: 0,4,7,-4,4,0,1,-6,2,6,5,-2,3,7,6,-3,8,12,15,-12,9,13,12,-9,10,14,13,-10,11,15,14,-11,16,20,23,-20,17,21,20,-17,18,22,21,-18,19,23,22,-19,24,28,31,-28 + ,25,29,28,-25,26,30,29,-26,27,31,30,-27,32,36,39,-36,33,37,36,-33,34,38,37,-34,35,39,38,-35,40,44,47,-44,41,45,44,-41,42,46,45,-42,43,47,46,-43,48,52,55,-52,49,53,52,-49 + ,50,54,53,-50,51,55,54,-51,56,60,63,-60,57,61,60,-57,58,62,61,-58,59,63,62,-59,64,68,71,-68,65,69,68,-65,66,70,69,-66,67,71,70,-67,72,76,79,-76,73,77,76,-73,74,78,77,-74 + ,75,79,78,-75,80,84,87,-84,81,85,84,-81,82,86,85,-82,83,87,86,-83,88,92,95,-92,89,93,92,-89,90,94,93,-90,91,95,94,-91,96,100,103,-100,97,101,100,-97,98,102,101,-98,99,103,102,-99 + ,104,108,111,-108,105,109,108,-105,106,110,109,-106,107,111,110,-107,112,116,119,-116,113,117,116,-113,114,118,117,-114,115,119,118,-115,120,124,127,-124,121,125,124,-121,122,126,125,-122,123,127,126,-123,128,132,135,-132 + ,129,133,132,-129,130,134,133,-130,131,135,134,-131,136,140,143,-140,137,141,140,-137,138,142,141,-138,139,143,142,-139,144,148,151,-148,145,149,148,-145,146,150,149,-146,147,151,150,-147,152,156,159,-156,153,157,156,-153 + ,154,158,157,-154,155,159,158,-155,160,164,167,-164,161,165,164,-161,162,166,165,-162,163,167,166,-163,168,172,175,-172,169,173,172,-169,170,174,173,-170,171,175,174,-171,176,180,183,-180,177,181,180,-177,178,182,181,-178 + ,179,183,182,-179,184,188,191,-188,185,189,188,-185,186,190,189,-186,187,191,190,-187,192,196,199,-196,193,197,196,-193,194,198,197,-194,195,199,198,-195,200,204,207,-204,201,205,204,-201,202,206,205,-202,203,207,206,-203 + ,208,212,215,-212,209,213,212,-209,210,214,213,-210,211,215,214,-211,216,220,223,-220,217,221,220,-217,218,222,221,-218,219,223,222,-219,224,228,231,-228,225,229,228,-225,226,230,229,-226,227,231,230,-227,232,236,239,-236 + ,233,237,236,-233,234,238,237,-234,235,239,238,-235,240,244,247,-244,241,245,244,-241,242,246,245,-242,243,247,246,-243,248,252,255,-252,249,253,252,-249,250,254,253,-250,251,255,254,-251,256,260,263,-260,257,261,260,-257 + ,258,262,261,-258,259,263,262,-259,264,268,271,-268,265,269,268,-265,266,270,269,-266,267,271,270,-267,272,276,279,-276,273,277,276,-273,274,278,277,-274,275,279,278,-275,280,284,287,-284,281,285,284,-281,282,286,285,-282 + ,283,287,286,-283,288,292,295,-292,289,293,292,-289,290,294,293,-290,291,295,294,-291,296,300,303,-300,297,301,300,-297,298,302,301,-298,299,303,302,-299,304,308,311,-308,305,309,308,-305,306,310,309,-306,307,311,310,-307 + ,312,316,319,-316,313,317,316,-313,314,318,317,-314,315,319,318,-315,320,324,327,-324,321,325,324,-321,322,326,325,-322,323,327,326,-323,328,332,335,-332,329,333,332,-329,330,334,333,-330,331,335,334,-331,336,340,343,-340 + ,337,341,340,-337,338,342,341,-338,339,343,342,-339,344,348,351,-348,345,349,348,-345,346,350,349,-346,347,351,350,-347,352,356,359,-356,353,357,356,-353,354,358,357,-354,355,359,358,-355,360,364,367,-364,361,365,364,-361 + ,362,366,365,-362,363,367,366,-363,368,372,375,-372,369,373,372,-369,370,374,373,-370,371,375,374,-371,376,380,383,-380,377,381,380,-377,378,382,381,-378,379,383,382,-379,384,388,391,-388,385,389,388,-385,386,390,389,-386 + ,387,391,390,-387,392,396,399,-396,393,397,396,-393,394,398,397,-394,395,399,398,-395,400,404,407,-404,401,405,404,-401,402,406,405,-402,403,407,406,-403,408,412,415,-412,409,413,412,-409,410,414,413,-410,411,415,414,-411 + ,416,420,423,-420,417,421,420,-417,418,422,421,-418,419,423,422,-419,424,428,431,-428,425,429,428,-425,426,430,429,-426,427,431,430,-427,432,436,439,-436,433,437,436,-433,434,438,437,-434,435,439,438,-435,440,444,447,-444 + ,441,445,444,-441,442,446,445,-442,443,447,446,-443,448,452,455,-452,449,453,452,-449,450,454,453,-450,451,455,454,-451,456,460,463,-460,457,461,460,-457,458,462,461,-458,459,463,462,-459,464,468,471,-468,465,469,468,-465 + ,466,470,469,-466,467,471,470,-467,472,476,479,-476,473,477,476,-473,474,478,477,-474,475,479,478,-475,480,484,487,-484,481,485,484,-481,482,486,485,-482,483,487,486,-483,488,492,495,-492,489,493,492,-489,490,494,493,-490 + ,491,495,494,-491,496,500,503,-500,497,501,500,-497,498,502,501,-498,499,503,502,-499,504,508,511,-508,505,509,508,-505,506,510,509,-506,507,511,510,-507,512,516,519,-516,513,517,516,-513,514,518,517,-514,515,519,518,-515 + ,520,524,527,-524,521,525,524,-521,522,526,525,-522,523,527,526,-523,528,532,535,-532,529,533,532,-529,530,534,533,-530,531,535,534,-531,536,540,543,-540,537,541,540,-537,538,542,541,-538,539,543,542,-539,544,548,551,-548 + ,545,549,548,-545,546,550,549,-546,547,551,550,-547,552,556,559,-556,553,557,556,-553,554,558,557,-554,555,559,558,-555,560,564,567,-564,561,565,564,-561,562,566,565,-562,563,567,566,-563,568,572,575,-572,569,573,572,-569 + ,570,574,573,-570,571,575,574,-571,576,580,583,-580,577,581,580,-577,578,582,581,-578,579,583,582,-579,584,588,591,-588,585,589,588,-585,586,590,589,-586,587,591,590,-587,592,596,599,-596,593,597,596,-593,594,598,597,-594 + ,595,599,598,-595,600,604,607,-604,601,605,604,-601,602,606,605,-602,603,607,606,-603,608,612,615,-612,609,613,612,-609,610,614,613,-610,611,615,614,-611,616,620,623,-620,617,621,620,-617,618,622,621,-618,619,623,622,-619 + ,624,628,631,-628,625,629,628,-625,626,630,629,-626,627,631,630,-627,632,636,639,-636,633,637,636,-633,634,638,637,-634,635,639,638,-635,640,644,647,-644,641,645,644,-641,642,646,645,-642,643,647,646,-643,648,652,655,-652 + ,649,653,652,-649,650,654,653,-650,651,655,654,-651,656,660,663,-660,657,661,660,-657,658,662,661,-658,659,663,662,-659,664,668,671,-668,665,669,668,-665,666,670,669,-666,667,671,670,-667,672,676,679,-676,673,677,676,-673 + ,674,678,677,-674,675,679,678,-675,680,684,687,-684,681,685,684,-681,682,686,685,-682,683,687,686,-683,688,692,695,-692,689,693,692,-689,690,694,693,-690,691,695,694,-691,696,700,703,-700,697,701,700,-697,698,702,701,-698 + ,699,703,702,-699,704,708,711,-708,705,709,708,-705,706,710,709,-706,707,711,710,-707,712,716,719,-716,713,717,716,-713,714,718,717,-714,715,719,718,-715 + Edges: 0,1,3,0,4,0,1,2,5,1,2,3,6,2,7,3,4,5,7,4,5,6,6,7,8,9 + ,11,8,12,8,9,10,13,9,10,11,14,10,15,11,12,13,15,12,13,14,14,15,16,17,19,16 + ,20,16,17,18,21,17,18,19,22,18,23,19,20,21,23,20,21,22,22,23,24,25,27,24,28,24 + ,25,26,29,25,26,27,30,26,31,27,28,29,31,28,29,30,30,31,32,33,35,32,36,32,33,34 + ,37,33,34,35,38,34,39,35,36,37,39,36,37,38,38,39,40,41,43,40,44,40,41,42,45,41 + ,42,43,46,42,47,43,44,45,47,44,45,46,46,47,48,49,51,48,52,48,49,50,53,49,50,51 + ,54,50,55,51,52,53,55,52,53,54,54,55,56,57,59,56,60,56,57,58,61,57,58,59,62,58 + ,63,59,60,61,63,60,61,62,62,63,64,65,67,64,68,64,65,66,69,65,66,67,70,66,71,67 + ,68,69,71,68,69,70,70,71,72,73,75,72,76,72,73,74,77,73,74,75,78,74,79,75,76,77 + ,79,76,77,78,78,79,80,81,83,80,84,80,81,82,85,81,82,83,86,82,87,83,84,85,87,84 + ,85,86,86,87,88,89,91,88,92,88,89,90,93,89,90,91,94,90,95,91,92,93,95,92,93,94 + ,94,95,96,97,99,96,100,96,97,98,101,97,98,99,102,98,103,99,100,101,103,100,101,102,102,103 + ,104,105,107,104,108,104,105,106,109,105,106,107,110,106,111,107,108,109,111,108,109,110,110,111,112,113 + ,115,112,116,112,113,114,117,113,114,115,118,114,119,115,116,117,119,116,117,118,118,119,120,121,123,120 + ,124,120,121,122,125,121,122,123,126,122,127,123,124,125,127,124,125,126,126,127,128,129,131,128,132,128 + ,129,130,133,129,130,131,134,130,135,131,132,133,135,132,133,134,134,135,136,137,139,136,140,136,137,138 + ,141,137,138,139,142,138,143,139,140,141,143,140,141,142,142,143,144,145,147,144,148,144,145,146,149,145 + ,146,147,150,146,151,147,148,149,151,148,149,150,150,151,152,153,155,152,156,152,153,154,157,153,154,155 + ,158,154,159,155,156,157,159,156,157,158,158,159,160,161,163,160,164,160,161,162,165,161,162,163,166,162 + ,167,163,164,165,167,164,165,166,166,167,168,169,171,168,172,168,169,170,173,169,170,171,174,170,175,171 + ,172,173,175,172,173,174,174,175,176,177,179,176,180,176,177,178,181,177,178,179,182,178,183,179,180,181 + ,183,180,181,182,182,183,184,185,187,184,188,184,185,186,189,185,186,187,190,186,191,187,188,189,191,188 + ,189,190,190,191,192,193,195,192,196,192,193,194,197,193,194,195,198,194,199,195,196,197,199,196,197,198 + ,198,199,200,201,203,200,204,200,201,202,205,201,202,203,206,202,207,203,204,205,207,204,205,206,206,207 + ,208,209,211,208,212,208,209,210,213,209,210,211,214,210,215,211,212,213,215,212,213,214,214,215,216,217 + ,219,216,220,216,217,218,221,217,218,219,222,218,223,219,220,221,223,220,221,222,222,223,224,225,227,224 + ,228,224,225,226,229,225,226,227,230,226,231,227,228,229,231,228,229,230,230,231,232,233,235,232,236,232 + ,233,234,237,233,234,235,238,234,239,235,236,237,239,236,237,238,238,239,240,241,243,240,244,240,241,242 + ,245,241,242,243,246,242,247,243,244,245,247,244,245,246,246,247,248,249,251,248,252,248,249,250,253,249 + ,250,251,254,250,255,251,252,253,255,252,253,254,254,255,256,257,259,256,260,256,257,258,261,257,258,259 + ,262,258,263,259,260,261,263,260,261,262,262,263,264,265,267,264,268,264,265,266,269,265,266,267,270,266 + ,271,267,268,269,271,268,269,270,270,271,272,273,275,272,276,272,273,274,277,273,274,275,278,274,279,275 + ,276,277,279,276,277,278,278,279,280,281,283,280,284,280,281,282,285,281,282,283,286,282,287,283,284,285 + ,287,284,285,286,286,287,288,289,291,288,292,288,289,290,293,289,290,291,294,290,295,291,292,293,295,292 + ,293,294,294,295,296,297,299,296,300,296,297,298,301,297,298,299,302,298,303,299,300,301,303,300,301,302 + ,302,303,304,305,307,304,308,304,305,306,309,305,306,307,310,306,311,307,308,309,311,308,309,310,310,311 + ,312,313,315,312,316,312,313,314,317,313,314,315,318,314,319,315,316,317,319,316,317,318,318,319,320,321 + ,323,320,324,320,321,322,325,321,322,323,326,322,327,323,324,325,327,324,325,326,326,327,328,329,331,328 + ,332,328,329,330,333,329,330,331,334,330,335,331,332,333,335,332,333,334,334,335,336,337,339,336,340,336 + ,337,338,341,337,338,339,342,338,343,339,340,341,343,340,341,342,342,343,344,345,347,344,348,344,345,346 + ,349,345,346,347,350,346,351,347,348,349,351,348,349,350,350,351,352,353,355,352,356,352,353,354,357,353 + ,354,355,358,354,359,355,356,357,359,356,357,358,358,359,360,361,363,360,364,360,361,362,365,361,362,363 + ,366,362,367,363,364,365,367,364,365,366,366,367,368,369,371,368,372,368,369,370,373,369,370,371,374,370 + ,375,371,372,373,375,372,373,374,374,375,376,377,379,376,380,376,377,378,381,377,378,379,382,378,383,379 + ,380,381,383,380,381,382,382,383,384,385,387,384,388,384,385,386,389,385,386,387,390,386,391,387,388,389 + ,391,388,389,390,390,391,392,393,395,392,396,392,393,394,397,393,394,395,398,394,399,395,396,397,399,396 + ,397,398,398,399,400,401,403,400,404,400,401,402,405,401,402,403,406,402,407,403,404,405,407,404,405,406 + ,406,407,408,409,411,408,412,408,409,410,413,409,410,411,414,410,415,411,412,413,415,412,413,414,414,415 + ,416,417,419,416,420,416,417,418,421,417,418,419,422,418,423,419,420,421,423,420,421,422,422,423,424,425 + ,427,424,428,424,425,426,429,425,426,427,430,426,431,427,428,429,431,428,429,430,430,431,432,433,435,432 + ,436,432,433,434,437,433,434,435,438,434,439,435,436,437,439,436,437,438,438,439,440,441,443,440,444,440 + ,441,442,445,441,442,443,446,442,447,443,444,445,447,444,445,446,446,447,448,449,451,448,452,448,449,450 + ,453,449,450,451,454,450,455,451,452,453,455,452,453,454,454,455,456,457,459,456,460,456,457,458,461,457 + ,458,459,462,458,463,459,460,461,463,460,461,462,462,463,464,465,467,464,468,464,465,466,469,465,466,467 + ,470,466,471,467,468,469,471,468,469,470,470,471,472,473,475,472,476,472,473,474,477,473,474,475,478,474 + ,479,475,476,477,479,476,477,478,478,479,480,481,483,480,484,480,481,482,485,481,482,483,486,482,487,483 + ,484,485,487,484,485,486,486,487,488,489,491,488,492,488,489,490,493,489,490,491,494,490,495,491,492,493 + ,495,492,493,494,494,495,496,497,499,496,500,496,497,498,501,497,498,499,502,498,503,499,500,501,503,500 + ,501,502,502,503,504,505,507,504,508,504,505,506,509,505,506,507,510,506,511,507,508,509,511,508,509,510 + ,510,511,512,513,515,512,516,512,513,514,517,513,514,515,518,514,519,515,516,517,519,516,517,518,518,519 + ,520,521,523,520,524,520,521,522,525,521,522,523,526,522,527,523,524,525,527,524,525,526,526,527,528,529 + ,531,528,532,528,529,530,533,529,530,531,534,530,535,531,532,533,535,532,533,534,534,535,536,537,539,536 + ,540,536,537,538,541,537,538,539,542,538,543,539,540,541,543,540,541,542,542,543,544,545,547,544,548,544 + ,545,546,549,545,546,547,550,546,551,547,548,549,551,548,549,550,550,551,552,553,555,552,556,552,553,554 + ,557,553,554,555,558,554,559,555,556,557,559,556,557,558,558,559,560,561,563,560,564,560,561,562,565,561 + ,562,563,566,562,567,563,564,565,567,564,565,566,566,567,568,569,571,568,572,568,569,570,573,569,570,571 + ,574,570,575,571,572,573,575,572,573,574,574,575,576,577,579,576,580,576,577,578,581,577,578,579,582,578 + ,583,579,580,581,583,580,581,582,582,583,584,585,587,584,588,584,585,586,589,585,586,587,590,586,591,587 + ,588,589,591,588,589,590,590,591,592,593,595,592,596,592,593,594,597,593,594,595,598,594,599,595,596,597 + ,599,596,597,598,598,599,600,601,603,600,604,600,601,602,605,601,602,603,606,602,607,603,604,605,607,604 + ,605,606,606,607,608,609,611,608,612,608,609,610,613,609,610,611,614,610,615,611,612,613,615,612,613,614 + ,614,615,616,617,619,616,620,616,617,618,621,617,618,619,622,618,623,619,620,621,623,620,621,622,622,623 + ,624,625,627,624,628,624,625,626,629,625,626,627,630,626,631,627,628,629,631,628,629,630,630,631,632,633 + ,635,632,636,632,633,634,637,633,634,635,638,634,639,635,636,637,639,636,637,638,638,639,640,641,643,640 + ,644,640,641,642,645,641,642,643,646,642,647,643,644,645,647,644,645,646,646,647,648,649,651,648,652,648 + ,649,650,653,649,650,651,654,650,655,651,652,653,655,652,653,654,654,655,656,657,659,656,660,656,657,658 + ,661,657,658,659,662,658,663,659,660,661,663,660,661,662,662,663,664,665,667,664,668,664,665,666,669,665 + ,666,667,670,666,671,667,668,669,671,668,669,670,670,671,672,673,675,672,676,672,673,674,677,673,674,675 + ,678,674,679,675,676,677,679,676,677,678,678,679,680,681,683,680,684,680,681,682,685,681,682,683,686,682 + ,687,683,684,685,687,684,685,686,686,687,688,689,691,688,692,688,689,690,693,689,690,691,694,690,695,691 + ,692,693,695,692,693,694,694,695,696,697,699,696,700,696,697,698,701,697,698,699,702,698,703,699,700,701 + ,703,700,701,702,702,703,704,705,707,704,708,704,705,706,709,705,706,707,710,706,711,707,708,709,711,708 + ,709,710,710,711,712,713,715,712,716,712,713,714,717,713,714,715,718,714,719,715,716,717,719,716,717,718 + ,718,719 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: -0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,-0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,-0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.951048314571381,-0.309030413627625,0.000000000000000,-0.262855917215347,-0.809015154838562,0.525711834430695 + ,-0.951048314571381,0.309030413627625,0.000000000000000,0.262855917215347,0.809015154838562,-0.525711834430695 + ,0.951048314571381,-0.309030413627625,0.000000000000000,-0.262855917215347,-0.809015154838562,0.525711834430695 + ,-0.951048314571381,0.309030413627625,0.000000000000000,0.262855917215347,0.809015154838562,-0.525711834430695 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.951048314571381,0.309030413627625,0.000000000000000,-0.262855917215347,0.809015154838562,0.525711834430695 + ,-0.951048314571381,-0.309030413627625,0.000000000000000,0.262855917215347,-0.809015154838562,-0.525711834430695 + ,0.951048314571381,0.309030413627625,0.000000000000000,-0.262855917215347,0.809015154838562,0.525711834430695 + ,-0.951048314571381,-0.309030413627625,0.000000000000000,0.262855917215347,-0.809015154838562,-0.525711834430695 + ,-0.951048314571381,0.308999896049500,0.000000000000000,-0.262855917215347,-0.808984637260437,0.525711834430695 + ,0.951048314571381,-0.308999896049500,0.000000000000000,0.262855917215347,0.808984637260437,-0.525711834430695 + ,-0.951048314571381,0.308999896049500,0.000000000000000,-0.262855917215347,-0.808984637260437,0.525711834430695 + ,0.951048314571381,-0.308999896049500,0.000000000000000,0.262855917215347,0.808984637260437,-0.525711834430695 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.587786495685577,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587786495685577,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,-0.587786495685577,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587786495685577,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,-0.262855917215347,0.808984637260437,0.525711834430695 + ,0.951048314571381,0.308999896049500,0.000000000000000,0.262855917215347,-0.808984637260437,-0.525711834430695 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,-0.262855917215347,0.808984637260437,0.525711834430695 + ,0.951048314571381,0.308999896049500,0.000000000000000,0.262855917215347,-0.808984637260437,-0.525711834430695 + ,-0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + ,-0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + ,-0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,-0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,-0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.951048314571381,-0.309030413627625,0.000000000000000,-0.262855917215347,-0.809015154838562,0.525711834430695 + ,-0.951048314571381,0.309030413627625,0.000000000000000,0.262855917215347,0.809015154838562,-0.525711834430695 + ,0.951048314571381,-0.309030413627625,0.000000000000000,-0.262855917215347,-0.809015154838562,0.525711834430695 + ,-0.951048314571381,0.309030413627625,0.000000000000000,0.262855917215347,0.809015154838562,-0.525711834430695 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,0.951048314571381,0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,0.951048314571381,0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,-0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,-0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + ,-0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.951048314571381,-0.309030413627625,0.000000000000000,-0.262855917215347,0.809015154838562,0.525711834430695 + ,0.951048314571381,0.309030413627625,0.000000000000000,0.262855917215347,-0.809015154838562,-0.525711834430695 + ,-0.951048314571381,-0.309030413627625,0.000000000000000,-0.262855917215347,0.809015154838562,0.525711834430695 + ,0.951048314571381,0.309030413627625,0.000000000000000,0.262855917215347,-0.809015154838562,-0.525711834430695 + ,0.951048314571381,-0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,-0.951048314571381,0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + ,0.951048314571381,-0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,-0.951048314571381,0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,0.587786495685577,0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,-0.587786495685577,-0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,0.587786495685577,0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,-0.587786495685577,-0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,0.000000000000000,0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,-0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,0.000000000000000,0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,-0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,-0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,-0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,-0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,-0.951048314571381,0.309030413627625,0.000000000000000,-0.262855917215347,-0.809015154838562,0.525711834430695 + ,0.951048314571381,-0.309030413627625,0.000000000000000,0.262855917215347,0.809015154838562,-0.525711834430695 + ,-0.951048314571381,0.309030413627625,0.000000000000000,-0.262855917215347,-0.809015154838562,0.525711834430695 + ,0.951048314571381,-0.309030413627625,0.000000000000000,0.262855917215347,0.809015154838562,-0.525711834430695 + ,-0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + ,-0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + ,0.000000000000000,0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,-0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,0.000000000000000,0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,-0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.951048314571381,0.308999896049500,0.000000000000000,-0.262855917215347,0.808984637260437,0.525711834430695 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,0.262855917215347,-0.808984637260437,-0.525711834430695 + ,0.951048314571381,0.308999896049500,0.000000000000000,-0.262855917215347,0.808984637260437,0.525711834430695 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,0.262855917215347,-0.808984637260437,-0.525711834430695 + ,-0.587786495685577,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587786495685577,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,-0.587786495685577,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587786495685577,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.587786495685577,0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,-0.587786495685577,-0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,0.587786495685577,0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,-0.587786495685577,-0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,-0.587755978107452,0.809015154838562,0.000000000000000,-0.425305962562561,-0.308999896049500,0.850642442703247 + ,0.587755978107452,-0.809015154838562,0.000000000000000,0.425305962562561,0.308999896049500,-0.850642442703247 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,-0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,-0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,0.499984741210938,0.525711834430695 + ,0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,-0.499984741210938,-0.525711834430695 + ,0.951048314571381,-0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,-0.951048314571381,0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + ,0.951048314571381,-0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,-0.951048314571381,0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.951048314571381,-0.308999896049500,0.000000000000000,-0.262855917215347,-0.809015154838562,0.525711834430695 + ,-0.951048314571381,0.308999896049500,0.000000000000000,0.262855917215347,0.809015154838562,-0.525711834430695 + ,0.951048314571381,-0.308999896049500,0.000000000000000,-0.262855917215347,-0.809015154838562,0.525711834430695 + ,-0.951048314571381,0.308999896049500,0.000000000000000,0.262855917215347,0.809015154838562,-0.525711834430695 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,0.951048314571381,0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,-0.951048314571381,-0.308999896049500,0.000000000000000,0.162450030446053,-0.499984741210938,0.850642442703247 + ,0.951048314571381,0.308999896049500,0.000000000000000,-0.162450030446053,0.499984741210938,-0.850642442703247 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.525711834430695,0.000000000000000,0.850642442703247 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.525711834430695,0.000000000000000,-0.850642442703247 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,0.587755978107452,0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,0.688161849975586,-0.499984741210938,0.525711834430695 + ,0.587755978107452,0.809015154838562,0.000000000000000,-0.688161849975586,0.499984741210938,-0.525711834430695 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,0.000000000000000,-0.999969482421875,0.000000000000000,-0.850642442703247,0.000000000000000,0.525711834430695 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.850642442703247,0.000000000000000,-0.525711834430695 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.951048314571381,0.309030413627625,0.000000000000000,-0.262855917215347,0.809015154838562,0.525711834430695 + ,-0.951048314571381,-0.309030413627625,0.000000000000000,0.262855917215347,-0.809015154838562,-0.525711834430695 + ,0.951048314571381,0.309030413627625,0.000000000000000,-0.262855917215347,0.809015154838562,0.525711834430695 + ,-0.951048314571381,-0.309030413627625,0.000000000000000,0.262855917215347,-0.809015154838562,-0.525711834430695 + ,-0.951048314571381,0.308999896049500,0.000000000000000,-0.262855917215347,-0.808984637260437,0.525711834430695 + ,0.951048314571381,-0.308999896049500,0.000000000000000,0.262855917215347,0.808984637260437,-0.525711834430695 + ,-0.951048314571381,0.308999896049500,0.000000000000000,-0.262855917215347,-0.808984637260437,0.525711834430695 + ,0.951048314571381,-0.308999896049500,0.000000000000000,0.262855917215347,0.808984637260437,-0.525711834430695 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,-0.587755978107452,-0.809015154838562,0.000000000000000,-0.425305962562561,0.308999896049500,0.850642442703247 + ,0.587755978107452,0.809015154838562,0.000000000000000,0.425305962562561,-0.308999896049500,-0.850642442703247 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.808984637260437,0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,-0.808984637260437,-0.587786495685577,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,0.951048314571381,0.309030413627625,0.000000000000000,-0.262855917215347,0.809015154838562,0.525711834430695 + ,-0.951048314571381,-0.309030413627625,0.000000000000000,0.262855917215347,-0.809015154838562,-0.525711834430695 + ,0.951048314571381,0.309030413627625,0.000000000000000,-0.262855917215347,0.809015154838562,0.525711834430695 + ,-0.951048314571381,-0.309030413627625,0.000000000000000,0.262855917215347,-0.809015154838562,-0.525711834430695 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.308999896049500,0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,0.999969482421875 + ,0.308999896049500,-0.951048314571381,0.000000000000000,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + ,-0.951048314571381,0.308999896049500,0.000000000000000,0.162450030446053,0.499984741210938,0.850642442703247 + ,0.951048314571381,-0.308999896049500,0.000000000000000,-0.162450030446053,-0.499984741210938,-0.850642442703247 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + } + } + Model: "Model::Producer Perspective", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,71.299999999999997,287.500000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",10.000000 + Property: "FarPlane", "double", "",4000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",0 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,71.300000,287.500000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Top", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Bottom", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,-4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,-4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Front", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Back", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,-4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,-4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Right", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Left", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: -4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Material: "Material::unnamed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Phong" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",0.5000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",1.0000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "SpecularFactor", "double", "",0.2000 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",0.8,0.8,0.8 + Property: "Shininess", "double", "",20.0 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 3 + PoseNode: { + Node: "Model::blend_root" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::BuckyBallAtoms" + Matrix: -0.054317414760590,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000002374290,0.054317414760590,0.000000000000000,0.000000000000000,-0.054317414760590,0.000000002374290,0.000000000000000,0.045528739690781,0.408940017223358,0.140125438570976,1.000000000000000 + } + PoseNode: { + Node: "Model::BuckyBallLines" + Matrix: 0.500000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.000000021855694,-0.500000000000000,0.000000000000000,0.000000000000000,0.500000000000000,-0.000000021855694,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",100 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::blend_root", "Null" { + } + Model: "Model::BuckyBallAtoms", "Mesh" { + } + Model: "Model::BuckyBallLines", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::unnamed", "" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::blend_root", "Model::Scene" + Connect: "OO", "Model::BuckyBallAtoms", "Model::blend_root" + Connect: "OO", "Model::BuckyBallLines", "Model::blend_root" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" + Take: "Default Take" { + FileName: "Default_Take.tak" + LocalTime: 0,479181389250 + ReferenceTime: 0,479181389250 + + ;Models animation + ;---------------------------------------------------- + Model: "Model::BuckyBallAtoms" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.045528739690781 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.045528739690781,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.408940017223358 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.408940017223358,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.140125438570976 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.140125438570976,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: 89.999995674159678 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,89.999995674159678,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 180.000005008697713 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,180.000005008697713,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.054317414760590 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.054317414760590,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.054317414760590 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.054317414760590,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -0.054317414760590 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.054317414760590,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + Model: "Model::BuckyBallLines" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + } +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FlogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.1,0.1,0.1,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 479181389250 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/Assets/resources/Ball Pack/Models/BuckyBall.fbx.meta b/Assets/resources/Ball Pack/Models/BuckyBall.fbx.meta new file mode 100644 index 00000000..7ce75095 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/BuckyBall.fbx.meta @@ -0,0 +1,120 @@ +fileFormatVersion: 2 +guid: a97bdcf094fff104d9f67b004b505dd0 +ModelImporter: + serializedVersion: 20200 + internalIDToNameTable: + - first: + 43: 4300000 + second: Atoms + - first: + 43: 4300002 + second: Lines + - first: + 43: 4300004 + second: BuckyBallLines + - first: + 43: 4300006 + second: BuckyBallAtoms + - first: + 1001: 100100000 + second: DataTemplate __Singleton__ + - first: + 74: 1989289236423521904 + second: Default Take + externalObjects: {} + materials: + materialImportMode: 1 + materialName: 3 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 0 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + fileIdsGeneration: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + meshOptimizationFlags: -1 + indexFormat: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 0 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 4 + normalCalculationMode: 0 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 1 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/EyeBall.fbx b/Assets/resources/Ball Pack/Models/EyeBall.fbx new file mode 100644 index 00000000..47e2cb11 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/EyeBall.fbx @@ -0,0 +1,2497 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2011 + Month: 03 + Day: 16 + Hour: 12 + Minute: 48 + Second: 40 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2011-03-16 12:48:40:000" +Creator: "Blender version 2.56 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 14 + ObjectType: "Model" { + Count: 10 + } + ObjectType: "Geometry" { + Count: 1 + } + ObjectType: "Material" { + Count: 1 + } + ObjectType: "Texture" { + Count: 1 + } + ObjectType: "Video" { + Count: 1 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::Camera Switcher", "CameraSwitcher" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Camera Index", "Integer", "A+",100 + } + MultiLayer: 0 + MultiTake: 1 + Hidden: "True" + Shading: W + Culling: "CullingOff" + Version: 101 + Name: "Model::Camera Switcher" + CameraId: 0 + CameraName: 100 + CameraIndexName: + } + Model: "Model::blend_root", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::EyeBall", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-89.999995674159678,179.999991348319355,-0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.500000000000000,0.500000000000000,0.500000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.191341,0.038060,-0.980785,0.375330,0.074658,-0.923880,0.544895,0.108386,-0.831470,0.693520,0.137950,-0.707107,0.815493,0.162212,-0.555570,0.906127,0.180240,-0.382683,0.961940,0.191342,-0.195090 + ,0.980785,0.195090,0.000000,0.961940,0.191342,0.195090,0.906127,0.180240,0.382683,0.815493,0.162212,0.555570,0.693520,0.137950,0.707107,0.544895,0.108386,0.831470,0.375330,0.074658,0.923880 + ,0.191342,0.038060,0.980785,0.180240,0.074658,0.980785,0.353553,0.146447,0.923880,0.513280,0.212608,0.831470,0.653281,0.270598,0.707107,0.768178,0.318190,0.555570,0.853553,0.353553,0.382683 + ,0.906127,0.375330,0.195090,0.923879,0.382683,0.000000,0.906127,0.375330,-0.195090,0.853553,0.353553,-0.382683,0.768178,0.318190,-0.555570,0.653281,0.270598,-0.707107,0.513280,0.212608,-0.831470 + ,0.353553,0.146447,-0.923880,0.180240,0.074658,-0.980785,0.162211,0.108386,-0.980785,0.318190,0.212607,-0.923880,0.461940,0.308658,-0.831470,0.587938,0.392847,-0.707107,0.691342,0.461940,-0.555570 + ,0.768178,0.513280,-0.382683,0.815493,0.544895,-0.195090,0.831469,0.555570,0.000000,0.815493,0.544895,0.195090,0.768178,0.513280,0.382683,0.691342,0.461940,0.555570,0.587938,0.392847,0.707107 + ,0.461940,0.308658,0.831470,0.318190,0.212608,0.923880,0.162212,0.108386,0.980785,0.137950,0.137950,0.980785,0.270598,0.270598,0.923880,0.392847,0.392847,0.831470,0.500000,0.500000,0.707107 + ,0.587938,0.587938,0.555570,0.653281,0.653281,0.382683,0.693520,0.693520,0.195090,0.707107,0.707107,0.000000,0.693520,0.693520,-0.195090,0.653281,0.653281,-0.382683,0.587938,0.587938,-0.555570 + ,0.500000,0.500000,-0.707107,0.392847,0.392847,-0.831470,0.270598,0.270598,-0.923880,0.137949,0.137949,-0.980785,0.108386,0.162211,-0.980785,0.212607,0.318190,-0.923880,0.308658,0.461940,-0.831470 + ,0.392847,0.587938,-0.707107,0.461940,0.691342,-0.555570,0.513280,0.768178,-0.382683,0.544895,0.815493,-0.195090,0.555570,0.831470,0.000000,0.544895,0.815493,0.195090,0.513280,0.768178,0.382683 + ,0.461940,0.691342,0.555570,0.392847,0.587938,0.707107,0.308658,0.461940,0.831470,0.212608,0.318190,0.923880,0.108386,0.162212,0.980785,0.074658,0.180240,0.980785,0.146447,0.353553,0.923880 + ,0.212607,0.513280,0.831470,0.270598,0.653281,0.707107,0.318190,0.768178,0.555570,0.353553,0.853553,0.382683,0.375330,0.906127,0.195090,0.382683,0.923879,0.000000,0.375330,0.906127,-0.195090 + ,0.353553,0.853553,-0.382683,0.318190,0.768178,-0.555570,0.270598,0.653281,-0.707107,0.212607,0.513280,-0.831470,0.146447,0.353553,-0.923880,0.074658,0.180240,-0.980785,-0.000000,-0.000000,-1.000000 + ,0.038060,0.191341,-0.980785,0.074658,0.375330,-0.923880,0.108386,0.544895,-0.831470,0.137950,0.693520,-0.707107,0.162212,0.815493,-0.555570,0.180240,0.906127,-0.382683,0.191342,0.961940,-0.195090 + ,0.195090,0.980785,0.000000,0.191342,0.961940,0.195090,0.180240,0.906127,0.382683,0.162212,0.815493,0.555570,0.137950,0.693520,0.707107,0.108386,0.544895,0.831470,0.074658,0.375330,0.923880 + ,0.038060,0.191342,0.980785,-0.000000,0.195090,0.980785,-0.000000,0.382683,0.923880,-0.000000,0.555570,0.831470,0.000000,0.707107,0.707107,-0.000000,0.831469,0.555570,0.000000,0.923879,0.382683 + ,-0.000000,0.980785,0.195090,-0.000000,1.000000,0.000000,-0.000000,0.980785,-0.195090,-0.000000,0.923879,-0.382683,-0.000000,0.831469,-0.555570,0.000000,0.707107,-0.707107,-0.000000,0.555570,-0.831470 + ,-0.000000,0.382683,-0.923880,-0.000000,0.195090,-0.980785,-0.038060,0.191341,-0.980785,-0.074658,0.375330,-0.923880,-0.108386,0.544895,-0.831470,-0.137950,0.693520,-0.707107,-0.162212,0.815493,-0.555570 + ,-0.180240,0.906127,-0.382683,-0.191342,0.961940,-0.195090,-0.195090,0.980785,0.000000,-0.191342,0.961940,0.195090,-0.180240,0.906127,0.382683,-0.162212,0.815493,0.555570,-0.137950,0.693520,0.707107 + ,-0.108386,0.544895,0.831470,-0.074658,0.375330,0.923880,-0.038060,0.191342,0.980785,-0.074658,0.180240,0.980785,-0.146447,0.353553,0.923880,-0.212608,0.513280,0.831470,-0.270598,0.653281,0.707107 + ,-0.318190,0.768178,0.555570,-0.353553,0.853553,0.382683,-0.375330,0.906127,0.195090,-0.382683,0.923879,0.000000,-0.375330,0.906127,-0.195090,-0.353553,0.853553,-0.382683,-0.318190,0.768178,-0.555570 + ,-0.270598,0.653281,-0.707107,-0.212607,0.513280,-0.831470,-0.146447,0.353553,-0.923880,-0.074658,0.180240,-0.980785,-0.108386,0.162211,-0.980785,-0.212607,0.318189,-0.923880,-0.308658,0.461940,-0.831470 + ,-0.392847,0.587938,-0.707107,-0.461940,0.691342,-0.555570,-0.513280,0.768178,-0.382683,-0.544895,0.815493,-0.195090,-0.555570,0.831469,0.000000,-0.544895,0.815493,0.195090,-0.513280,0.768178,0.382683 + ,-0.461940,0.691342,0.555570,-0.392847,0.587938,0.707107,-0.308658,0.461940,0.831470,-0.212608,0.318190,0.923880,-0.108386,0.162212,0.980785,-0.137950,0.137950,0.980785,-0.270598,0.270598,0.923880 + ,-0.392847,0.392847,0.831470,-0.500000,0.500000,0.707107,-0.587938,0.587938,0.555570,-0.653281,0.653281,0.382683,-0.693520,0.693520,0.195090,-0.707107,0.707106,0.000000,-0.693520,0.693520,-0.195090 + ,-0.653281,0.653281,-0.382683,-0.587938,0.587938,-0.555570,-0.500000,0.500000,-0.707107,-0.392847,0.392847,-0.831470,-0.270598,0.270598,-0.923880,-0.137949,0.137949,-0.980785,-0.162211,0.108386,-0.980785 + ,-0.318189,0.212607,-0.923880,-0.461940,0.308658,-0.831470,-0.587938,0.392847,-0.707107,-0.691342,0.461940,-0.555570,-0.768178,0.513280,-0.382683,-0.815493,0.544895,-0.195090,-0.831469,0.555570,0.000000 + ,-0.815493,0.544895,0.195090,-0.768178,0.513280,0.382683,-0.691342,0.461940,0.555570,-0.587938,0.392847,0.707107,-0.461940,0.308658,0.831470,-0.318190,0.212607,0.923880,-0.162212,0.108386,0.980785 + ,-0.180240,0.074658,0.980785,-0.353553,0.146447,0.923880,-0.513280,0.212607,0.831470,-0.653281,0.270598,0.707107,-0.768178,0.318189,0.555570,-0.853553,0.353553,0.382683,-0.906127,0.375330,0.195090 + ,-0.923879,0.382683,0.000000,-0.906127,0.375330,-0.195090,-0.853553,0.353553,-0.382683,-0.768178,0.318189,-0.555570,-0.653281,0.270598,-0.707107,-0.513280,0.212607,-0.831470,-0.353553,0.146447,-0.923880 + ,-0.180240,0.074658,-0.980785,-0.191341,0.038060,-0.980785,-0.375330,0.074658,-0.923880,-0.544895,0.108386,-0.831470,-0.693520,0.137950,-0.707107,-0.815493,0.162212,-0.555570,-0.906127,0.180240,-0.382683 + ,-0.961939,0.191342,-0.195090,-0.980785,0.195090,0.000000,-0.961939,0.191342,0.195090,-0.906127,0.180240,0.382683,-0.815493,0.162212,0.555570,-0.693520,0.137950,0.707107,-0.544895,0.108386,0.831470 + ,-0.375330,0.074658,0.923880,-0.191342,0.038060,0.980785,-0.195090,-0.000000,0.980785,-0.382683,-0.000000,0.923880,-0.555570,-0.000000,0.831470,-0.707107,-0.000000,0.707107,-0.831469,-0.000000,0.555570 + ,-0.923879,0.000000,0.382683,-0.980785,-0.000000,0.195090,-0.999999,-0.000000,0.000000,-0.980785,-0.000000,-0.195090,-0.923879,-0.000000,-0.382683,-0.831469,-0.000000,-0.555570,-0.707107,-0.000000,-0.707107 + ,-0.555570,-0.000000,-0.831470,-0.382683,-0.000000,-0.923880,-0.195090,-0.000000,-0.980785,-0.191341,-0.038060,-0.980785,-0.375330,-0.074658,-0.923880,-0.544895,-0.108386,-0.831470,-0.693520,-0.137950,-0.707107 + ,-0.815493,-0.162212,-0.555570,-0.906127,-0.180240,-0.382683,-0.961939,-0.191342,-0.195090,-0.980785,-0.195091,0.000000,-0.961939,-0.191342,0.195090,-0.906127,-0.180240,0.382683,-0.815493,-0.162212,0.555570 + ,-0.693520,-0.137950,0.707107,-0.544895,-0.108386,0.831470,-0.375330,-0.074658,0.923880,-0.191342,-0.038060,0.980785,-0.180240,-0.074658,0.980785,-0.353553,-0.146447,0.923880,-0.513280,-0.212608,0.831470 + ,-0.653281,-0.270598,0.707107,-0.768177,-0.318190,0.555570,-0.853553,-0.353553,0.382683,-0.906127,-0.375330,0.195090,-0.923879,-0.382683,0.000000,-0.906127,-0.375330,-0.195090,-0.853553,-0.353553,-0.382683 + ,-0.768177,-0.318190,-0.555570,-0.653281,-0.270598,-0.707107,-0.513280,-0.212607,-0.831470,-0.353553,-0.146447,-0.923880,-0.180240,-0.074658,-0.980785,-0.162211,-0.108386,-0.980785,-0.318189,-0.212607,-0.923880 + ,-0.461939,-0.308658,-0.831470,-0.587938,-0.392847,-0.707107,-0.691341,-0.461940,-0.555570,-0.768178,-0.513280,-0.382683,-0.815493,-0.544895,-0.195090,-0.831469,-0.555570,0.000000,-0.815493,-0.544895,0.195090 + ,-0.768178,-0.513280,0.382683,-0.691341,-0.461940,0.555570,-0.587938,-0.392847,0.707107,-0.461939,-0.308658,0.831470,-0.318190,-0.212608,0.923880,-0.162212,-0.108386,0.980785,-0.137950,-0.137950,0.980785 + ,-0.270598,-0.270598,0.923880,-0.392847,-0.392847,0.831470,-0.500000,-0.500000,0.707107,-0.587937,-0.587938,0.555570,-0.653281,-0.653281,0.382683,-0.693520,-0.693520,0.195090,-0.707106,-0.707106,0.000000 + ,-0.693520,-0.693520,-0.195090,-0.653281,-0.653281,-0.382683,-0.587937,-0.587938,-0.555570,-0.500000,-0.500000,-0.707107,-0.392847,-0.392847,-0.831470,-0.270598,-0.270598,-0.923880,-0.137949,-0.137950,-0.980785 + ,-0.108386,-0.162211,-0.980785,-0.212607,-0.318189,-0.923880,-0.308658,-0.461940,-0.831470,-0.392847,-0.587938,-0.707107,-0.461939,-0.691341,-0.555570,-0.513280,-0.768178,-0.382683,-0.544895,-0.815493,-0.195090 + ,-0.555569,-0.831469,0.000000,-0.544895,-0.815493,0.195090,-0.513280,-0.768177,0.382683,-0.461939,-0.691341,0.555570,-0.392847,-0.587938,0.707107,-0.308658,-0.461940,0.831470,-0.212607,-0.318190,0.923880 + ,-0.108386,-0.162212,0.980785,0.000000,0.000000,1.000000,-0.074658,-0.180240,0.980785,-0.146447,-0.353553,0.923880,-0.212607,-0.513280,0.831470,-0.270598,-0.653281,0.707107,-0.318189,-0.768177,0.555570 + ,-0.353553,-0.853553,0.382683,-0.375330,-0.906127,0.195090,-0.382683,-0.923879,0.000000,-0.375330,-0.906127,-0.195090,-0.353553,-0.853553,-0.382683,-0.318189,-0.768177,-0.555570,-0.270598,-0.653281,-0.707107 + ,-0.212607,-0.513280,-0.831470,-0.146446,-0.353553,-0.923880,-0.074658,-0.180240,-0.980785,-0.038060,-0.191341,-0.980785,-0.074658,-0.375330,-0.923880,-0.108386,-0.544895,-0.831470,-0.137950,-0.693520,-0.707107 + ,-0.162211,-0.815493,-0.555570,-0.180240,-0.906127,-0.382683,-0.191341,-0.961939,-0.195090,-0.195090,-0.980784,0.000000,-0.191341,-0.961939,0.195090,-0.180240,-0.906127,0.382683,-0.162211,-0.815493,0.555570 + ,-0.137950,-0.693520,0.707107,-0.108386,-0.544895,0.831470,-0.074658,-0.375330,0.923880,-0.038060,-0.191342,0.980785,0.000000,-0.195090,0.980785,0.000000,-0.382683,0.923880,0.000000,-0.555570,0.831470 + ,0.000000,-0.707107,0.707107,0.000000,-0.831469,0.555570,0.000000,-0.923879,0.382683,0.000000,-0.980785,0.195090,0.000000,-0.999999,0.000000,0.000000,-0.980785,-0.195090,0.000000,-0.923879,-0.382683 + ,0.000000,-0.831469,-0.555570,0.000000,-0.707107,-0.707107,0.000000,-0.555570,-0.831470,0.000000,-0.382683,-0.923880,0.000000,-0.195090,-0.980785,0.038060,-0.191341,-0.980785,0.074658,-0.375330,-0.923880 + ,0.108386,-0.544895,-0.831470,0.137950,-0.693520,-0.707107,0.162212,-0.815493,-0.555570,0.180240,-0.906127,-0.382683,0.191342,-0.961939,-0.195090,0.195091,-0.980784,0.000000,0.191342,-0.961939,0.195090 + ,0.180240,-0.906127,0.382683,0.162212,-0.815493,0.555570,0.137950,-0.693520,0.707107,0.108386,-0.544895,0.831470,0.074658,-0.375330,0.923880,0.038060,-0.191342,0.980785,0.074658,-0.180240,0.980785 + ,0.146447,-0.353553,0.923880,0.212607,-0.513279,0.831470,0.270598,-0.653281,0.707107,0.318190,-0.768177,0.555570,0.353553,-0.853553,0.382683,0.375330,-0.906127,0.195090,0.382683,-0.923878,0.000000 + ,0.375330,-0.906127,-0.195090,0.353553,-0.853553,-0.382683,0.318190,-0.768177,-0.555570,0.270598,-0.653281,-0.707107,0.212607,-0.513280,-0.831470,0.146447,-0.353553,-0.923880,0.074658,-0.180240,-0.980785 + ,0.108386,-0.162211,-0.980785,0.212607,-0.318189,-0.923880,0.308658,-0.461939,-0.831470,0.392847,-0.587938,-0.707107,0.461940,-0.691341,-0.555570,0.513280,-0.768177,-0.382683,0.544895,-0.815493,-0.195090 + ,0.555570,-0.831468,0.000000,0.544895,-0.815493,0.195090,0.513280,-0.768177,0.382683,0.461940,-0.691341,0.555570,0.392847,-0.587938,0.707107,0.308658,-0.461939,0.831470,0.212607,-0.318189,0.923880 + ,0.108386,-0.162212,0.980785,0.137950,-0.137950,0.980785,0.270598,-0.270598,0.923880,0.392847,-0.392847,0.831470,0.500000,-0.500000,0.707107,0.587938,-0.587937,0.555570,0.653281,-0.653281,0.382683 + ,0.693520,-0.693519,0.195090,0.707106,-0.707106,0.000000,0.693520,-0.693519,-0.195090,0.653281,-0.653281,-0.382683,0.587938,-0.587937,-0.555570,0.500000,-0.500000,-0.707107,0.392847,-0.392847,-0.831470 + ,0.270598,-0.270598,-0.923880,0.137949,-0.137949,-0.980785,0.162211,-0.108386,-0.980785,0.318189,-0.212607,-0.923880,0.461939,-0.308658,-0.831470,0.587938,-0.392847,-0.707107,0.691341,-0.461939,-0.555570 + ,0.768178,-0.513280,-0.382683,0.815493,-0.544895,-0.195090,0.831469,-0.555569,0.000000,0.815493,-0.544895,0.195090,0.768177,-0.513280,0.382683,0.691341,-0.461939,0.555570,0.587938,-0.392847,0.707107 + ,0.461939,-0.308658,0.831470,0.318190,-0.212607,0.923880,0.162212,-0.108386,0.980785,0.180240,-0.074658,0.980785,0.353553,-0.146446,0.923880,0.513279,-0.212607,0.831470,0.653281,-0.270598,0.707107 + ,0.768177,-0.318189,0.555570,0.853553,-0.353553,0.382683,0.906127,-0.375330,0.195090,0.923879,-0.382683,0.000000,0.906127,-0.375330,-0.195090,0.853553,-0.353553,-0.382683,0.768177,-0.318189,-0.555570 + ,0.653281,-0.270598,-0.707107,0.513280,-0.212607,-0.831470,0.353553,-0.146446,-0.923880,0.180240,-0.074658,-0.980785,0.191341,-0.038060,-0.980785,0.375330,-0.074658,-0.923880,0.544895,-0.108386,-0.831470 + ,0.693520,-0.137950,-0.707107,0.815493,-0.162211,-0.555570,0.906127,-0.180240,-0.382683,0.961939,-0.191341,-0.195090,0.980784,-0.195090,0.000000,0.961939,-0.191341,0.195090,0.906127,-0.180240,0.382683 + ,0.815493,-0.162211,0.555570,0.693520,-0.137950,0.707107,0.544895,-0.108386,0.831470,0.375330,-0.074658,0.923880,0.191342,-0.038060,0.980785,0.195090,0.000000,0.980785,0.382683,0.000000,0.923880 + ,0.555570,0.000000,0.831470,0.707107,0.000000,0.707107,0.831469,0.000000,0.555570,0.923879,0.000000,0.382683,0.980785,0.000000,0.195090,0.999999,0.000000,0.000000,0.980785,0.000000,-0.195090 + ,0.923879,0.000000,-0.382683,0.831469,0.000000,-0.555570,0.707107,0.000000,-0.707107,0.555570,0.000000,-0.831470,0.382683,0.000000,-0.923880,0.195090,0.000000,-0.980785 + PolygonVertexIndex: 90,0,-482,481,0,1,-481,480,1,2,-480,479,2,3,-479,478,3,4,-478,477,4,5,-477,476,5,6,-476,475,6,7,-475,474,7,8,-474,473,8,9,-473,472,9,10,-472,471,10,11,-471,470,11,12,-470 + ,469,12,13,-469,468,13,14,-468,467,14,-317,14,15,-317,13,16,15,-15,12,17,16,-14,11,18,17,-13,10,19,18,-12,9,20,19,-11,8,21,20,-10,7,22,21,-9,6,23,22,-8,5,24,23,-7 + ,4,25,24,-6,3,26,25,-5,2,27,26,-4,1,28,27,-3,0,29,28,-2,29,0,-91,90,30,-30,29,30,31,-29,28,31,32,-28,27,32,33,-27,26,33,34,-26,25,34,35,-25,24,35,36,-24 + ,23,36,37,-23,22,37,38,-22,21,38,39,-21,20,39,40,-20,19,40,41,-19,18,41,42,-18,17,42,43,-17,16,43,44,-16,15,44,-317,44,45,-317,43,46,45,-45,42,47,46,-44,41,48,47,-43 + ,40,49,48,-42,39,50,49,-41,38,51,50,-40,37,52,51,-39,36,53,52,-38,35,54,53,-37,34,55,54,-36,33,56,55,-35,32,57,56,-34,31,58,57,-33,30,59,58,-32,90,59,-31,90,60,-60 + ,59,60,61,-59,58,61,62,-58,57,62,63,-57,56,63,64,-56,55,64,65,-55,54,65,66,-54,53,66,67,-53,52,67,68,-52,51,68,69,-51,50,69,70,-50,49,70,71,-49,48,71,72,-48,47,72,73,-47 + ,46,73,74,-46,45,74,-317,74,75,-317,73,76,75,-75,72,77,76,-74,71,78,77,-73,70,79,78,-72,69,80,79,-71,68,81,80,-70,67,82,81,-69,66,83,82,-68,65,84,83,-67,64,85,84,-66 + ,63,86,85,-65,62,87,86,-64,61,88,87,-63,60,89,88,-62,90,89,-61,90,91,-90,89,91,92,-89,88,92,93,-88,87,93,94,-87,86,94,95,-86,85,95,96,-85,84,96,97,-84,83,97,98,-83 + ,82,98,99,-82,81,99,100,-81,80,100,101,-80,79,101,102,-79,78,102,103,-78,77,103,104,-77,76,104,105,-76,75,105,-317,105,106,-317,104,107,106,-106,103,108,107,-105,102,109,108,-104,101,110,109,-103 + ,100,111,110,-102,99,112,111,-101,98,113,112,-100,97,114,113,-99,96,115,114,-98,95,116,115,-97,94,117,116,-96,93,118,117,-95,92,119,118,-94,91,120,119,-93,90,120,-92,90,121,-121,120,121,122,-120 + ,119,122,123,-119,118,123,124,-118,117,124,125,-117,116,125,126,-116,115,126,127,-115,114,127,128,-114,113,128,129,-113,112,129,130,-112,111,130,131,-111,110,131,132,-110,109,132,133,-109,108,133,134,-108,107,134,135,-107 + ,106,135,-317,135,136,-317,134,137,136,-136,133,138,137,-135,132,139,138,-134,131,140,139,-133,130,141,140,-132,129,142,141,-131,128,143,142,-130,127,144,143,-129,126,145,144,-128,125,146,145,-127,124,147,146,-126 + ,123,148,147,-125,122,149,148,-124,121,150,149,-123,90,150,-122,90,151,-151,150,151,152,-150,149,152,153,-149,148,153,154,-148,147,154,155,-147,146,155,156,-146,145,156,157,-145,144,157,158,-144,143,158,159,-143 + ,142,159,160,-142,141,160,161,-141,140,161,162,-140,139,162,163,-139,138,163,164,-138,137,164,165,-137,136,165,-317,165,166,-317,164,167,166,-166,163,168,167,-165,162,169,168,-164,161,170,169,-163,160,171,170,-162 + ,159,172,171,-161,158,173,172,-160,157,174,173,-159,156,175,174,-158,155,176,175,-157,154,177,176,-156,153,178,177,-155,152,179,178,-154,151,180,179,-153,90,180,-152,90,181,-181,180,181,182,-180,179,182,183,-179 + ,178,183,184,-178,177,184,185,-177,176,185,186,-176,175,186,187,-175,174,187,188,-174,173,188,189,-173,172,189,190,-172,171,190,191,-171,170,191,192,-170,169,192,193,-169,168,193,194,-168,167,194,195,-167,166,195,-317 + ,195,196,-317,194,197,196,-196,193,198,197,-195,192,199,198,-194,191,200,199,-193,190,201,200,-192,189,202,201,-191,188,203,202,-190,187,204,203,-189,186,205,204,-188,185,206,205,-187,184,207,206,-186,183,208,207,-185 + ,182,209,208,-184,181,210,209,-183,90,210,-182,90,211,-211,210,211,212,-210,209,212,213,-209,208,213,214,-208,207,214,215,-207,206,215,216,-206,205,216,217,-205,204,217,218,-204,203,218,219,-203,202,219,220,-202 + ,201,220,221,-201,200,221,222,-200,199,222,223,-199,198,223,224,-198,197,224,225,-197,196,225,-317,225,226,-317,224,227,226,-226,223,228,227,-225,222,229,228,-224,221,230,229,-223,220,231,230,-222,219,232,231,-221 + ,218,233,232,-220,217,234,233,-219,216,235,234,-218,215,236,235,-217,214,237,236,-216,213,238,237,-215,212,239,238,-214,211,240,239,-213,90,240,-212,90,241,-241,240,241,242,-240,239,242,243,-239,238,243,244,-238 + ,237,244,245,-237,236,245,246,-236,235,246,247,-235,234,247,248,-234,233,248,249,-233,232,249,250,-232,231,250,251,-231,230,251,252,-230,229,252,253,-229,228,253,254,-228,227,254,255,-227,226,255,-317,255,256,-317 + ,254,257,256,-256,253,258,257,-255,252,259,258,-254,251,260,259,-253,250,261,260,-252,249,262,261,-251,248,263,262,-250,247,264,263,-249,246,265,264,-248,245,266,265,-247,244,267,266,-246,243,268,267,-245,242,269,268,-244 + ,241,270,269,-243,90,270,-242,90,271,-271,270,271,272,-270,269,272,273,-269,268,273,274,-268,267,274,275,-267,266,275,276,-266,265,276,277,-265,264,277,278,-264,263,278,279,-263,262,279,280,-262,261,280,281,-261 + ,260,281,282,-260,259,282,283,-259,258,283,284,-258,257,284,285,-257,256,285,-317,285,286,-317,284,287,286,-286,283,288,287,-285,282,289,288,-284,281,290,289,-283,280,291,290,-282,279,292,291,-281,278,293,292,-280 + ,277,294,293,-279,276,295,294,-278,275,296,295,-277,274,297,296,-276,273,298,297,-275,272,299,298,-274,271,300,299,-273,90,300,-272,90,301,-301,300,301,302,-300,299,302,303,-299,298,303,304,-298,297,304,305,-297 + ,296,305,306,-296,295,306,307,-295,294,307,308,-294,293,308,309,-293,292,309,310,-292,291,310,311,-291,290,311,312,-290,289,312,313,-289,288,313,314,-288,287,314,315,-287,286,315,-317,315,317,-317,314,318,317,-316 + ,313,319,318,-315,312,320,319,-314,311,321,320,-313,310,322,321,-312,309,323,322,-311,308,324,323,-310,307,325,324,-309,306,326,325,-308,305,327,326,-307,304,328,327,-306,303,329,328,-305,302,330,329,-304,301,331,330,-303 + ,90,331,-302,90,332,-332,331,332,333,-331,330,333,334,-330,329,334,335,-329,328,335,336,-328,327,336,337,-327,326,337,338,-326,325,338,339,-325,324,339,340,-324,323,340,341,-323,322,341,342,-322,321,342,343,-321 + ,320,343,344,-320,319,344,345,-319,318,345,346,-318,317,346,-317,346,347,-317,345,348,347,-347,344,349,348,-346,343,350,349,-345,342,351,350,-344,341,352,351,-343,340,353,352,-342,339,354,353,-341,338,355,354,-340 + ,337,356,355,-339,336,357,356,-338,335,358,357,-337,334,359,358,-336,333,360,359,-335,332,361,360,-334,90,361,-333,90,362,-362,361,362,363,-361,360,363,364,-360,359,364,365,-359,358,365,366,-358,357,366,367,-357 + ,356,367,368,-356,355,368,369,-355,354,369,370,-354,353,370,371,-353,352,371,372,-352,351,372,373,-351,350,373,374,-350,349,374,375,-349,348,375,376,-348,347,376,-317,376,377,-317,375,378,377,-377,374,379,378,-376 + ,373,380,379,-375,372,381,380,-374,371,382,381,-373,370,383,382,-372,369,384,383,-371,368,385,384,-370,367,386,385,-369,366,387,386,-368,365,388,387,-367,364,389,388,-366,363,390,389,-365,362,391,390,-364,90,391,-363 + ,90,392,-392,391,392,393,-391,390,393,394,-390,389,394,395,-389,388,395,396,-388,387,396,397,-387,386,397,398,-386,385,398,399,-385,384,399,400,-384,383,400,401,-383,382,401,402,-382,381,402,403,-381,380,403,404,-380 + ,379,404,405,-379,378,405,406,-378,377,406,-317,406,407,-317,405,408,407,-407,404,409,408,-406,403,410,409,-405,402,411,410,-404,401,412,411,-403,400,413,412,-402,399,414,413,-401,398,415,414,-400,397,416,415,-399 + ,396,417,416,-398,395,418,417,-397,394,419,418,-396,393,420,419,-395,392,421,420,-394,90,421,-393,90,422,-422,421,422,423,-421,420,423,424,-420,419,424,425,-419,418,425,426,-418,417,426,427,-417,416,427,428,-416 + ,415,428,429,-415,414,429,430,-414,413,430,431,-413,412,431,432,-412,411,432,433,-411,410,433,434,-410,409,434,435,-409,408,435,436,-408,407,436,-317,436,437,-317,435,438,437,-437,434,439,438,-436,433,440,439,-435 + ,432,441,440,-434,431,442,441,-433,430,443,442,-432,429,444,443,-431,428,445,444,-430,427,446,445,-429,426,447,446,-428,425,448,447,-427,424,449,448,-426,423,450,449,-425,422,451,450,-424,90,451,-423,90,452,-452 + ,451,452,453,-451,450,453,454,-450,449,454,455,-449,448,455,456,-448,447,456,457,-447,446,457,458,-446,445,458,459,-445,444,459,460,-444,443,460,461,-443,442,461,462,-442,441,462,463,-441,440,463,464,-440,439,464,465,-439 + ,438,465,466,-438,437,466,-317,466,467,-317,465,468,467,-467,464,469,468,-466,463,470,469,-465,462,471,470,-464,461,472,471,-463,460,473,472,-462,459,474,473,-461,458,475,474,-460,457,476,475,-459,456,477,476,-458 + ,455,478,477,-457,454,479,478,-456,453,480,479,-455,452,481,480,-454,90,481,-453 + Edges: 0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13 + ,13,14,14,15,15,16,13,16,16,17,12,17,17,18,11,18,18,19,10,19,19,20,9,20,20,21 + ,8,21,21,22,7,22,22,23,6,23,23,24,5,24,24,25,4,25,25,26,3,26,26,27,2,27 + ,27,28,1,28,28,29,0,29,29,30,28,31,30,31,27,32,31,32,26,33,32,33,25,34,33,34 + ,24,35,34,35,23,36,35,36,22,37,36,37,21,38,37,38,20,39,38,39,19,40,39,40,18,41 + ,40,41,17,42,41,42,16,43,42,43,15,44,43,44,44,45,45,46,43,46,46,47,42,47,47,48 + ,41,48,48,49,40,49,49,50,39,50,50,51,38,51,51,52,37,52,52,53,36,53,53,54,35,54 + ,54,55,34,55,55,56,33,56,56,57,32,57,57,58,31,58,58,59,30,59,59,60,58,61,60,61 + ,57,62,61,62,56,63,62,63,55,64,63,64,54,65,64,65,53,66,65,66,52,67,66,67,51,68 + ,67,68,50,69,68,69,49,70,69,70,48,71,70,71,47,72,71,72,46,73,72,73,45,74,73,74 + ,74,75,75,76,73,76,76,77,72,77,77,78,71,78,78,79,70,79,79,80,69,80,80,81,68,81 + ,81,82,67,82,82,83,66,83,83,84,65,84,84,85,64,85,85,86,63,86,86,87,62,87,87,88 + ,61,88,88,89,60,89,89,90,89,91,88,92,91,92,87,93,92,93,86,94,93,94,85,95,94,95 + ,84,96,95,96,83,97,96,97,82,98,97,98,81,99,98,99,80,100,99,100,79,101,100,101,78,102 + ,101,102,77,103,102,103,76,104,103,104,75,105,104,105,105,106,106,107,104,107,107,108,103,108,108,109 + ,102,109,109,110,101,110,110,111,100,111,111,112,99,112,112,113,98,113,113,114,97,114,114,115,96,115 + ,115,116,95,116,116,117,94,117,117,118,93,118,118,119,92,119,119,120,91,120,120,121,119,122,121,122 + ,118,123,122,123,117,124,123,124,116,125,124,125,115,126,125,126,114,127,126,127,113,128,127,128,112,129 + ,128,129,111,130,129,130,110,131,130,131,109,132,131,132,108,133,132,133,107,134,133,134,106,135,134,135 + ,135,136,136,137,134,137,137,138,133,138,138,139,132,139,139,140,131,140,140,141,130,141,141,142,129,142 + ,142,143,128,143,143,144,127,144,144,145,126,145,145,146,125,146,146,147,124,147,147,148,123,148,148,149 + ,122,149,149,150,121,150,150,151,149,152,151,152,148,153,152,153,147,154,153,154,146,155,154,155,145,156 + ,155,156,144,157,156,157,143,158,157,158,142,159,158,159,141,160,159,160,140,161,160,161,139,162,161,162 + ,138,163,162,163,137,164,163,164,136,165,164,165,165,166,166,167,164,167,167,168,163,168,168,169,162,169 + ,169,170,161,170,170,171,160,171,171,172,159,172,172,173,158,173,173,174,157,174,174,175,156,175,175,176 + ,155,176,176,177,154,177,177,178,153,178,178,179,152,179,179,180,151,180,180,181,179,182,181,182,178,183 + ,182,183,177,184,183,184,176,185,184,185,175,186,185,186,174,187,186,187,173,188,187,188,172,189,188,189 + ,171,190,189,190,170,191,190,191,169,192,191,192,168,193,192,193,167,194,193,194,166,195,194,195,195,196 + ,196,197,194,197,197,198,193,198,198,199,192,199,199,200,191,200,200,201,190,201,201,202,189,202,202,203 + ,188,203,203,204,187,204,204,205,186,205,205,206,185,206,206,207,184,207,207,208,183,208,208,209,182,209 + ,209,210,181,210,210,211,209,212,211,212,208,213,212,213,207,214,213,214,206,215,214,215,205,216,215,216 + ,204,217,216,217,203,218,217,218,202,219,218,219,201,220,219,220,200,221,220,221,199,222,221,222,198,223 + ,222,223,197,224,223,224,196,225,224,225,225,226,226,227,224,227,227,228,223,228,228,229,222,229,229,230 + ,221,230,230,231,220,231,231,232,219,232,232,233,218,233,233,234,217,234,234,235,216,235,235,236,215,236 + ,236,237,214,237,237,238,213,238,238,239,212,239,239,240,211,240,240,241,239,242,241,242,238,243,242,243 + ,237,244,243,244,236,245,244,245,235,246,245,246,234,247,246,247,233,248,247,248,232,249,248,249,231,250 + ,249,250,230,251,250,251,229,252,251,252,228,253,252,253,227,254,253,254,226,255,254,255,255,256,256,257 + ,254,257,257,258,253,258,258,259,252,259,259,260,251,260,260,261,250,261,261,262,249,262,262,263,248,263 + ,263,264,247,264,264,265,246,265,265,266,245,266,266,267,244,267,267,268,243,268,268,269,242,269,269,270 + ,241,270,270,271,269,272,271,272,268,273,272,273,267,274,273,274,266,275,274,275,265,276,275,276,264,277 + ,276,277,263,278,277,278,262,279,278,279,261,280,279,280,260,281,280,281,259,282,281,282,258,283,282,283 + ,257,284,283,284,256,285,284,285,285,286,286,287,284,287,287,288,283,288,288,289,282,289,289,290,281,290 + ,290,291,280,291,291,292,279,292,292,293,278,293,293,294,277,294,294,295,276,295,295,296,275,296,296,297 + ,274,297,297,298,273,298,298,299,272,299,299,300,271,300,300,301,299,302,301,302,298,303,302,303,297,304 + ,303,304,296,305,304,305,295,306,305,306,294,307,306,307,293,308,307,308,292,309,308,309,291,310,309,310 + ,290,311,310,311,289,312,311,312,288,313,312,313,287,314,313,314,286,315,314,315,316,317,315,317,317,318 + ,314,318,318,319,313,319,319,320,312,320,320,321,311,321,321,322,310,322,322,323,309,323,323,324,308,324 + ,324,325,307,325,325,326,306,326,326,327,305,327,327,328,304,328,328,329,303,329,329,330,302,330,330,331 + ,301,331,331,332,330,333,332,333,329,334,333,334,328,335,334,335,327,336,335,336,326,337,336,337,325,338 + ,337,338,324,339,338,339,323,340,339,340,322,341,340,341,321,342,341,342,320,343,342,343,319,344,343,344 + ,318,345,344,345,317,346,345,346,346,347,347,348,345,348,348,349,344,349,349,350,343,350,350,351,342,351 + ,351,352,341,352,352,353,340,353,353,354,339,354,354,355,338,355,355,356,337,356,356,357,336,357,357,358 + ,335,358,358,359,334,359,359,360,333,360,360,361,332,361,361,362,360,363,362,363,359,364,363,364,358,365 + ,364,365,357,366,365,366,356,367,366,367,355,368,367,368,354,369,368,369,353,370,369,370,352,371,370,371 + ,351,372,371,372,350,373,372,373,349,374,373,374,348,375,374,375,347,376,375,376,376,377,377,378,375,378 + ,378,379,374,379,379,380,373,380,380,381,372,381,381,382,371,382,382,383,370,383,383,384,369,384,384,385 + ,368,385,385,386,367,386,386,387,366,387,387,388,365,388,388,389,364,389,389,390,363,390,390,391,362,391 + ,391,392,390,393,392,393,389,394,393,394,388,395,394,395,387,396,395,396,386,397,396,397,385,398,397,398 + ,384,399,398,399,383,400,399,400,382,401,400,401,381,402,401,402,380,403,402,403,379,404,403,404,378,405 + ,404,405,377,406,405,406,406,407,407,408,405,408,408,409,404,409,409,410,403,410,410,411,402,411,411,412 + ,401,412,412,413,400,413,413,414,399,414,414,415,398,415,415,416,397,416,416,417,396,417,417,418,395,418 + ,418,419,394,419,419,420,393,420,420,421,392,421,421,422,420,423,422,423,419,424,423,424,418,425,424,425 + ,417,426,425,426,416,427,426,427,415,428,427,428,414,429,428,429,413,430,429,430,412,431,430,431,411,432 + ,431,432,410,433,432,433,409,434,433,434,408,435,434,435,407,436,435,436,436,437,437,438,435,438,438,439 + ,434,439,439,440,433,440,440,441,432,441,441,442,431,442,442,443,430,443,443,444,429,444,444,445,428,445 + ,445,446,427,446,446,447,426,447,447,448,425,448,448,449,424,449,449,450,423,450,450,451,422,451,451,452 + ,450,453,452,453,449,454,453,454,448,455,454,455,447,456,455,456,446,457,456,457,445,458,457,458,444,459 + ,458,459,443,460,459,460,442,461,460,461,441,462,461,462,440,463,462,463,439,464,463,464,438,465,464,465 + ,437,466,465,466,466,467,467,468,465,468,468,469,464,469,469,470,463,470,470,471,462,471,471,472,461,472 + ,472,473,460,473,473,474,459,474,474,475,458,475,475,476,457,476,476,477,456,477,477,478,455,478,478,479 + ,454,479,479,480,453,480,480,481,452,481,90,481,316,467,316,466,90,452,90,451,316,437,316,436,90,422 + ,90,421,316,407,316,406,90,392,90,391,316,377,316,376,90,362,90,361,316,347,316,346,90,332,90,331 + ,315,316,90,301,90,300,286,316,285,316,90,271,90,270,256,316,255,316,90,241,90,240,226,316,225,316 + ,90,211,90,210,196,316,195,316,90,181,90,180,166,316,165,316,90,151,90,150,136,316,135,316,90,121 + ,90,120,106,316,105,316,90,91,75,316,74,316,60,90,59,90,45,316,44,316,30,90,29,90,15,316 + ,14,316,14,467,13,468,12,469,11,470,10,471,9,472,8,473,7,474,6,475,5,476,4,477,3,478 + ,2,479,1,480,0,90,0,481 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: 0.191320538520813,0.038056582212448,-0.980773329734802,0.375286102294922,0.074648275971413,-0.923886835575104 + ,0.544846951961517,0.108371227979660,-0.831476807594299,0.693472087383270,0.137913137674332,-0.707113862037659 + ,0.815454602241516,0.162205874919891,-0.555589437484741,0.906094551086426,0.180211797356606,-0.382702112197876 + ,0.961912870407104,0.191320538520813,-0.195104837417603,0.980773329734802,0.195074319839478,0.000000000000000 + ,0.961912870407104,0.191320538520813,0.195104837417603,0.906094551086426,0.180211797356606,0.382702112197876 + ,0.815454602241516,0.162205874919891,0.555589437484741,0.693472087383270,0.137913137674332,0.707113862037659 + ,0.544846951961517,0.108371227979660,0.831476807594299,0.375286102294922,0.074648275971413,0.923886835575104 + ,0.191320538520813,0.038026064634323,0.980773329734802,0.180211797356606,0.074648275971413,0.980773329734802 + ,0.353495895862579,0.146427810192108,0.923886835575104,0.513229787349701,0.212591931223869,0.831476807594299 + ,0.653248667716980,0.270577102899551,0.707113862037659,0.768150866031647,0.318155467510223,0.555589437484741 + ,0.853541672229767,0.353526413440704,0.382702112197876,0.906094551086426,0.375316619873047,0.195104837417603 + ,0.923856317996979,0.382671594619751,0.000000000000000,0.906094551086426,0.375316619873047,-0.195104837417603 + ,0.853541672229767,0.353526413440704,-0.382702112197876,0.768150866031647,0.318155467510223,-0.555589437484741 + ,0.653248667716980,0.270577102899551,-0.707113862037659,0.513229787349701,0.212591931223869,-0.831476807594299 + ,0.353495895862579,0.146427810192108,-0.923886835575104,0.180211797356606,0.074648275971413,-0.980773329734802 + ,0.162175357341766,0.108371227979660,-0.980773329734802,0.318155467510223,0.212561413645744,-0.923886835575104 + ,0.461897641420364,0.308633685112000,-0.831476807594299,0.587908565998077,0.392803728580475,-0.707113862037659 + ,0.691305279731750,0.461897641420364,-0.555589437484741,0.768150866031647,0.513260304927826,-0.382702112197876 + ,0.815485119819641,0.544877469539642,-0.195104837417603,0.831446290016174,0.555558919906616,0.000000000000000 + ,0.815485119819641,0.544877469539642,0.195104837417603,0.768150866031647,0.513260304927826,0.382702112197876 + ,0.691305279731750,0.461897641420364,0.555589437484741,0.587908565998077,0.392803728580475,0.707113862037659 + ,0.461897641420364,0.308633685112000,0.831476807594299,0.318155467510223,0.212561413645744,0.923886835575104 + ,0.162175357341766,0.108371227979660,0.980773329734802,0.137913137674332,0.137913137674332,0.980773329734802 + ,0.270546585321426,0.270546585321426,0.923886835575104,0.392803728580475,0.392803728580475,0.831476807594299 + ,0.499954223632812,0.499954223632812,0.707113862037659,0.587908565998077,0.587908565998077,0.555589437484741 + ,0.653248667716980,0.653248667716980,0.382702112197876,0.693502604961395,0.693502604961395,0.195104837417603 + ,0.707083344459534,0.707083344459534,0.000000000000000,0.693502604961395,0.693502604961395,-0.195104837417603 + ,0.653248667716980,0.653248667716980,-0.382702112197876,0.587908565998077,0.587908565998077,-0.555589437484741 + ,0.499954223632812,0.499954223632812,-0.707113862037659,0.392803728580475,0.392803728580475,-0.831476807594299 + ,0.270546585321426,0.270546585321426,-0.923886835575104,0.137913137674332,0.137913137674332,-0.980773329734802 + ,0.108371227979660,0.162175357341766,-0.980773329734802,0.212561413645744,0.318155467510223,-0.923886835575104 + ,0.308633685112000,0.461897641420364,-0.831476807594299,0.392803728580475,0.587908565998077,-0.707113862037659 + ,0.461897641420364,0.691305279731750,-0.555589437484741,0.513260304927826,0.768150866031647,-0.382702112197876 + ,0.544877469539642,0.815485119819641,-0.195104837417603,0.555558919906616,0.831446290016174,0.000000000000000 + ,0.544877469539642,0.815485119819641,0.195104837417603,0.513260304927826,0.768150866031647,0.382702112197876 + ,0.461897641420364,0.691305279731750,0.555589437484741,0.392803728580475,0.587908565998077,0.707113862037659 + ,0.308633685112000,0.461897641420364,0.831476807594299,0.212561413645744,0.318155467510223,0.923886835575104 + ,0.108371227979660,0.162175357341766,0.980773329734802,0.074648275971413,0.180211797356606,0.980773329734802 + ,0.146427810192108,0.353495895862579,0.923886835575104,0.212591931223869,0.513229787349701,0.831476807594299 + ,0.270577102899551,0.653248667716980,0.707113862037659,0.318155467510223,0.768150866031647,0.555589437484741 + ,0.353526413440704,0.853541672229767,0.382702112197876,0.375316619873047,0.906094551086426,0.195104837417603 + ,0.382671594619751,0.923856317996979,0.000000000000000,0.375316619873047,0.906094551086426,-0.195104837417603 + ,0.353526413440704,0.853541672229767,-0.382702112197876,0.318155467510223,0.768150866031647,-0.555589437484741 + ,0.270577102899551,0.653248667716980,-0.707113862037659,0.212591931223869,0.513229787349701,-0.831476807594299 + ,0.146427810192108,0.353495895862579,-0.923886835575104,0.074648275971413,0.180211797356606,-0.980773329734802 + ,0.000000000000000,0.000000000000000,-1.000000000000000,0.038056582212448,0.191320538520813,-0.980773329734802 + ,0.074648275971413,0.375286102294922,-0.923886835575104,0.108371227979660,0.544846951961517,-0.831476807594299 + ,0.137913137674332,0.693472087383270,-0.707113862037659,0.162205874919891,0.815454602241516,-0.555589437484741 + ,0.180211797356606,0.906094551086426,-0.382702112197876,0.191320538520813,0.961912870407104,-0.195104837417603 + ,0.195074319839478,0.980773329734802,0.000000000000000,0.191320538520813,0.961912870407104,0.195104837417603 + ,0.180211797356606,0.906094551086426,0.382702112197876,0.162205874919891,0.815454602241516,0.555589437484741 + ,0.137913137674332,0.693472087383270,0.707113862037659,0.108371227979660,0.544846951961517,0.831476807594299 + ,0.074648275971413,0.375286102294922,0.923886835575104,0.038056582212448,0.191320538520813,0.980773329734802 + ,0.000000000000000,0.195043787360191,0.980773329734802,0.000000000000000,0.382641077041626,0.923886835575104 + ,0.000000000000000,0.555528402328491,0.831476807594299,0.000000000000000,0.707052826881409,0.707113862037659 + ,0.000000000000000,0.831415772438049,0.555589437484741,0.000000000000000,0.923856317996979,0.382702112197876 + ,0.000000000000000,0.980773329734802,0.195104837417603,0.000000000000000,0.999969482421875,0.000000000000000 + ,0.000000000000000,0.980773329734802,-0.195104837417603,0.000000000000000,0.923856317996979,-0.382702112197876 + ,0.000000000000000,0.831415772438049,-0.555589437484741,0.000000000000000,0.707052826881409,-0.707113862037659 + ,0.000000000000000,0.555528402328491,-0.831476807594299,0.000000000000000,0.382641077041626,-0.923886835575104 + ,0.000000000000000,0.195043787360191,-0.980773329734802,-0.038056582212448,0.191320538520813,-0.980773329734802 + ,-0.074648275971413,0.375286102294922,-0.923886835575104,-0.108371227979660,0.544846951961517,-0.831476807594299 + ,-0.137913137674332,0.693472087383270,-0.707113862037659,-0.162205874919891,0.815454602241516,-0.555589437484741 + ,-0.180211797356606,0.906094551086426,-0.382702112197876,-0.191320538520813,0.961912870407104,-0.195104837417603 + ,-0.195074319839478,0.980773329734802,0.000000000000000,-0.191320538520813,0.961912870407104,0.195104837417603 + ,-0.180211797356606,0.906094551086426,0.382702112197876,-0.162205874919891,0.815454602241516,0.555589437484741 + ,-0.137913137674332,0.693472087383270,0.707113862037659,-0.108371227979660,0.544846951961517,0.831476807594299 + ,-0.074648275971413,0.375286102294922,0.923886835575104,-0.038056582212448,0.191320538520813,0.980773329734802 + ,-0.074648275971413,0.180211797356606,0.980773329734802,-0.146427810192108,0.353495895862579,0.923886835575104 + ,-0.212591931223869,0.513229787349701,0.831476807594299,-0.270577102899551,0.653248667716980,0.707113862037659 + ,-0.318155467510223,0.768150866031647,0.555589437484741,-0.353526413440704,0.853541672229767,0.382702112197876 + ,-0.375316619873047,0.906094551086426,0.195104837417603,-0.382671594619751,0.923856317996979,0.000000000000000 + ,-0.375316619873047,0.906094551086426,-0.195104837417603,-0.353526413440704,0.853541672229767,-0.382702112197876 + ,-0.318155467510223,0.768150866031647,-0.555589437484741,-0.270577102899551,0.653248667716980,-0.707113862037659 + ,-0.212591931223869,0.513229787349701,-0.831476807594299,-0.146427810192108,0.353495895862579,-0.923886835575104 + ,-0.074648275971413,0.180211797356606,-0.980773329734802,-0.108371227979660,0.162175357341766,-0.980773329734802 + ,-0.212561413645744,0.318155467510223,-0.923886835575104,-0.308633685112000,0.461897641420364,-0.831476807594299 + ,-0.392803728580475,0.587908565998077,-0.707113862037659,-0.461897641420364,0.691305279731750,-0.555589437484741 + ,-0.513260304927826,0.768150866031647,-0.382702112197876,-0.544877469539642,0.815485119819641,-0.195104837417603 + ,-0.555558919906616,0.831446290016174,0.000000000000000,-0.544877469539642,0.815485119819641,0.195104837417603 + ,-0.513260304927826,0.768150866031647,0.382702112197876,-0.461897641420364,0.691305279731750,0.555589437484741 + ,-0.392803728580475,0.587908565998077,0.707113862037659,-0.308633685112000,0.461897641420364,0.831476807594299 + ,-0.212561413645744,0.318155467510223,0.923886835575104,-0.108371227979660,0.162175357341766,0.980773329734802 + ,-0.137913137674332,0.137913137674332,0.980773329734802,-0.270546585321426,0.270546585321426,0.923886835575104 + ,-0.392803728580475,0.392803728580475,0.831476807594299,-0.499954223632812,0.499954223632812,0.707113862037659 + ,-0.587908565998077,0.587908565998077,0.555589437484741,-0.653248667716980,0.653248667716980,0.382702112197876 + ,-0.693502604961395,0.693502604961395,0.195104837417603,-0.707083344459534,0.707083344459534,0.000000000000000 + ,-0.693502604961395,0.693502604961395,-0.195104837417603,-0.653248667716980,0.653248667716980,-0.382702112197876 + ,-0.587908565998077,0.587908565998077,-0.555589437484741,-0.499954223632812,0.499954223632812,-0.707113862037659 + ,-0.392803728580475,0.392803728580475,-0.831476807594299,-0.270546585321426,0.270546585321426,-0.923886835575104 + ,-0.137913137674332,0.137913137674332,-0.980773329734802,-0.162175357341766,0.108371227979660,-0.980773329734802 + ,-0.318155467510223,0.212561413645744,-0.923886835575104,-0.461897641420364,0.308633685112000,-0.831476807594299 + ,-0.587908565998077,0.392803728580475,-0.707113862037659,-0.691305279731750,0.461897641420364,-0.555589437484741 + ,-0.768150866031647,0.513260304927826,-0.382702112197876,-0.815485119819641,0.544877469539642,-0.195104837417603 + ,-0.831446290016174,0.555558919906616,0.000000000000000,-0.815485119819641,0.544877469539642,0.195104837417603 + ,-0.768150866031647,0.513260304927826,0.382702112197876,-0.691305279731750,0.461897641420364,0.555589437484741 + ,-0.587908565998077,0.392803728580475,0.707113862037659,-0.461897641420364,0.308633685112000,0.831476807594299 + ,-0.318155467510223,0.212561413645744,0.923886835575104,-0.162175357341766,0.108371227979660,0.980773329734802 + ,-0.180211797356606,0.074648275971413,0.980773329734802,-0.353495895862579,0.146427810192108,0.923886835575104 + ,-0.513229787349701,0.212591931223869,0.831476807594299,-0.653248667716980,0.270577102899551,0.707113862037659 + ,-0.768150866031647,0.318155467510223,0.555589437484741,-0.853541672229767,0.353526413440704,0.382702112197876 + ,-0.906094551086426,0.375316619873047,0.195104837417603,-0.923856317996979,0.382671594619751,0.000000000000000 + ,-0.906094551086426,0.375316619873047,-0.195104837417603,-0.853541672229767,0.353526413440704,-0.382702112197876 + ,-0.768150866031647,0.318155467510223,-0.555589437484741,-0.653248667716980,0.270577102899551,-0.707113862037659 + ,-0.513229787349701,0.212591931223869,-0.831476807594299,-0.353495895862579,0.146427810192108,-0.923886835575104 + ,-0.180211797356606,0.074648275971413,-0.980773329734802,-0.191320538520813,0.038056582212448,-0.980773329734802 + ,-0.375286102294922,0.074648275971413,-0.923886835575104,-0.544846951961517,0.108371227979660,-0.831476807594299 + ,-0.693472087383270,0.137913137674332,-0.707113862037659,-0.815454602241516,0.162205874919891,-0.555589437484741 + ,-0.906094551086426,0.180211797356606,-0.382702112197876,-0.961912870407104,0.191320538520813,-0.195104837417603 + ,-0.980773329734802,0.195074319839478,0.000000000000000,-0.961912870407104,0.191320538520813,0.195104837417603 + ,-0.906094551086426,0.180211797356606,0.382702112197876,-0.815454602241516,0.162205874919891,0.555589437484741 + ,-0.693472087383270,0.137913137674332,0.707113862037659,-0.544846951961517,0.108371227979660,0.831476807594299 + ,-0.375286102294922,0.074648275971413,0.923886835575104,-0.191320538520813,0.038056582212448,0.980773329734802 + ,-0.195043787360191,0.000000000000000,0.980773329734802,-0.382641077041626,0.000000000000000,0.923886835575104 + ,-0.555528402328491,0.000000000000000,0.831476807594299,-0.707052826881409,0.000000000000000,0.707113862037659 + ,-0.831415772438049,0.000000000000000,0.555589437484741,-0.923856317996979,0.000000000000000,0.382702112197876 + ,-0.980773329734802,0.000000000000000,0.195104837417603,-1.000000000000000,0.000000000000000,0.000000000000000 + ,-0.980773329734802,0.000000000000000,-0.195104837417603,-0.923856317996979,0.000000000000000,-0.382702112197876 + ,-0.831415772438049,0.000000000000000,-0.555589437484741,-0.707052826881409,0.000000000000000,-0.707113862037659 + ,-0.555528402328491,0.000000000000000,-0.831476807594299,-0.382641077041626,0.000000000000000,-0.923886835575104 + ,-0.195043787360191,0.000000000000000,-0.980773329734802,-0.191320538520813,-0.038056582212448,-0.980773329734802 + ,-0.375286102294922,-0.074648275971413,-0.923886835575104,-0.544846951961517,-0.108371227979660,-0.831476807594299 + ,-0.693472087383270,-0.137913137674332,-0.707113862037659,-0.815454602241516,-0.162205874919891,-0.555589437484741 + ,-0.906094551086426,-0.180211797356606,-0.382702112197876,-0.961912870407104,-0.191320538520813,-0.195104837417603 + ,-0.980773329734802,-0.195074319839478,0.000000000000000,-0.961912870407104,-0.191320538520813,0.195104837417603 + ,-0.906094551086426,-0.180211797356606,0.382702112197876,-0.815454602241516,-0.162205874919891,0.555589437484741 + ,-0.693472087383270,-0.137913137674332,0.707113862037659,-0.544846951961517,-0.108371227979660,0.831476807594299 + ,-0.375286102294922,-0.074648275971413,0.923886835575104,-0.191320538520813,-0.038056582212448,0.980773329734802 + ,-0.180211797356606,-0.074648275971413,0.980773329734802,-0.353495895862579,-0.146427810192108,0.923886835575104 + ,-0.513229787349701,-0.212591931223869,0.831476807594299,-0.653248667716980,-0.270577102899551,0.707113862037659 + ,-0.768150866031647,-0.318155467510223,0.555589437484741,-0.853541672229767,-0.353526413440704,0.382702112197876 + ,-0.906094551086426,-0.375316619873047,0.195104837417603,-0.923856317996979,-0.382671594619751,0.000000000000000 + ,-0.906094551086426,-0.375316619873047,-0.195104837417603,-0.853541672229767,-0.353526413440704,-0.382702112197876 + ,-0.768150866031647,-0.318155467510223,-0.555589437484741,-0.653248667716980,-0.270577102899551,-0.707113862037659 + ,-0.513229787349701,-0.212591931223869,-0.831476807594299,-0.353495895862579,-0.146427810192108,-0.923886835575104 + ,-0.180211797356606,-0.074648275971413,-0.980773329734802,-0.162175357341766,-0.108371227979660,-0.980773329734802 + ,-0.318155467510223,-0.212561413645744,-0.923886835575104,-0.461897641420364,-0.308633685112000,-0.831476807594299 + ,-0.587908565998077,-0.392803728580475,-0.707113862037659,-0.691305279731750,-0.461897641420364,-0.555589437484741 + ,-0.768150866031647,-0.513260304927826,-0.382702112197876,-0.815485119819641,-0.544877469539642,-0.195104837417603 + ,-0.831446290016174,-0.555558919906616,0.000000000000000,-0.815485119819641,-0.544877469539642,0.195104837417603 + ,-0.768150866031647,-0.513260304927826,0.382702112197876,-0.691305279731750,-0.461897641420364,0.555589437484741 + ,-0.587908565998077,-0.392803728580475,0.707113862037659,-0.461897641420364,-0.308633685112000,0.831476807594299 + ,-0.318155467510223,-0.212561413645744,0.923886835575104,-0.162175357341766,-0.108371227979660,0.980773329734802 + ,-0.137913137674332,-0.137913137674332,0.980773329734802,-0.270546585321426,-0.270546585321426,0.923886835575104 + ,-0.392803728580475,-0.392803728580475,0.831476807594299,-0.499954223632812,-0.499954223632812,0.707113862037659 + ,-0.587908565998077,-0.587908565998077,0.555589437484741,-0.653248667716980,-0.653248667716980,0.382702112197876 + ,-0.693502604961395,-0.693502604961395,0.195104837417603,-0.707083344459534,-0.707083344459534,0.000000000000000 + ,-0.693502604961395,-0.693502604961395,-0.195104837417603,-0.653248667716980,-0.653248667716980,-0.382702112197876 + ,-0.587908565998077,-0.587908565998077,-0.555589437484741,-0.499954223632812,-0.499954223632812,-0.707113862037659 + ,-0.392803728580475,-0.392803728580475,-0.831476807594299,-0.270546585321426,-0.270546585321426,-0.923886835575104 + ,-0.137913137674332,-0.137913137674332,-0.980773329734802,-0.108371227979660,-0.162175357341766,-0.980773329734802 + ,-0.212561413645744,-0.318155467510223,-0.923886835575104,-0.308633685112000,-0.461897641420364,-0.831476807594299 + ,-0.392803728580475,-0.587908565998077,-0.707113862037659,-0.461897641420364,-0.691305279731750,-0.555589437484741 + ,-0.513260304927826,-0.768150866031647,-0.382702112197876,-0.544877469539642,-0.815485119819641,-0.195104837417603 + ,-0.555558919906616,-0.831446290016174,0.000000000000000,-0.544877469539642,-0.815485119819641,0.195104837417603 + ,-0.513260304927826,-0.768150866031647,0.382702112197876,-0.461897641420364,-0.691305279731750,0.555589437484741 + ,-0.392803728580475,-0.587908565998077,0.707113862037659,-0.308633685112000,-0.461897641420364,0.831476807594299 + ,-0.212561413645744,-0.318155467510223,0.923886835575104,-0.108371227979660,-0.162175357341766,0.980773329734802 + ,0.000000000000000,0.000000000000000,1.000000000000000,-0.074648275971413,-0.180211797356606,0.980773329734802 + ,-0.146427810192108,-0.353495895862579,0.923886835575104,-0.212591931223869,-0.513229787349701,0.831476807594299 + ,-0.270577102899551,-0.653248667716980,0.707113862037659,-0.318155467510223,-0.768150866031647,0.555589437484741 + ,-0.353526413440704,-0.853541672229767,0.382702112197876,-0.375316619873047,-0.906094551086426,0.195104837417603 + ,-0.382671594619751,-0.923856317996979,0.000000000000000,-0.375316619873047,-0.906094551086426,-0.195104837417603 + ,-0.353526413440704,-0.853541672229767,-0.382702112197876,-0.318155467510223,-0.768150866031647,-0.555589437484741 + ,-0.270577102899551,-0.653248667716980,-0.707113862037659,-0.212591931223869,-0.513229787349701,-0.831476807594299 + ,-0.146427810192108,-0.353495895862579,-0.923886835575104,-0.074648275971413,-0.180211797356606,-0.980773329734802 + ,-0.038056582212448,-0.191320538520813,-0.980773329734802,-0.074648275971413,-0.375286102294922,-0.923886835575104 + ,-0.108371227979660,-0.544846951961517,-0.831476807594299,-0.137913137674332,-0.693472087383270,-0.707113862037659 + ,-0.162205874919891,-0.815454602241516,-0.555589437484741,-0.180211797356606,-0.906094551086426,-0.382702112197876 + ,-0.191320538520813,-0.961912870407104,-0.195104837417603,-0.195074319839478,-0.980773329734802,0.000000000000000 + ,-0.191320538520813,-0.961912870407104,0.195104837417603,-0.180211797356606,-0.906094551086426,0.382702112197876 + ,-0.162205874919891,-0.815454602241516,0.555589437484741,-0.137913137674332,-0.693472087383270,0.707113862037659 + ,-0.108371227979660,-0.544846951961517,0.831476807594299,-0.074648275971413,-0.375286102294922,0.923886835575104 + ,-0.038056582212448,-0.191320538520813,0.980773329734802,0.000000000000000,-0.195043787360191,0.980773329734802 + ,0.000000000000000,-0.382641077041626,0.923886835575104,0.000000000000000,-0.555528402328491,0.831476807594299 + ,0.000000000000000,-0.707052826881409,0.707113862037659,0.000000000000000,-0.831415772438049,0.555589437484741 + ,0.000000000000000,-0.923856317996979,0.382702112197876,0.000000000000000,-0.980773329734802,0.195104837417603 + ,0.000000000000000,-0.999969482421875,0.000000000000000,0.000000000000000,-0.980773329734802,-0.195104837417603 + ,0.000000000000000,-0.923856317996979,-0.382702112197876,0.000000000000000,-0.831415772438049,-0.555589437484741 + ,0.000000000000000,-0.707052826881409,-0.707113862037659,0.000000000000000,-0.555528402328491,-0.831476807594299 + ,0.000000000000000,-0.382641077041626,-0.923886835575104,0.000000000000000,-0.195043787360191,-0.980773329734802 + ,0.038056582212448,-0.191320538520813,-0.980773329734802,0.074648275971413,-0.375286102294922,-0.923886835575104 + ,0.108371227979660,-0.544846951961517,-0.831476807594299,0.137913137674332,-0.693472087383270,-0.707113862037659 + ,0.162205874919891,-0.815454602241516,-0.555589437484741,0.180211797356606,-0.906094551086426,-0.382702112197876 + ,0.191320538520813,-0.961912870407104,-0.195104837417603,0.195074319839478,-0.980773329734802,0.000000000000000 + ,0.191320538520813,-0.961912870407104,0.195104837417603,0.180211797356606,-0.906094551086426,0.382702112197876 + ,0.162205874919891,-0.815454602241516,0.555589437484741,0.137913137674332,-0.693472087383270,0.707113862037659 + ,0.108371227979660,-0.544846951961517,0.831476807594299,0.074648275971413,-0.375286102294922,0.923886835575104 + ,0.038056582212448,-0.191320538520813,0.980773329734802,0.074648275971413,-0.180211797356606,0.980773329734802 + ,0.146427810192108,-0.353495895862579,0.923886835575104,0.212591931223869,-0.513229787349701,0.831476807594299 + ,0.270577102899551,-0.653248667716980,0.707113862037659,0.318155467510223,-0.768150866031647,0.555589437484741 + ,0.353526413440704,-0.853541672229767,0.382702112197876,0.375316619873047,-0.906094551086426,0.195104837417603 + ,0.382671594619751,-0.923856317996979,0.000000000000000,0.375316619873047,-0.906094551086426,-0.195104837417603 + ,0.353526413440704,-0.853541672229767,-0.382702112197876,0.318155467510223,-0.768150866031647,-0.555589437484741 + ,0.270577102899551,-0.653248667716980,-0.707113862037659,0.212591931223869,-0.513229787349701,-0.831476807594299 + ,0.146427810192108,-0.353495895862579,-0.923886835575104,0.074648275971413,-0.180211797356606,-0.980773329734802 + ,0.108371227979660,-0.162175357341766,-0.980773329734802,0.212561413645744,-0.318155467510223,-0.923886835575104 + ,0.308633685112000,-0.461897641420364,-0.831476807594299,0.392803728580475,-0.587908565998077,-0.707113862037659 + ,0.461897641420364,-0.691305279731750,-0.555589437484741,0.513260304927826,-0.768150866031647,-0.382702112197876 + ,0.544877469539642,-0.815485119819641,-0.195104837417603,0.555558919906616,-0.831446290016174,0.000000000000000 + ,0.544877469539642,-0.815485119819641,0.195104837417603,0.513260304927826,-0.768150866031647,0.382702112197876 + ,0.461897641420364,-0.691305279731750,0.555589437484741,0.392803728580475,-0.587908565998077,0.707113862037659 + ,0.308633685112000,-0.461897641420364,0.831476807594299,0.212561413645744,-0.318155467510223,0.923886835575104 + ,0.108371227979660,-0.162175357341766,0.980773329734802,0.137913137674332,-0.137913137674332,0.980773329734802 + ,0.270546585321426,-0.270546585321426,0.923886835575104,0.392803728580475,-0.392803728580475,0.831476807594299 + ,0.499954223632812,-0.499954223632812,0.707113862037659,0.587908565998077,-0.587908565998077,0.555589437484741 + ,0.653248667716980,-0.653248667716980,0.382702112197876,0.693502604961395,-0.693502604961395,0.195104837417603 + ,0.707083344459534,-0.707083344459534,0.000000000000000,0.693502604961395,-0.693502604961395,-0.195104837417603 + ,0.653248667716980,-0.653248667716980,-0.382702112197876,0.587908565998077,-0.587908565998077,-0.555589437484741 + ,0.499954223632812,-0.499954223632812,-0.707113862037659,0.392803728580475,-0.392803728580475,-0.831476807594299 + ,0.270546585321426,-0.270546585321426,-0.923886835575104,0.137913137674332,-0.137913137674332,-0.980773329734802 + ,0.162175357341766,-0.108371227979660,-0.980773329734802,0.318155467510223,-0.212561413645744,-0.923886835575104 + ,0.461897641420364,-0.308633685112000,-0.831476807594299,0.587908565998077,-0.392803728580475,-0.707113862037659 + ,0.691305279731750,-0.461897641420364,-0.555589437484741,0.768150866031647,-0.513260304927826,-0.382702112197876 + ,0.815485119819641,-0.544877469539642,-0.195104837417603,0.831446290016174,-0.555558919906616,0.000000000000000 + ,0.815485119819641,-0.544877469539642,0.195104837417603,0.768150866031647,-0.513260304927826,0.382702112197876 + ,0.691305279731750,-0.461897641420364,0.555589437484741,0.587908565998077,-0.392803728580475,0.707113862037659 + ,0.461897641420364,-0.308633685112000,0.831476807594299,0.318155467510223,-0.212561413645744,0.923886835575104 + ,0.162175357341766,-0.108371227979660,0.980773329734802,0.180211797356606,-0.074648275971413,0.980773329734802 + ,0.353495895862579,-0.146427810192108,0.923886835575104,0.513229787349701,-0.212591931223869,0.831476807594299 + ,0.653248667716980,-0.270577102899551,0.707113862037659,0.768150866031647,-0.318155467510223,0.555589437484741 + ,0.853541672229767,-0.353526413440704,0.382702112197876,0.906094551086426,-0.375316619873047,0.195104837417603 + ,0.923856317996979,-0.382671594619751,0.000000000000000,0.906094551086426,-0.375316619873047,-0.195104837417603 + ,0.853541672229767,-0.353526413440704,-0.382702112197876,0.768150866031647,-0.318155467510223,-0.555589437484741 + ,0.653248667716980,-0.270577102899551,-0.707113862037659,0.513229787349701,-0.212591931223869,-0.831476807594299 + ,0.353495895862579,-0.146427810192108,-0.923886835575104,0.180211797356606,-0.074648275971413,-0.980773329734802 + ,0.191320538520813,-0.038056582212448,-0.980773329734802,0.375286102294922,-0.074648275971413,-0.923886835575104 + ,0.544846951961517,-0.108371227979660,-0.831476807594299,0.693472087383270,-0.137913137674332,-0.707113862037659 + ,0.815454602241516,-0.162205874919891,-0.555589437484741,0.906094551086426,-0.180211797356606,-0.382702112197876 + ,0.961912870407104,-0.191320538520813,-0.195104837417603,0.980773329734802,-0.195074319839478,0.000000000000000 + ,0.961912870407104,-0.191320538520813,0.195104837417603,0.906094551086426,-0.180211797356606,0.382702112197876 + ,0.815454602241516,-0.162205874919891,0.555589437484741,0.693472087383270,-0.137913137674332,0.707113862037659 + ,0.544846951961517,-0.108371227979660,0.831476807594299,0.375286102294922,-0.074648275971413,0.923886835575104 + ,0.191320538520813,-0.038056582212448,0.980773329734802,0.195043787360191,0.000000000000000,0.980773329734802 + ,0.382641077041626,0.000000000000000,0.923886835575104,0.555528402328491,0.000000000000000,0.831476807594299 + ,0.707052826881409,0.000000000000000,0.707113862037659,0.831415772438049,0.000000000000000,0.555589437484741 + ,0.923856317996979,0.000000000000000,0.382702112197876,0.980773329734802,0.000000000000000,0.195104837417603 + ,0.999969482421875,0.000000000000000,0.000000000000000,0.980773329734802,0.000000000000000,-0.195104837417603 + ,0.923856317996979,0.000000000000000,-0.382702112197876,0.831415772438049,0.000000000000000,-0.555589437484741 + ,0.707052826881409,0.000000000000000,-0.707113862037659,0.555528402328491,0.000000000000000,-0.831476807594299 + ,0.382641077041626,0.000000000000000,-0.923886835575104,0.195043787360191,0.000000000000000,-0.980773329734802 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.500000,0.063540,0.583513,0.071927,0.585149,0.071927,0.585149,0.071927,0.583513,0.071927,0.663817,0.096764,0.667026,0.096764 + ,0.667026,0.096764,0.663817,0.096764,0.737825,0.137097,0.742484,0.137097,0.742484,0.137097,0.737825,0.137097,0.802694,0.191376 + ,0.808624,0.191376,0.808624,0.191376,0.802694,0.191376,0.855930,0.257516,0.862903,0.257516,0.862903,0.257516,0.855930,0.257516 + ,0.895489,0.332974,0.903236,0.332974,0.903236,0.332974,0.895489,0.332974,0.919848,0.414851,0.928074,0.414851,0.928074,0.414851 + ,0.919848,0.414851,0.928074,0.500000,0.936460,0.500000,0.936460,0.500000,0.928074,0.500000,0.919848,0.585149,0.928074,0.585149 + ,0.928074,0.585149,0.919848,0.585149,0.895489,0.667026,0.903236,0.667026,0.903236,0.667026,0.895489,0.667026,0.855930,0.742484 + ,0.862903,0.742484,0.862903,0.742484,0.855930,0.742484,0.802694,0.808623,0.808624,0.808623,0.808624,0.808623,0.802694,0.808623 + ,0.737825,0.862903,0.742484,0.862903,0.742484,0.862903,0.737825,0.862903,0.663817,0.903236,0.667026,0.903236,0.667026,0.903236 + ,0.663817,0.903236,0.583513,0.928073,0.585149,0.928073,0.585149,0.928073,0.583513,0.928073,0.500000,0.936460,0.583513,0.928073 + ,0.578668,0.928073,0.500000,0.936460,0.663817,0.903236,0.654312,0.903236,0.578668,0.928073,0.583513,0.928073,0.737825,0.862903 + ,0.724026,0.862903,0.654312,0.903236,0.663817,0.903236,0.802694,0.808623,0.785131,0.808623,0.724026,0.862903,0.737825,0.862903 + ,0.855930,0.742484,0.835279,0.742484,0.785131,0.808623,0.802694,0.808623,0.895489,0.667026,0.872542,0.667026,0.835279,0.742484 + ,0.855930,0.742484,0.919848,0.585149,0.895489,0.585149,0.872542,0.667026,0.895489,0.667026,0.928074,0.500000,0.903237,0.500000 + ,0.895489,0.585149,0.919848,0.585149,0.919848,0.414851,0.895489,0.414851,0.903237,0.500000,0.928074,0.500000,0.895489,0.332974 + ,0.872542,0.332974,0.895489,0.414851,0.919848,0.414851,0.855930,0.257516,0.835279,0.257516,0.872542,0.332974,0.895489,0.332974 + ,0.802694,0.191376,0.785131,0.191376,0.835279,0.257516,0.855930,0.257516,0.737825,0.137097,0.724026,0.137097,0.785131,0.191376 + ,0.802694,0.191376,0.663817,0.096764,0.654312,0.096764,0.724026,0.137097,0.737825,0.137097,0.583513,0.071927,0.578668,0.071927 + ,0.654312,0.096764,0.663817,0.096764,0.578668,0.071927,0.583513,0.071927,0.500000,0.063540,0.500000,0.063540,0.570799,0.071927 + ,0.578668,0.071927,0.578668,0.071927,0.570799,0.071927,0.638877,0.096764,0.654312,0.096764,0.654312,0.096764,0.638877,0.096764 + ,0.701618,0.137097,0.724026,0.137097,0.724026,0.137097,0.701618,0.137097,0.756611,0.191376,0.785131,0.191376,0.785131,0.191376 + ,0.756611,0.191376,0.801743,0.257516,0.835279,0.257516,0.835279,0.257516,0.801743,0.257516,0.835279,0.332974,0.872542,0.332974 + ,0.872542,0.332974,0.835279,0.332974,0.855930,0.414851,0.895489,0.414851,0.895489,0.414851,0.855930,0.414851,0.862903,0.500000 + ,0.903237,0.500000,0.903237,0.500000,0.862903,0.500000,0.855930,0.585149,0.895489,0.585149,0.895489,0.585149,0.855930,0.585149 + ,0.835279,0.667026,0.872542,0.667026,0.872542,0.667026,0.835279,0.667026,0.801743,0.742484,0.835279,0.742484,0.835279,0.742484 + ,0.801743,0.742484,0.756611,0.808623,0.785131,0.808623,0.785131,0.808623,0.756611,0.808623,0.701618,0.862903,0.724026,0.862903 + ,0.724026,0.862903,0.701618,0.862903,0.638877,0.903236,0.654312,0.903236,0.654312,0.903236,0.638877,0.903236,0.570799,0.928073 + ,0.578668,0.928073,0.578668,0.928073,0.570799,0.928073,0.500000,0.936460,0.570799,0.928073,0.560210,0.928073,0.500000,0.936460 + ,0.638877,0.903236,0.618105,0.903236,0.560210,0.928073,0.570799,0.928073,0.701618,0.862903,0.671462,0.862903,0.618105,0.903236 + ,0.638877,0.903236,0.756611,0.808623,0.718230,0.808623,0.671462,0.862903,0.701618,0.862903,0.801743,0.742484,0.756611,0.742484 + ,0.718230,0.808623,0.756611,0.808623,0.835279,0.667026,0.785131,0.667026,0.756611,0.742484,0.801743,0.742484,0.855930,0.585149 + ,0.802694,0.585149,0.785131,0.667026,0.835279,0.667026,0.862903,0.500000,0.808624,0.500000,0.802694,0.585149,0.855930,0.585149 + ,0.855930,0.414851,0.802694,0.414851,0.808624,0.500000,0.862903,0.500000,0.835279,0.332974,0.785131,0.332974,0.802694,0.414851 + ,0.855930,0.414851,0.801743,0.257516,0.756611,0.257516,0.785131,0.332974,0.835279,0.332974,0.756611,0.191376,0.718230,0.191376 + ,0.756611,0.257516,0.801743,0.257516,0.701618,0.137097,0.671462,0.137097,0.718230,0.191376,0.756611,0.191376,0.638877,0.096764 + ,0.618105,0.096764,0.671462,0.137097,0.701618,0.137097,0.570799,0.071927,0.560209,0.071927,0.618105,0.096764,0.638877,0.096764 + ,0.500000,0.063540,0.560209,0.071927,0.570799,0.071927,0.500000,0.063540,0.547306,0.071927,0.560209,0.071927,0.560209,0.071927 + ,0.547306,0.071927,0.592795,0.096764,0.618105,0.096764,0.618105,0.096764,0.592795,0.096764,0.634717,0.137097,0.671462,0.137097 + ,0.671462,0.137097,0.634717,0.137097,0.671462,0.191376,0.718230,0.191376,0.718230,0.191376,0.671462,0.191376,0.701618,0.257516 + ,0.756611,0.257516,0.756611,0.257516,0.701618,0.257516,0.724026,0.332974,0.785131,0.332974,0.785131,0.332974,0.724026,0.332974 + ,0.737825,0.414851,0.802694,0.414851,0.802694,0.414851,0.737825,0.414851,0.742484,0.500000,0.808624,0.500000,0.808624,0.500000 + ,0.742484,0.500000,0.737825,0.585149,0.802694,0.585149,0.802694,0.585149,0.737825,0.585149,0.724026,0.667026,0.785131,0.667026 + ,0.785131,0.667026,0.724026,0.667026,0.701618,0.742484,0.756611,0.742484,0.756611,0.742484,0.701618,0.742484,0.671462,0.808623 + ,0.718230,0.808623,0.718230,0.808623,0.671462,0.808623,0.634717,0.862903,0.671462,0.862903,0.671462,0.862903,0.634717,0.862903 + ,0.592795,0.903236,0.618105,0.903236,0.618105,0.903236,0.592795,0.903236,0.547306,0.928073,0.560210,0.928073,0.560210,0.928073 + ,0.547306,0.928073,0.500000,0.936460,0.547306,0.928073,0.532585,0.928073,0.500000,0.936460,0.592795,0.903236,0.563918,0.903236 + ,0.532585,0.928073,0.547306,0.928073,0.634717,0.862903,0.592795,0.862903,0.563918,0.903236,0.592795,0.903236,0.671462,0.808623 + ,0.618105,0.808623,0.592795,0.862903,0.634717,0.862903,0.701618,0.742484,0.638877,0.742484,0.618105,0.808623,0.671462,0.808623 + ,0.724026,0.667026,0.654312,0.667026,0.638877,0.742484,0.701618,0.742484,0.737825,0.585149,0.663817,0.585149,0.654312,0.667026 + ,0.724026,0.667026,0.742484,0.500000,0.667026,0.500000,0.663817,0.585149,0.737825,0.585149,0.737825,0.414851,0.663817,0.414851 + ,0.667026,0.500000,0.742484,0.500000,0.724026,0.332974,0.654312,0.332974,0.663817,0.414851,0.737825,0.414851,0.701618,0.257516 + ,0.638877,0.257516,0.654312,0.332974,0.724026,0.332974,0.671462,0.191376,0.618105,0.191376,0.638877,0.257516,0.701618,0.257516 + ,0.634717,0.137097,0.592795,0.137097,0.618105,0.191376,0.671462,0.191376,0.592795,0.096764,0.563918,0.096764,0.592795,0.137097 + ,0.634717,0.137097,0.547306,0.071927,0.532585,0.071927,0.563918,0.096764,0.592795,0.096764,0.500000,0.063540,0.532585,0.071927 + ,0.547306,0.071927,0.500000,0.063540,0.516612,0.071927,0.532585,0.071927,0.532585,0.071927,0.516612,0.071927,0.532585,0.096764 + ,0.563918,0.096764,0.563918,0.096764,0.532585,0.096764,0.547306,0.137097,0.592795,0.137097,0.592795,0.137097,0.547306,0.137097 + ,0.560210,0.191376,0.618105,0.191376,0.618105,0.191376,0.560210,0.191376,0.570799,0.257516,0.638877,0.257516,0.638877,0.257516 + ,0.570799,0.257516,0.578668,0.332974,0.654312,0.332974,0.654312,0.332974,0.578668,0.332974,0.583513,0.414851,0.663817,0.414851 + ,0.663817,0.414851,0.583513,0.414851,0.585149,0.500000,0.667026,0.500000,0.667026,0.500000,0.585149,0.500000,0.583513,0.585149 + ,0.663817,0.585149,0.663817,0.585149,0.583513,0.585149,0.578668,0.667026,0.654312,0.667026,0.654312,0.667026,0.578668,0.667026 + ,0.570799,0.742484,0.638877,0.742484,0.638877,0.742484,0.570799,0.742484,0.560210,0.808623,0.618105,0.808623,0.618105,0.808623 + ,0.560210,0.808623,0.547306,0.862903,0.592795,0.862903,0.592795,0.862903,0.547306,0.862903,0.532585,0.903236,0.563918,0.903236 + ,0.563918,0.903236,0.532585,0.903236,0.516612,0.928073,0.532585,0.928073,0.532585,0.928073,0.516612,0.928073,0.500000,0.936460 + ,0.516612,0.928073,0.500000,0.928073,0.500000,0.936460,0.532585,0.903236,0.500000,0.903236,0.500000,0.928073,0.516612,0.928073 + ,0.547306,0.862903,0.500000,0.862903,0.500000,0.903236,0.532585,0.903236,0.560210,0.808623,0.500000,0.808623,0.500000,0.862903 + ,0.547306,0.862903,0.570799,0.742484,0.500000,0.742484,0.500000,0.808623,0.560210,0.808623,0.578668,0.667026,0.500000,0.667026 + ,0.500000,0.742484,0.570799,0.742484,0.583513,0.585149,0.500000,0.585149,0.500000,0.667026,0.578668,0.667026,0.585149,0.500000 + ,0.500000,0.500000,0.500000,0.585149,0.583513,0.585149,0.583513,0.414851,0.500000,0.414851,0.500000,0.500000,0.585149,0.500000 + ,0.578668,0.332974,0.500000,0.332974,0.500000,0.414851,0.583513,0.414851,0.570799,0.257516,0.500000,0.257516,0.500000,0.332974 + ,0.578668,0.332974,0.560210,0.191376,0.500000,0.191376,0.500000,0.257516,0.570799,0.257516,0.547306,0.137097,0.500000,0.137097 + ,0.500000,0.191376,0.560210,0.191376,0.532585,0.096764,0.500000,0.096764,0.500000,0.137097,0.547306,0.137097,0.516612,0.071927 + ,0.500000,0.071927,0.500000,0.096764,0.532585,0.096764,0.500000,0.063540,0.500000,0.071927,0.516612,0.071927,0.500000,0.063540 + ,0.483388,0.071927,0.500000,0.071927,0.500000,0.071927,0.483388,0.071927,0.467415,0.096764,0.500000,0.096764,0.500000,0.096764 + ,0.467415,0.096764,0.452694,0.137097,0.500000,0.137097,0.500000,0.137097,0.452694,0.137097,0.439791,0.191376,0.500000,0.191376 + ,0.500000,0.191376,0.439791,0.191376,0.429201,0.257516,0.500000,0.257516,0.500000,0.257516,0.429201,0.257516,0.421333,0.332974 + ,0.500000,0.332974,0.500000,0.332974,0.421333,0.332974,0.416487,0.414851,0.500000,0.414851,0.500000,0.414851,0.416487,0.414851 + ,0.414851,0.500000,0.500000,0.500000,0.500000,0.500000,0.414851,0.500000,0.416487,0.585149,0.500000,0.585149,0.500000,0.585149 + ,0.416487,0.585149,0.421333,0.667026,0.500000,0.667026,0.500000,0.667026,0.421333,0.667026,0.429201,0.742484,0.500000,0.742484 + ,0.500000,0.742484,0.429201,0.742484,0.439791,0.808623,0.500000,0.808623,0.500000,0.808623,0.439791,0.808623,0.452694,0.862903 + ,0.500000,0.862903,0.500000,0.862903,0.452694,0.862903,0.467415,0.903236,0.500000,0.903236,0.500000,0.903236,0.467415,0.903236 + ,0.483388,0.928073,0.500000,0.928073,0.500000,0.928073,0.483388,0.928073,0.500000,0.936460,0.483388,0.928073,0.467415,0.928073 + ,0.500000,0.936460,0.467415,0.903236,0.436082,0.903236,0.467415,0.928073,0.483388,0.928073,0.452694,0.862903,0.407205,0.862903 + ,0.436082,0.903236,0.467415,0.903236,0.439791,0.808623,0.381895,0.808623,0.407205,0.862903,0.452694,0.862903,0.429201,0.742484 + ,0.361123,0.742484,0.381895,0.808623,0.439791,0.808623,0.421333,0.667026,0.345688,0.667026,0.361123,0.742484,0.429201,0.742484 + ,0.416487,0.585149,0.336183,0.585149,0.345688,0.667026,0.421333,0.667026,0.414851,0.500000,0.332974,0.500000,0.336183,0.585149 + ,0.416487,0.585149,0.416487,0.414851,0.336183,0.414851,0.332974,0.500000,0.414851,0.500000,0.421333,0.332974,0.345688,0.332974 + ,0.336183,0.414851,0.416487,0.414851,0.429201,0.257516,0.361123,0.257516,0.345688,0.332974,0.421333,0.332974,0.439791,0.191376 + ,0.381895,0.191376,0.361123,0.257516,0.429201,0.257516,0.452694,0.137097,0.407205,0.137097,0.381895,0.191376,0.439791,0.191376 + ,0.467415,0.096764,0.436082,0.096764,0.407205,0.137097,0.452694,0.137097,0.483388,0.071927,0.467415,0.071927,0.436082,0.096764 + ,0.467415,0.096764,0.500000,0.063540,0.467415,0.071927,0.483388,0.071927,0.500000,0.063540,0.452694,0.071927,0.467415,0.071927 + ,0.467415,0.071927,0.452694,0.071927,0.407205,0.096764,0.436082,0.096764,0.436082,0.096764,0.407205,0.096764,0.365283,0.137097 + ,0.407205,0.137097,0.407205,0.137097,0.365283,0.137097,0.328538,0.191376,0.381895,0.191376,0.381895,0.191376,0.328538,0.191376 + ,0.298382,0.257516,0.361123,0.257516,0.361123,0.257516,0.298382,0.257516,0.275974,0.332974,0.345688,0.332974,0.345688,0.332974 + ,0.275974,0.332974,0.262175,0.414851,0.336183,0.414851,0.336183,0.414851,0.262175,0.414851,0.257516,0.500000,0.332974,0.500000 + ,0.332974,0.500000,0.257516,0.500000,0.262175,0.585149,0.336183,0.585149,0.336183,0.585149,0.262175,0.585149,0.275974,0.667026 + ,0.345688,0.667026,0.345688,0.667026,0.275974,0.667026,0.298382,0.742484,0.361123,0.742484,0.361123,0.742484,0.298382,0.742484 + ,0.328538,0.808623,0.381895,0.808623,0.381895,0.808623,0.328538,0.808623,0.365283,0.862903,0.407205,0.862903,0.407205,0.862903 + ,0.365283,0.862903,0.407205,0.903236,0.436082,0.903236,0.436082,0.903236,0.407205,0.903236,0.452694,0.928073,0.467415,0.928073 + ,0.467415,0.928073,0.452694,0.928073,0.500000,0.936460,0.452694,0.928073,0.439791,0.928073,0.500000,0.936460,0.407205,0.903236 + ,0.381895,0.903236,0.439791,0.928073,0.452694,0.928073,0.365283,0.862903,0.328538,0.862903,0.381895,0.903236,0.407205,0.903236 + ,0.328538,0.808623,0.281770,0.808623,0.328538,0.862903,0.365283,0.862903,0.298382,0.742484,0.243389,0.742484,0.281770,0.808623 + ,0.328538,0.808623,0.275974,0.667026,0.214869,0.667026,0.243389,0.742484,0.298382,0.742484,0.262175,0.585149,0.197306,0.585149 + ,0.214869,0.667026,0.275974,0.667026,0.257516,0.500000,0.191376,0.500000,0.197306,0.585149,0.262175,0.585149,0.262175,0.414851 + ,0.197306,0.414851,0.191376,0.500000,0.257516,0.500000,0.275974,0.332974,0.214869,0.332974,0.197306,0.414851,0.262175,0.414851 + ,0.298382,0.257516,0.243389,0.257516,0.214869,0.332974,0.275974,0.332974,0.328538,0.191376,0.281770,0.191376,0.243389,0.257516 + ,0.298382,0.257516,0.365283,0.137097,0.328538,0.137097,0.281770,0.191376,0.328538,0.191376,0.407205,0.096764,0.381895,0.096764 + ,0.328538,0.137097,0.365283,0.137097,0.452694,0.071927,0.439791,0.071927,0.381895,0.096764,0.407205,0.096764,0.500000,0.063540 + ,0.439791,0.071927,0.452694,0.071927,0.500000,0.063540,0.429201,0.071927,0.439791,0.071927,0.439791,0.071927,0.429201,0.071927 + ,0.361123,0.096764,0.381895,0.096764,0.381895,0.096764,0.361123,0.096764,0.298382,0.137097,0.328538,0.137097,0.328538,0.137097 + ,0.298382,0.137097,0.243389,0.191376,0.281770,0.191376,0.281770,0.191376,0.243389,0.191376,0.198257,0.257516,0.243389,0.257516 + ,0.243389,0.257516,0.198257,0.257516,0.164721,0.332974,0.214869,0.332974,0.214869,0.332974,0.164721,0.332974,0.144070,0.414851 + ,0.197306,0.414851,0.197306,0.414851,0.144070,0.414851,0.137097,0.500000,0.191376,0.500000,0.191376,0.500000,0.137097,0.500000 + ,0.144070,0.585149,0.197306,0.585149,0.197306,0.585149,0.144070,0.585149,0.164721,0.667026,0.214869,0.667026,0.214869,0.667026 + ,0.164721,0.667026,0.198257,0.742484,0.243389,0.742484,0.243389,0.742484,0.198257,0.742484,0.243389,0.808623,0.281770,0.808623 + ,0.281770,0.808623,0.243389,0.808623,0.298382,0.862903,0.328538,0.862903,0.328538,0.862903,0.298382,0.862903,0.361123,0.903236 + ,0.381895,0.903236,0.381895,0.903236,0.361123,0.903236,0.429201,0.928073,0.439791,0.928073,0.439791,0.928073,0.429201,0.928073 + ,0.500000,0.936460,0.429201,0.928073,0.421333,0.928073,0.500000,0.936460,0.361123,0.903236,0.345688,0.903236,0.421333,0.928073 + ,0.429201,0.928073,0.298382,0.862903,0.275974,0.862903,0.345688,0.903236,0.361123,0.903236,0.243389,0.808623,0.214869,0.808623 + ,0.275974,0.862903,0.298382,0.862903,0.198257,0.742484,0.164721,0.742484,0.214869,0.808623,0.243389,0.808623,0.164721,0.667026 + ,0.127458,0.667026,0.164721,0.742484,0.198257,0.742484,0.144070,0.585149,0.104512,0.585149,0.127458,0.667026,0.164721,0.667026 + ,0.137097,0.500000,0.096764,0.500000,0.104512,0.585149,0.144070,0.585149,0.144070,0.414851,0.104512,0.414851,0.096764,0.500000 + ,0.137097,0.500000,0.164721,0.332974,0.127458,0.332974,0.104512,0.414851,0.144070,0.414851,0.198257,0.257516,0.164721,0.257516 + ,0.127458,0.332974,0.164721,0.332974,0.243389,0.191376,0.214869,0.191376,0.164721,0.257516,0.198257,0.257516,0.298382,0.137097 + ,0.275974,0.137097,0.214869,0.191376,0.243389,0.191376,0.361123,0.096764,0.345688,0.096764,0.275974,0.137097,0.298382,0.137097 + ,0.429201,0.071927,0.421333,0.071927,0.345688,0.096764,0.361123,0.096764,0.500000,0.063540,0.421333,0.071927,0.429201,0.071927 + ,0.500000,0.063540,0.416487,0.071927,0.421333,0.071927,0.421333,0.071927,0.416487,0.071927,0.336184,0.096764,0.345688,0.096764 + ,0.345688,0.096764,0.336184,0.096764,0.262175,0.137097,0.275974,0.137097,0.275974,0.137097,0.262175,0.137097,0.197306,0.191376 + ,0.214869,0.191376,0.214869,0.191376,0.197306,0.191376,0.144070,0.257516,0.164721,0.257516,0.164721,0.257516,0.144070,0.257516 + ,0.104512,0.332974,0.127458,0.332974,0.127458,0.332974,0.104512,0.332974,0.080152,0.414851,0.104512,0.414851,0.104512,0.414851 + ,0.080152,0.414851,0.071927,0.500000,0.096764,0.500000,0.096764,0.500000,0.071927,0.500000,0.080152,0.585149,0.104512,0.585149 + ,0.104512,0.585149,0.080152,0.585149,0.104512,0.667026,0.127458,0.667026,0.127458,0.667026,0.104512,0.667026,0.144070,0.742484 + ,0.164721,0.742484,0.164721,0.742484,0.144070,0.742484,0.197306,0.808623,0.214869,0.808623,0.214869,0.808623,0.197306,0.808623 + ,0.262175,0.862903,0.275974,0.862903,0.275974,0.862903,0.262175,0.862903,0.336183,0.903236,0.345688,0.903236,0.345688,0.903236 + ,0.336183,0.903236,0.416487,0.928073,0.421333,0.928073,0.421333,0.928073,0.416487,0.928073,0.500000,0.936460,0.416487,0.928073 + ,0.414851,0.928073,0.500000,0.936460,0.336183,0.903236,0.332974,0.903236,0.414851,0.928073,0.416487,0.928073,0.262175,0.862903 + ,0.257516,0.862903,0.332974,0.903236,0.336183,0.903236,0.197306,0.808623,0.191376,0.808623,0.257516,0.862903,0.262175,0.862903 + ,0.144070,0.742484,0.137097,0.742484,0.191376,0.808623,0.197306,0.808623,0.104512,0.667026,0.096764,0.667026,0.137097,0.742484 + ,0.144070,0.742484,0.080152,0.585149,0.071927,0.585149,0.096764,0.667026,0.104512,0.667026,0.071927,0.500000,0.063540,0.500000 + ,0.071927,0.585149,0.080152,0.585149,0.080152,0.414851,0.071927,0.414851,0.063540,0.500000,0.071927,0.500000,0.104512,0.332974 + ,0.096764,0.332974,0.071927,0.414851,0.080152,0.414851,0.144070,0.257516,0.137097,0.257516,0.096764,0.332974,0.104512,0.332974 + ,0.197306,0.191376,0.191376,0.191376,0.137097,0.257516,0.144070,0.257516,0.262175,0.137097,0.257516,0.137097,0.191376,0.191376 + ,0.197306,0.191376,0.336184,0.096764,0.332974,0.096764,0.257516,0.137097,0.262175,0.137097,0.416487,0.071927,0.414851,0.071927 + ,0.332974,0.096764,0.336184,0.096764,0.500000,0.063540,0.414851,0.071927,0.416487,0.071927,0.500000,0.063540,0.416487,0.071927 + ,0.414851,0.071927,0.414851,0.071927,0.416487,0.071927,0.336184,0.096764,0.332974,0.096764,0.332974,0.096764,0.336184,0.096764 + ,0.262175,0.137097,0.257516,0.137097,0.257516,0.137097,0.262175,0.137097,0.197306,0.191376,0.191376,0.191376,0.191376,0.191376 + ,0.197306,0.191376,0.144070,0.257516,0.137097,0.257516,0.137097,0.257516,0.144070,0.257516,0.104512,0.332974,0.096764,0.332974 + ,0.096764,0.332974,0.104512,0.332974,0.080152,0.414851,0.071927,0.414851,0.071927,0.414851,0.080152,0.414851,0.071927,0.500000 + ,0.063540,0.500000,0.063540,0.500000,0.071927,0.500000,0.080152,0.585149,0.071927,0.585149,0.071927,0.585149,0.080152,0.585149 + ,0.104512,0.667026,0.096764,0.667026,0.096764,0.667026,0.104512,0.667026,0.144070,0.742484,0.137097,0.742484,0.137097,0.742484 + ,0.144070,0.742484,0.197306,0.808623,0.191376,0.808623,0.191376,0.808623,0.197306,0.808623,0.262175,0.862903,0.257516,0.862903 + ,0.257516,0.862903,0.262175,0.862903,0.336183,0.903236,0.332974,0.903236,0.332974,0.903236,0.336183,0.903236,0.416487,0.928073 + ,0.414851,0.928073,0.414851,0.928073,0.416487,0.928073,0.500000,0.936460,0.416487,0.928073,0.421333,0.928073,0.500000,0.936460 + ,0.336183,0.903236,0.345688,0.903236,0.421333,0.928073,0.416487,0.928073,0.262175,0.862903,0.275974,0.862903,0.345688,0.903236 + ,0.336183,0.903236,0.197306,0.808623,0.214869,0.808623,0.275974,0.862903,0.262175,0.862903,0.144070,0.742484,0.164721,0.742484 + ,0.214869,0.808623,0.197306,0.808623,0.104512,0.667026,0.127458,0.667026,0.164721,0.742484,0.144070,0.742484,0.080152,0.585149 + ,0.104512,0.585149,0.127458,0.667026,0.104512,0.667026,0.071927,0.500000,0.096764,0.500000,0.104512,0.585149,0.080152,0.585149 + ,0.080152,0.414851,0.104512,0.414851,0.096764,0.500000,0.071927,0.500000,0.104512,0.332974,0.127458,0.332974,0.104512,0.414851 + ,0.080152,0.414851,0.144070,0.257516,0.164721,0.257516,0.127458,0.332974,0.104512,0.332974,0.197306,0.191376,0.214869,0.191376 + ,0.164721,0.257516,0.144070,0.257516,0.262175,0.137097,0.275974,0.137097,0.214869,0.191376,0.197306,0.191376,0.336184,0.096764 + ,0.345688,0.096764,0.275974,0.137097,0.262175,0.137097,0.416487,0.071927,0.421333,0.071927,0.345688,0.096764,0.336184,0.096764 + ,0.500000,0.063540,0.421333,0.071927,0.416487,0.071927,0.500000,0.063540,0.429201,0.071927,0.421333,0.071927,0.421333,0.071927 + ,0.429201,0.071927,0.361123,0.096764,0.345688,0.096764,0.345688,0.096764,0.361123,0.096764,0.298382,0.137097,0.275974,0.137097 + ,0.275974,0.137097,0.298382,0.137097,0.243389,0.191376,0.214869,0.191376,0.214869,0.191376,0.243389,0.191376,0.198257,0.257516 + ,0.164721,0.257516,0.164721,0.257516,0.198257,0.257516,0.164721,0.332974,0.127458,0.332974,0.127458,0.332974,0.164721,0.332974 + ,0.144070,0.414851,0.104512,0.414851,0.104512,0.414851,0.144070,0.414851,0.137097,0.500000,0.096764,0.500000,0.096764,0.500000 + ,0.137097,0.500000,0.144070,0.585149,0.104512,0.585149,0.104512,0.585149,0.144070,0.585149,0.164721,0.667026,0.127458,0.667026 + ,0.127458,0.667026,0.164721,0.667026,0.198257,0.742484,0.164721,0.742484,0.164721,0.742484,0.198257,0.742484,0.243389,0.808623 + ,0.214869,0.808623,0.214869,0.808623,0.243389,0.808623,0.298382,0.862903,0.275974,0.862903,0.275974,0.862903,0.298382,0.862903 + ,0.361123,0.903236,0.345688,0.903236,0.345688,0.903236,0.361123,0.903236,0.429201,0.928073,0.421333,0.928073,0.421333,0.928073 + ,0.429201,0.928073,0.500000,0.936460,0.429201,0.928073,0.439791,0.928073,0.500000,0.936460,0.361123,0.903236,0.381895,0.903236 + ,0.439791,0.928073,0.429201,0.928073,0.298382,0.862903,0.328538,0.862903,0.381895,0.903236,0.361123,0.903236,0.243389,0.808623 + ,0.281770,0.808623,0.328538,0.862903,0.298382,0.862903,0.198257,0.742484,0.243389,0.742484,0.281770,0.808623,0.243389,0.808623 + ,0.164721,0.667026,0.214869,0.667026,0.243389,0.742484,0.198257,0.742484,0.144070,0.585149,0.197306,0.585149,0.214869,0.667026 + ,0.164721,0.667026,0.137097,0.500000,0.191377,0.500000,0.197306,0.585149,0.144070,0.585149,0.144070,0.414851,0.197306,0.414851 + ,0.191377,0.500000,0.137097,0.500000,0.164721,0.332974,0.214869,0.332974,0.197306,0.414851,0.144070,0.414851,0.198257,0.257516 + ,0.243389,0.257516,0.214869,0.332974,0.164721,0.332974,0.243389,0.191376,0.281770,0.191376,0.243389,0.257516,0.198257,0.257516 + ,0.298382,0.137097,0.328538,0.137097,0.281770,0.191376,0.243389,0.191376,0.361123,0.096764,0.381895,0.096764,0.328538,0.137097 + ,0.298382,0.137097,0.429201,0.071927,0.439791,0.071927,0.381895,0.096764,0.361123,0.096764,0.500000,0.063540,0.439791,0.071927 + ,0.429201,0.071927,0.500000,0.063540,0.452694,0.071927,0.439791,0.071927,0.439791,0.071927,0.452694,0.071927,0.407205,0.096764 + ,0.381895,0.096764,0.381895,0.096764,0.407205,0.096764,0.365283,0.137097,0.328538,0.137097,0.328538,0.137097,0.365283,0.137097 + ,0.328538,0.191376,0.281770,0.191376,0.281770,0.191376,0.328538,0.191376,0.298382,0.257516,0.243389,0.257516,0.243389,0.257516 + ,0.298382,0.257516,0.275974,0.332974,0.214869,0.332974,0.214869,0.332974,0.275974,0.332974,0.262175,0.414851,0.197306,0.414851 + ,0.197306,0.414851,0.262175,0.414851,0.257516,0.500000,0.191377,0.500000,0.191377,0.500000,0.257516,0.500000,0.262175,0.585149 + ,0.197306,0.585149,0.197306,0.585149,0.262175,0.585149,0.275974,0.667026,0.214869,0.667026,0.214869,0.667026,0.275974,0.667026 + ,0.298382,0.742484,0.243389,0.742484,0.243389,0.742484,0.298382,0.742484,0.328538,0.808623,0.281770,0.808623,0.281770,0.808623 + ,0.328538,0.808623,0.365283,0.862903,0.328538,0.862903,0.328538,0.862903,0.365283,0.862903,0.407205,0.903236,0.381895,0.903236 + ,0.381895,0.903236,0.407205,0.903236,0.452694,0.928073,0.439791,0.928073,0.439791,0.928073,0.452694,0.928073,0.500000,0.936460 + ,0.452694,0.928073,0.467415,0.928073,0.500000,0.936460,0.407205,0.903236,0.436082,0.903236,0.467415,0.928073,0.452694,0.928073 + ,0.365283,0.862903,0.407205,0.862903,0.436082,0.903236,0.407205,0.903236,0.328538,0.808623,0.381895,0.808623,0.407205,0.862903 + ,0.365283,0.862903,0.298382,0.742484,0.361123,0.742484,0.381895,0.808623,0.328538,0.808623,0.275974,0.667026,0.345688,0.667026 + ,0.361123,0.742484,0.298382,0.742484,0.262175,0.585149,0.336184,0.585149,0.345688,0.667026,0.275974,0.667026,0.257516,0.500000 + ,0.332974,0.500000,0.336184,0.585149,0.262175,0.585149,0.262175,0.414851,0.336184,0.414851,0.332974,0.500000,0.257516,0.500000 + ,0.275974,0.332974,0.345688,0.332974,0.336184,0.414851,0.262175,0.414851,0.298382,0.257516,0.361123,0.257516,0.345688,0.332974 + ,0.275974,0.332974,0.328538,0.191376,0.381895,0.191376,0.361123,0.257516,0.298382,0.257516,0.365283,0.137097,0.407205,0.137097 + ,0.381895,0.191376,0.328538,0.191376,0.407205,0.096764,0.436082,0.096764,0.407205,0.137097,0.365283,0.137097,0.452694,0.071927 + ,0.467415,0.071927,0.436082,0.096764,0.407205,0.096764,0.500000,0.063540,0.467415,0.071927,0.452694,0.071927,0.500000,0.063540 + ,0.483388,0.071927,0.467415,0.071927,0.467415,0.071927,0.483388,0.071927,0.467415,0.096764,0.436082,0.096764,0.436082,0.096764 + ,0.467415,0.096764,0.452694,0.137097,0.407205,0.137097,0.407205,0.137097,0.452694,0.137097,0.439791,0.191376,0.381895,0.191376 + ,0.381895,0.191376,0.439791,0.191376,0.429201,0.257516,0.361123,0.257516,0.361123,0.257516,0.429201,0.257516,0.421333,0.332974 + ,0.345688,0.332974,0.345688,0.332974,0.421333,0.332974,0.416487,0.414851,0.336184,0.414851,0.336184,0.414851,0.416487,0.414851 + ,0.414851,0.500000,0.332974,0.500000,0.332974,0.500000,0.414851,0.500000,0.416487,0.585149,0.336184,0.585149,0.336184,0.585149 + ,0.416487,0.585149,0.421333,0.667026,0.345688,0.667026,0.345688,0.667026,0.421333,0.667026,0.429201,0.742484,0.361123,0.742484 + ,0.361123,0.742484,0.429201,0.742484,0.439791,0.808623,0.381895,0.808623,0.381895,0.808623,0.439791,0.808623,0.452694,0.862903 + ,0.407205,0.862903,0.407205,0.862903,0.452694,0.862903,0.467415,0.903236,0.436082,0.903236,0.436082,0.903236,0.467415,0.903236 + ,0.483388,0.928073,0.467415,0.928073,0.467415,0.928073,0.483388,0.928073,0.500000,0.936460,0.483388,0.928073,0.500000,0.928073 + ,0.500000,0.936460,0.467415,0.903236,0.500000,0.903236,0.500000,0.928073,0.483388,0.928073,0.452694,0.862903,0.500000,0.862903 + ,0.500000,0.903236,0.467415,0.903236,0.439791,0.808623,0.500000,0.808623,0.500000,0.862903,0.452694,0.862903,0.429201,0.742484 + ,0.500000,0.742484,0.500000,0.808623,0.439791,0.808623,0.421333,0.667026,0.500000,0.667026,0.500000,0.742484,0.429201,0.742484 + ,0.416487,0.585149,0.500000,0.585149,0.500000,0.667026,0.421333,0.667026,0.414851,0.500000,0.500000,0.500000,0.500000,0.585149 + ,0.416487,0.585149,0.416487,0.414851,0.500000,0.414851,0.500000,0.500000,0.414851,0.500000,0.421333,0.332974,0.500000,0.332974 + ,0.500000,0.414851,0.416487,0.414851,0.429201,0.257516,0.500000,0.257516,0.500000,0.332974,0.421333,0.332974,0.439791,0.191376 + ,0.500000,0.191376,0.500000,0.257516,0.429201,0.257516,0.452694,0.137097,0.500000,0.137097,0.500000,0.191376,0.439791,0.191376 + ,0.467415,0.096764,0.500000,0.096764,0.500000,0.137097,0.452694,0.137097,0.483388,0.071927,0.500000,0.071927,0.500000,0.096764 + ,0.467415,0.096764,0.500000,0.063540,0.500000,0.071927,0.483388,0.071927,0.500000,0.063540,0.516612,0.071927,0.500000,0.071927 + ,0.500000,0.071927,0.516612,0.071927,0.532585,0.096764,0.500000,0.096764,0.500000,0.096764,0.532585,0.096764,0.547306,0.137097 + ,0.500000,0.137097,0.500000,0.137097,0.547306,0.137097,0.560210,0.191376,0.500000,0.191376,0.500000,0.191376,0.560210,0.191376 + ,0.570799,0.257516,0.500000,0.257516,0.500000,0.257516,0.570799,0.257516,0.578668,0.332974,0.500000,0.332974,0.500000,0.332974 + ,0.578668,0.332974,0.583513,0.414851,0.500000,0.414851,0.500000,0.414851,0.583513,0.414851,0.585149,0.500000,0.500000,0.500000 + ,0.500000,0.500000,0.585149,0.500000,0.583513,0.585149,0.500000,0.585149,0.500000,0.585149,0.583513,0.585149,0.578668,0.667026 + ,0.500000,0.667026,0.500000,0.667026,0.578668,0.667026,0.570799,0.742484,0.500000,0.742484,0.500000,0.742484,0.570799,0.742484 + ,0.560210,0.808623,0.500000,0.808623,0.500000,0.808623,0.560210,0.808623,0.547306,0.862903,0.500000,0.862903,0.500000,0.862903 + ,0.547306,0.862903,0.532585,0.903236,0.500000,0.903236,0.500000,0.903236,0.532585,0.903236,0.516612,0.928073,0.500000,0.928073 + ,0.500000,0.928073,0.516612,0.928073,0.500000,0.936460,0.516612,0.928073,0.532585,0.928073,0.500000,0.936460,0.532585,0.903236 + ,0.563918,0.903236,0.532585,0.928073,0.516612,0.928073,0.547306,0.862903,0.592795,0.862903,0.563918,0.903236,0.532585,0.903236 + ,0.560210,0.808623,0.618105,0.808623,0.592795,0.862903,0.547306,0.862903,0.570799,0.742484,0.638877,0.742484,0.618105,0.808623 + ,0.560210,0.808623,0.578668,0.667026,0.654312,0.667026,0.638877,0.742484,0.570799,0.742484,0.583513,0.585149,0.663817,0.585149 + ,0.654312,0.667026,0.578668,0.667026,0.585149,0.500000,0.667026,0.500000,0.663817,0.585149,0.583513,0.585149,0.583513,0.414851 + ,0.663817,0.414851,0.667026,0.500000,0.585149,0.500000,0.578668,0.332974,0.654312,0.332974,0.663817,0.414851,0.583513,0.414851 + ,0.570799,0.257516,0.638877,0.257516,0.654312,0.332974,0.578668,0.332974,0.560210,0.191376,0.618105,0.191376,0.638877,0.257516 + ,0.570799,0.257516,0.547306,0.137097,0.592795,0.137097,0.618105,0.191376,0.560210,0.191376,0.532585,0.096764,0.563918,0.096764 + ,0.592795,0.137097,0.547306,0.137097,0.516612,0.071927,0.532585,0.071927,0.563918,0.096764,0.532585,0.096764,0.500000,0.063540 + ,0.532585,0.071927,0.516612,0.071927,0.500000,0.063540,0.547306,0.071927,0.532585,0.071927,0.532585,0.071927,0.547306,0.071927 + ,0.592795,0.096764,0.563918,0.096764,0.563918,0.096764,0.592795,0.096764,0.634717,0.137097,0.592795,0.137097,0.592795,0.137097 + ,0.634717,0.137097,0.671462,0.191376,0.618105,0.191376,0.618105,0.191376,0.671462,0.191376,0.701618,0.257516,0.638877,0.257516 + ,0.638877,0.257516,0.701618,0.257516,0.724026,0.332974,0.654312,0.332974,0.654312,0.332974,0.724026,0.332974,0.737825,0.414851 + ,0.663817,0.414851,0.663817,0.414851,0.737825,0.414851,0.742484,0.500000,0.667026,0.500000,0.667026,0.500000,0.742484,0.500000 + ,0.737825,0.585149,0.663817,0.585149,0.663817,0.585149,0.737825,0.585149,0.724026,0.667026,0.654312,0.667026,0.654312,0.667026 + ,0.724026,0.667026,0.701618,0.742484,0.638877,0.742484,0.638877,0.742484,0.701618,0.742484,0.671462,0.808623,0.618105,0.808623 + ,0.618105,0.808623,0.671462,0.808623,0.634717,0.862903,0.592795,0.862903,0.592795,0.862903,0.634717,0.862903,0.592795,0.903236 + ,0.563918,0.903236,0.563918,0.903236,0.592795,0.903236,0.547306,0.928073,0.532585,0.928073,0.532585,0.928073,0.547306,0.928073 + ,0.500000,0.936460,0.547306,0.928073,0.560210,0.928073,0.500000,0.936460,0.592795,0.903236,0.618105,0.903236,0.560210,0.928073 + ,0.547306,0.928073,0.634717,0.862903,0.671462,0.862903,0.618105,0.903236,0.592795,0.903236,0.671462,0.808623,0.718230,0.808623 + ,0.671462,0.862903,0.634717,0.862903,0.701618,0.742484,0.756611,0.742484,0.718230,0.808623,0.671462,0.808623,0.724026,0.667026 + ,0.785131,0.667026,0.756611,0.742484,0.701618,0.742484,0.737825,0.585149,0.802694,0.585149,0.785131,0.667026,0.724026,0.667026 + ,0.742484,0.500000,0.808624,0.500000,0.802694,0.585149,0.737825,0.585149,0.737825,0.414851,0.802694,0.414851,0.808624,0.500000 + ,0.742484,0.500000,0.724026,0.332974,0.785131,0.332974,0.802694,0.414851,0.737825,0.414851,0.701618,0.257516,0.756611,0.257516 + ,0.785131,0.332974,0.724026,0.332974,0.671462,0.191376,0.718230,0.191376,0.756611,0.257516,0.701618,0.257516,0.634717,0.137097 + ,0.671462,0.137097,0.718230,0.191376,0.671462,0.191376,0.592795,0.096764,0.618105,0.096764,0.671462,0.137097,0.634717,0.137097 + ,0.547306,0.071927,0.560209,0.071927,0.618105,0.096764,0.592795,0.096764,0.500000,0.063540,0.560209,0.071927,0.547306,0.071927 + ,0.500000,0.063540,0.570799,0.071927,0.560209,0.071927,0.560209,0.071927,0.570799,0.071927,0.638877,0.096764,0.618105,0.096764 + ,0.618105,0.096764,0.638877,0.096764,0.701618,0.137097,0.671462,0.137097,0.671462,0.137097,0.701618,0.137097,0.756611,0.191376 + ,0.718230,0.191376,0.718230,0.191376,0.756611,0.191376,0.801743,0.257516,0.756611,0.257516,0.756611,0.257516,0.801743,0.257516 + ,0.835279,0.332974,0.785131,0.332974,0.785131,0.332974,0.835279,0.332974,0.855930,0.414851,0.802694,0.414851,0.802694,0.414851 + ,0.855930,0.414851,0.862903,0.500000,0.808624,0.500000,0.808624,0.500000,0.862903,0.500000,0.855930,0.585149,0.802694,0.585149 + ,0.802694,0.585149,0.855930,0.585149,0.835279,0.667026,0.785131,0.667026,0.785131,0.667026,0.835279,0.667026,0.801743,0.742484 + ,0.756611,0.742484,0.756611,0.742484,0.801743,0.742484,0.756611,0.808623,0.718230,0.808623,0.718230,0.808623,0.756611,0.808623 + ,0.701618,0.862903,0.671462,0.862903,0.671462,0.862903,0.701618,0.862903,0.638877,0.903236,0.618105,0.903236,0.618105,0.903236 + ,0.638877,0.903236,0.570799,0.928073,0.560210,0.928073,0.560210,0.928073,0.570799,0.928073,0.500000,0.936460,0.570799,0.928073 + ,0.578668,0.928073,0.500000,0.936460,0.638877,0.903236,0.654312,0.903236,0.578668,0.928073,0.570799,0.928073,0.701618,0.862903 + ,0.724026,0.862903,0.654312,0.903236,0.638877,0.903236,0.756611,0.808623,0.785131,0.808623,0.724026,0.862903,0.701618,0.862903 + ,0.801743,0.742484,0.835279,0.742484,0.785131,0.808623,0.756611,0.808623,0.835279,0.667026,0.872542,0.667026,0.835279,0.742484 + ,0.801743,0.742484,0.855930,0.585149,0.895488,0.585149,0.872542,0.667026,0.835279,0.667026,0.862903,0.500000,0.903236,0.500000 + ,0.895488,0.585149,0.855930,0.585149,0.855930,0.414851,0.895488,0.414851,0.903236,0.500000,0.862903,0.500000,0.835279,0.332974 + ,0.872542,0.332974,0.895488,0.414851,0.855930,0.414851,0.801743,0.257516,0.835279,0.257516,0.872542,0.332974,0.835279,0.332974 + ,0.756611,0.191376,0.785131,0.191376,0.835279,0.257516,0.801743,0.257516,0.701618,0.137097,0.724026,0.137097,0.785131,0.191376 + ,0.756611,0.191376,0.638877,0.096764,0.654312,0.096764,0.724026,0.137097,0.701618,0.137097,0.570799,0.071927,0.578668,0.071927 + ,0.654312,0.096764,0.638877,0.096764,0.500000,0.063540,0.578668,0.071927,0.570799,0.071927,0.500000,0.063540,0.583513,0.071927 + ,0.578668,0.071927,0.578668,0.071927,0.583513,0.071927,0.663817,0.096764,0.654312,0.096764,0.654312,0.096764,0.663817,0.096764 + ,0.737825,0.137097,0.724026,0.137097,0.724026,0.137097,0.737825,0.137097,0.802694,0.191376,0.785131,0.191376,0.785131,0.191376 + ,0.802694,0.191376,0.855930,0.257516,0.835279,0.257516,0.835279,0.257516,0.855930,0.257516,0.895489,0.332974,0.872542,0.332974 + ,0.872542,0.332974,0.895489,0.332974,0.919848,0.414851,0.895488,0.414851,0.895488,0.414851,0.919848,0.414851,0.928073,0.500000 + ,0.903236,0.500000,0.903236,0.500000,0.928073,0.500000,0.919848,0.585149,0.895488,0.585149,0.895488,0.585149,0.919848,0.585149 + ,0.895488,0.667026,0.872542,0.667026,0.872542,0.667026,0.895488,0.667026,0.855930,0.742484,0.835279,0.742484,0.835279,0.742484 + ,0.855930,0.742484,0.802694,0.808623,0.785131,0.808623,0.785131,0.808623,0.802694,0.808623,0.737825,0.862903,0.724026,0.862903 + ,0.724026,0.862903,0.737825,0.862903,0.663817,0.903236,0.654312,0.903236,0.654312,0.903236,0.663817,0.903236,0.583513,0.928073 + ,0.578668,0.928073,0.578668,0.928073,0.583513,0.928073,0.500000,0.936460,0.583513,0.928073,0.585149,0.928073,0.500000,0.936460 + ,0.663817,0.903236,0.667026,0.903236,0.585149,0.928073,0.583513,0.928073,0.737825,0.862903,0.742484,0.862903,0.667026,0.903236 + ,0.663817,0.903236,0.802694,0.808623,0.808624,0.808623,0.742484,0.862903,0.737825,0.862903,0.855930,0.742484,0.862903,0.742484 + ,0.808624,0.808623,0.802694,0.808623,0.895488,0.667026,0.903236,0.667026,0.862903,0.742484,0.855930,0.742484,0.919848,0.585149 + ,0.928074,0.585149,0.903236,0.667026,0.895488,0.667026,0.928073,0.500000,0.936460,0.500000,0.928074,0.585149,0.919848,0.585149 + ,0.919848,0.414851,0.928074,0.414851,0.936460,0.500000,0.928073,0.500000,0.895489,0.332974,0.903236,0.332974,0.928074,0.414851 + ,0.919848,0.414851,0.855930,0.257516,0.862903,0.257516,0.903236,0.332974,0.895489,0.332974,0.802694,0.191376,0.808624,0.191376 + ,0.862903,0.257516,0.855930,0.257516,0.737825,0.137097,0.742484,0.137097,0.808624,0.191376,0.802694,0.191376,0.663817,0.096764 + ,0.667026,0.096764,0.742484,0.137097,0.737825,0.137097,0.583513,0.071927,0.585149,0.071927,0.667026,0.096764,0.663817,0.096764 + ,0.500000,0.063540,0.585149,0.071927,0.583513,0.071927 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 + ,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109 + ,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164 + ,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219 + ,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274 + ,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329 + ,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,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,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,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,540,541,542,543,544,545,546,547,548,549 + ,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,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,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,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769 + ,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824 + ,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879 + ,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934 + ,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989 + ,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044 + ,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099 + ,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154 + ,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209 + ,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264 + ,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319 + ,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374 + ,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429 + ,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484 + ,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539 + ,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594 + ,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649 + ,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704 + ,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759 + ,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814 + ,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869 + ,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924 + ,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979 + ,1980,1981,1982,1983 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: "Model::Producer Perspective", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,71.299999999999997,287.500000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",10.000000 + Property: "FarPlane", "double", "",4000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",0 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,71.300000,287.500000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Top", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Bottom", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,-4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,-4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Front", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Back", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,-4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,-4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Right", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Left", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: -4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Material: "Material::None__PlayerPanels_png", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Phong" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",0.5000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",1.0000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "SpecularFactor", "double", "",0.2000 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",0.8,0.8,0.8 + Property: "Shininess", "double", "",20.0 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Video: "Video::PlayerPanels_png", "Clip" { + Type: "Clip" + Properties60: { + Property: "FrameRate", "double", "",0 + Property: "LastFrame", "int", "",0 + Property: "Width", "int", "",0 + Property: "Height", "int", "",0 + Property: "Path", "charptr", "", "EyeBall.png" + Property: "StartFrame", "int", "",0 + Property: "StopFrame", "int", "",0 + Property: "PlaySpeed", "double", "",1 + Property: "Offset", "KTime", "",0 + Property: "InterlaceMode", "enum", "",0 + Property: "FreeRunning", "bool", "",0 + Property: "Loop", "bool", "",0 + Property: "AccessMode", "enum", "",0 + } + UseMipMap: 0 + Filename: "EyeBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\EyeBall.png" + } + Texture: "Texture::PlayerPanels_png", "TextureVideoClip" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::PlayerPanels_png" + Properties60: { + Property: "Translation", "Vector", "A+",0,0,0 + Property: "Rotation", "Vector", "A+",0,0,0 + Property: "Scaling", "Vector", "A+",1,1,1 + Property: "Texture alpha", "Number", "A+",0 + Property: "TextureTypeUse", "enum", "",0 + Property: "CurrentTextureBlendMode", "enum", "",1 + Property: "UseMaterial", "bool", "",0 + Property: "UseMipMap", "bool", "",0 + Property: "CurrentMappingType", "enum", "",0 + Property: "UVSwap", "bool", "",0 + Property: "WrapModeU", "enum", "",0 + Property: "WrapModeV", "enum", "",0 + Property: "TextureRotationPivot", "Vector3D", "",0,0,0 + Property: "TextureScalingPivot", "Vector3D", "",0,0,0 + Property: "VideoProperty", "object", "" + } + Media: "Video::PlayerPanels_png" + FileName: "EyeBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\EyeBall.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 2 + PoseNode: { + Node: "Model::blend_root" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::EyeBall" + Matrix: -0.500000000000000,-0.000000000000003,-0.000000075497901,0.000000000000000,-0.000000075497901,0.000000021855694,0.500000000000000,0.000000000000000,0.000000000000000,0.500000000000000,-0.000000021855694,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",100 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::blend_root", "Null" { + } + Model: "Model::EyeBall", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::None__PlayerPanels_png", "" { + } + Texture: "Texture::PlayerPanels_png", "TextureVideoClip" { + } + Video: "Video::PlayerPanels_png", "Clip" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::blend_root", "Model::Scene" + Connect: "OO", "Model::EyeBall", "Model::blend_root" + Connect: "OO", "Material::None__PlayerPanels_png", "Model::EyeBall" + Connect: "OO", "Texture::PlayerPanels_png", "Model::EyeBall" + Connect: "OO", "Video::PlayerPanels_png", "Texture::PlayerPanels_png" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" + Take: "Default Take" { + FileName: "Default_Take.tak" + LocalTime: 0,479181389250 + ReferenceTime: 0,479181389250 + + ;Models animation + ;---------------------------------------------------- + Model: "Model::EyeBall" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -89.999995674159678 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-89.999995674159678,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 179.999991348319355 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,179.999991348319355,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000378 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000378,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + } +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FlogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.1,0.1,0.1,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 479181389250 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/Assets/resources/Ball Pack/Models/EyeBall.fbx.meta b/Assets/resources/Ball Pack/Models/EyeBall.fbx.meta new file mode 100644 index 00000000..683ef882 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/EyeBall.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: 5f603b8c73c81724b9bdc1c65764eb4c +ModelImporter: + serializedVersion: 20200 + internalIDToNameTable: + - first: + 43: 4300000 + second: Sphere + - first: + 43: 4300002 + second: EyeBall + - first: + 1001: 100100000 + second: DataTemplate __Singleton__ + - first: + 74: 1989289236423521904 + second: Default Take + externalObjects: {} + materials: + materialImportMode: 1 + materialName: 3 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 0 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + fileIdsGeneration: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + meshOptimizationFlags: -1 + indexFormat: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 0 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 4 + normalCalculationMode: 0 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 1 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials.meta b/Assets/resources/Ball Pack/Models/Materials.meta new file mode 100644 index 00000000..565785e8 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e31285f38e5e964ea1c7eca18c21bd1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomLines.mat b/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomLines.mat new file mode 100644 index 00000000..7e2aa5bf --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomLines.mat @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: AtomBall-AtomLines + m_Shader: {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: [] + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] +--- !u!1002 &2100001 +EditorExtensionImpl: + serializedVersion: 6 diff --git a/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomLines.mat.meta b/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomLines.mat.meta new file mode 100644 index 00000000..bd10fe50 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomLines.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c6ea6940a355434eb03c9c271744eca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomSphere.mat b/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomSphere.mat new file mode 100644 index 00000000..bda634bd --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomSphere.mat @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: AtomBall-AtomSphere + m_Shader: {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: [] + m_Colors: + - _Color: {r: 0, g: 0.5926, b: 0.0197, a: 1} + m_BuildTextureStacks: [] +--- !u!1002 &2100001 +EditorExtensionImpl: + serializedVersion: 6 diff --git a/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomSphere.mat.meta b/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomSphere.mat.meta new file mode 100644 index 00000000..27a1e796 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/AtomBall-AtomSphere.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5c353f7057da35640bdff38d63dda4d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials/AtomBall-No Name.mat b/Assets/resources/Ball Pack/Models/Materials/AtomBall-No Name.mat new file mode 100644 index 00000000..f4fc5d2d --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/AtomBall-No Name.mat @@ -0,0 +1,78 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: AtomBall-No Name + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/resources/Ball Pack/Models/Materials/AtomBall-No Name.mat.meta b/Assets/resources/Ball Pack/Models/Materials/AtomBall-No Name.mat.meta new file mode 100644 index 00000000..3b03b2a2 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/AtomBall-No Name.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6fa08a488bd3c1a4a8466925211f4bd1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials/BombBall.mat b/Assets/resources/Ball Pack/Models/Materials/BombBall.mat new file mode 100644 index 00000000..2e771b6e --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/BombBall.mat @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BombBall + m_Shader: {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 2800000, guid: 6baf704df9aa55046a9553124c407683, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: [] + m_Colors: + - _Color: {r: 0.8, g: 0.8, b: 0.8, a: 1} + m_BuildTextureStacks: [] +--- !u!1002 &2100001 +EditorExtensionImpl: + serializedVersion: 6 diff --git a/Assets/resources/Ball Pack/Models/Materials/BombBall.mat.meta b/Assets/resources/Ball Pack/Models/Materials/BombBall.mat.meta new file mode 100644 index 00000000..39d2575d --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/BombBall.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7717d08fdcc532b449044fc4b21a7b5a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials/BuckyBall-No Name.mat b/Assets/resources/Ball Pack/Models/Materials/BuckyBall-No Name.mat new file mode 100644 index 00000000..91005588 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/BuckyBall-No Name.mat @@ -0,0 +1,78 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BuckyBall-No Name + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/resources/Ball Pack/Models/Materials/BuckyBall-No Name.mat.meta b/Assets/resources/Ball Pack/Models/Materials/BuckyBall-No Name.mat.meta new file mode 100644 index 00000000..c59749ff --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/BuckyBall-No Name.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d1bf0a2e0afb1c54e9080e5f71e3531f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials/BuckyBall.mat b/Assets/resources/Ball Pack/Models/Materials/BuckyBall.mat new file mode 100644 index 00000000..31bcc96f --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/BuckyBall.mat @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: BuckyBall + m_Shader: {fileID: 3, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _Shininess: 0.078125 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_BuildTextureStacks: [] +--- !u!1002 &2100001 +EditorExtensionImpl: + serializedVersion: 6 diff --git a/Assets/resources/Ball Pack/Models/Materials/BuckyBall.mat.meta b/Assets/resources/Ball Pack/Models/Materials/BuckyBall.mat.meta new file mode 100644 index 00000000..4fa025a8 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/BuckyBall.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 031501c1b2b84414d819f1b449251dd4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials/EyeBall.mat b/Assets/resources/Ball Pack/Models/Materials/EyeBall.mat new file mode 100644 index 00000000..2bb49187 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/EyeBall.mat @@ -0,0 +1,39 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: EyeBall + m_Shader: {fileID: 3, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Illum: + m_Texture: {fileID: 2800000, guid: ac9b7fcf7cca56b48afdfde7b78948c5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: cd0ae13249cbc9c4dab2043eca83ae07, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _EmissionLM: 0 + - _Shininess: 0.12245336 + m_Colors: + - _Color: {r: 0.9125874, g: 0.9125874, b: 0.9125874, a: 1} + - _SpecColor: {r: 0.75174826, g: 0.75174826, b: 0.75174826, a: 1} + m_BuildTextureStacks: [] +--- !u!1002 &2100001 +EditorExtensionImpl: + serializedVersion: 6 diff --git a/Assets/resources/Ball Pack/Models/Materials/EyeBall.mat.meta b/Assets/resources/Ball Pack/Models/Materials/EyeBall.mat.meta new file mode 100644 index 00000000..ff8bf6ab --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/EyeBall.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 574a32f1fd43e0e498988286b3eeb64b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials/SpikeBall.mat b/Assets/resources/Ball Pack/Models/Materials/SpikeBall.mat new file mode 100644 index 00000000..ee212c22 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/SpikeBall.mat @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SpikeBall + m_Shader: {fileID: 3, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 2800000, guid: a7620eecb715ccf409f41bda9e06f7cc, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _Shininess: 0.3202985 + m_Colors: + - _Color: {r: 0.8, g: 0.8, b: 0.8, a: 1} + - _SpecColor: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] +--- !u!1002 &2100001 +EditorExtensionImpl: + serializedVersion: 6 diff --git a/Assets/resources/Ball Pack/Models/Materials/SpikeBall.mat.meta b/Assets/resources/Ball Pack/Models/Materials/SpikeBall.mat.meta new file mode 100644 index 00000000..9febaa0a --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/SpikeBall.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 056d79484fff9e84dafaa83f1d7ccbb1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials/SplitMetalBall.mat b/Assets/resources/Ball Pack/Models/Materials/SplitMetalBall.mat new file mode 100644 index 00000000..ce39f195 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/SplitMetalBall.mat @@ -0,0 +1,43 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SplitMetalBall + m_Shader: {fileID: 12, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Illum: + m_Texture: {fileID: 2800000, guid: 8f3b327bfc1af974283b0cd9941ef840, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 01b2c033f59bc0f40939edd7beba09b8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _EmissionLM: 0 + - _Shininess: 0.078125 + m_Colors: + - _Color: {r: 0.8566434, g: 0.8566434, b: 0.8566434, a: 1} + - _SpecColor: {r: 0.42307693, g: 0.42307693, b: 0.42307693, a: 1} + m_BuildTextureStacks: [] +--- !u!1002 &2100001 +EditorExtensionImpl: + serializedVersion: 6 diff --git a/Assets/resources/Ball Pack/Models/Materials/SplitMetalBall.mat.meta b/Assets/resources/Ball Pack/Models/Materials/SplitMetalBall.mat.meta new file mode 100644 index 00000000..9a651556 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/SplitMetalBall.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6a15b1f15432b6f4b9a8066e1e6ca4df +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials/WheelBall.mat b/Assets/resources/Ball Pack/Models/Materials/WheelBall.mat new file mode 100644 index 00000000..d7d832ac --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/WheelBall.mat @@ -0,0 +1,39 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: WheelBall + m_Shader: {fileID: 12, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _Illum: + m_Texture: {fileID: 2800000, guid: ac57b13941dd0884ca6b37a1b44faa90, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: d1e116197624a1e49b72f535c7c8037b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _EmissionLM: 0 + - _Shininess: 0.6158209 + m_Colors: + - _Color: {r: 0.8, g: 0.8, b: 0.8, a: 1} + - _SpecColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_BuildTextureStacks: [] +--- !u!1002 &2100001 +EditorExtensionImpl: + serializedVersion: 6 diff --git a/Assets/resources/Ball Pack/Models/Materials/WheelBall.mat.meta b/Assets/resources/Ball Pack/Models/Materials/WheelBall.mat.meta new file mode 100644 index 00000000..243eeaf0 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/WheelBall.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 40db05b0756f19c43ae471505d9b8ce5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Materials/WoodenBall.mat b/Assets/resources/Ball Pack/Models/Materials/WoodenBall.mat new file mode 100644 index 00000000..ee9be4e0 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/WoodenBall.mat @@ -0,0 +1,32 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: WoodenBall + m_Shader: {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _MainTex: + m_Texture: {fileID: 2800000, guid: 650fa06661e92af4b956f6d247e8acc9, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: [] + m_Colors: + - _Color: {r: 0.8, g: 0.8, b: 0.8, a: 1} + m_BuildTextureStacks: [] +--- !u!1002 &2100001 +EditorExtensionImpl: + serializedVersion: 6 diff --git a/Assets/resources/Ball Pack/Models/Materials/WoodenBall.mat.meta b/Assets/resources/Ball Pack/Models/Materials/WoodenBall.mat.meta new file mode 100644 index 00000000..80d3143d --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Materials/WoodenBall.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 846721efcb18b9b459ce40b282e84240 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/SpikeBall.fbx b/Assets/resources/Ball Pack/Models/SpikeBall.fbx new file mode 100644 index 00000000..b3d81d2c --- /dev/null +++ b/Assets/resources/Ball Pack/Models/SpikeBall.fbx @@ -0,0 +1,2074 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2011 + Month: 03 + Day: 16 + Hour: 12 + Minute: 48 + Second: 14 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2011-03-16 12:48:14:000" +Creator: "Blender version 2.56 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 14 + ObjectType: "Model" { + Count: 10 + } + ObjectType: "Geometry" { + Count: 1 + } + ObjectType: "Material" { + Count: 1 + } + ObjectType: "Texture" { + Count: 1 + } + ObjectType: "Video" { + Count: 1 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::Camera Switcher", "CameraSwitcher" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Camera Index", "Integer", "A+",100 + } + MultiLayer: 0 + MultiTake: 1 + Hidden: "True" + Shading: W + Culling: "CullingOff" + Version: 101 + Name: "Model::Camera Switcher" + CameraId: 0 + CameraName: 100 + CameraIndexName: + } + Model: "Model::blend_root", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::SpikeBall", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.000000,0.000000,0.573238,0.000000,0.000000,-0.573238,0.000000,0.219369,0.529603,0.000000,0.219369,-0.529603,0.000000,-0.219369,0.529603,0.000000,-0.219369,-0.529603,0.000000,0.405341,0.405341 + ,0.000000,0.405341,-0.405341,0.000000,-0.405341,0.405341,0.000000,-0.405341,-0.405341,0.000000,0.529603,0.219369,0.000000,0.529603,-0.219369,0.000000,-0.529603,0.219369,0.000000,-0.529603,-0.219369 + ,0.000000,0.573238,0.000000,0.000000,-0.573238,0.000000,-0.219369,0.529603,0.000000,-0.219369,-0.529603,0.000000,0.219369,0.529603,0.000000,0.219369,-0.529603,0.000000,-0.202670,0.489290,0.219369 + ,-0.202670,0.489290,-0.219369,-0.202670,-0.489290,0.219369,-0.202670,-0.489290,-0.219369,0.202670,0.489290,0.219369,0.202670,0.489290,-0.219369,0.202670,-0.489290,0.219369,0.202670,-0.489290,-0.219369 + ,-0.155117,0.374486,0.405341,-0.155117,0.374486,-0.405341,-0.155117,-0.374486,0.405341,-0.155117,-0.374486,-0.405341,0.155117,0.374486,0.405341,0.155117,0.374486,-0.405341,0.155117,-0.374486,0.405341 + ,0.155117,-0.374486,-0.405341,-0.083949,0.202670,0.529603,-0.083949,0.202670,-0.529603,-0.083949,-0.202670,0.529603,-0.083949,-0.202670,-0.529603,0.083949,0.202670,0.529603,0.083949,0.202670,-0.529603 + ,0.083949,-0.202670,0.529603,0.083949,-0.202670,-0.529603,-0.155117,0.155117,0.529603,-0.155117,0.155117,-0.529603,-0.155117,-0.155117,0.529603,-0.155117,-0.155117,-0.529603,0.155117,0.155117,0.529603 + ,0.155117,0.155117,-0.529603,0.155117,-0.155117,0.529603,0.155117,-0.155117,-0.529603,-0.286619,0.286619,0.405341,-0.286619,0.286619,-0.405341,-0.286619,-0.286619,0.405341,-0.286619,-0.286619,-0.405341 + ,0.286619,0.286619,0.405341,0.286619,0.286619,-0.405341,0.286619,-0.286619,0.405341,0.286619,-0.286619,-0.405341,-0.374486,0.374486,0.219369,-0.374486,0.374486,-0.219369,-0.374486,-0.374486,0.219369 + ,-0.374486,-0.374486,-0.219369,0.374486,0.374486,0.219369,0.374486,0.374486,-0.219369,0.374486,-0.374486,0.219369,0.374486,-0.374486,-0.219369,-0.405341,0.405341,0.000000,-0.405341,-0.405341,0.000000 + ,0.405341,0.405341,0.000000,0.405341,-0.405341,0.000000,-0.529603,0.219369,0.000000,-0.529603,-0.219369,0.000000,0.529603,0.219369,0.000000,0.529603,-0.219369,0.000000,-0.489290,0.202670,0.219369 + ,-0.489290,0.202670,-0.219369,-0.489290,-0.202670,0.219369,-0.489290,-0.202670,-0.219369,0.489290,0.202670,0.219369,0.489290,0.202670,-0.219369,0.489290,-0.202670,0.219369,0.489290,-0.202670,-0.219369 + ,-0.374486,0.155117,0.405341,-0.374486,0.155117,-0.405341,-0.374486,-0.155117,0.405341,-0.374486,-0.155117,-0.405341,0.374486,0.155117,0.405341,0.374486,0.155117,-0.405341,0.374486,-0.155117,0.405341 + ,0.374486,-0.155117,-0.405341,-0.202670,0.083949,0.529603,-0.202670,0.083949,-0.529603,-0.202670,-0.083949,0.529603,-0.202670,-0.083949,-0.529603,0.202670,0.083949,0.529603,0.202670,0.083949,-0.529603 + ,0.202670,-0.083949,0.529603,0.202670,-0.083949,-0.529603,-0.219369,0.000000,0.529603,-0.219369,0.000000,-0.529603,0.219369,0.000000,0.529603,0.219369,0.000000,-0.529603,-0.405341,0.000000,0.405341 + ,-0.405341,0.000000,-0.405341,0.405341,0.000000,0.405341,0.405341,0.000000,-0.405341,-0.529603,0.000000,0.219369,-0.529603,0.000000,-0.219369,0.529603,0.000000,0.219369,0.529603,0.000000,-0.219369 + ,-0.573238,0.000000,0.000000,0.573238,0.000000,0.000000,0.000000,0.184799,0.502268,0.000000,0.184799,-0.502268,0.000000,-0.184799,0.502268,0.000000,-0.184799,-0.502268,-0.160041,0.092400,0.502268 + ,-0.160041,-0.092400,-0.502268,0.160041,-0.092400,0.502268,0.160041,-0.092400,-0.502268,0.000000,0.502268,0.184799,0.000000,0.502268,-0.184799,0.000000,-0.502268,0.184799,0.000000,-0.502268,-0.184799 + ,-0.160041,0.502268,-0.092399,-0.160041,-0.502268,-0.092399,0.160041,0.502268,-0.092399,0.160041,-0.502268,-0.092399,0.000000,0.708711,0.708710,0.000000,0.708711,-0.708710,0.000000,-0.708711,0.708710 + ,0.000000,-0.708711,-0.708710,-0.160041,0.420494,0.289821,-0.160041,0.420494,-0.289821,-0.160041,-0.420494,0.289821,-0.160041,-0.420494,-0.289821,0.160041,0.420494,0.289821,0.160041,0.420494,-0.289821 + ,0.160041,-0.420494,0.289821,0.160041,-0.420494,-0.289821,-0.160041,0.289821,0.420494,-0.160041,0.289821,-0.420494,-0.160041,-0.289821,0.420494,-0.160041,-0.289821,-0.420494,0.160041,0.289821,0.420494 + ,0.160041,0.289821,-0.420494,0.160041,-0.289821,0.420494,0.160041,-0.289821,-0.420494,0.000000,0.224485,0.485830,0.000000,0.224485,-0.485830,0.000000,-0.224485,0.485830,0.000000,-0.224485,-0.485830 + ,0.000000,0.485830,0.224484,0.000000,0.485830,-0.224484,0.000000,-0.485830,0.224484,0.000000,-0.485830,-0.224484,-0.502268,0.184799,0.000000,-0.502268,-0.184799,0.000000,0.502268,0.184799,0.000000 + ,0.502268,-0.184799,0.000000,-0.502268,0.092400,0.160041,-0.502268,0.092400,-0.160041,0.502268,0.092400,0.160041,0.502268,0.092400,-0.160041,-0.246140,0.418513,0.225135,-0.246140,0.418513,-0.225135 + ,-0.246140,-0.418513,0.225135,-0.246140,-0.418513,-0.225135,0.246140,0.418513,0.225135,0.246140,0.418513,-0.225135,0.246140,-0.418513,0.225135,0.246140,-0.418513,-0.225135,-0.449403,0.112796,0.267839 + ,-0.449403,0.112796,-0.267839,-0.449403,-0.112796,0.267839,-0.449403,-0.112796,-0.267839,0.449403,0.112796,0.267839,0.449403,0.112796,-0.267839,0.449403,-0.112796,0.267839,0.449403,-0.112796,-0.267839 + ,-0.473333,0.219615,0.118951,-0.473333,0.219615,-0.118951,-0.473333,-0.219615,0.118951,-0.473333,-0.219615,-0.118951,0.473333,0.219615,0.118951,0.473333,0.219615,-0.118951,0.473333,-0.219615,0.118951 + ,0.473333,-0.219615,-0.118951,-0.371701,0.372474,0.097599,-0.371701,0.372474,-0.097599,-0.371701,-0.372474,0.097599,-0.371701,-0.372474,-0.097599,0.371701,0.372474,0.097599,0.371701,0.372474,-0.097599 + ,0.371701,-0.372474,0.097599,0.371701,-0.372474,-0.097599,-0.693973,0.530109,0.491862,-0.693973,0.530109,-0.491862,-0.693973,-0.530109,0.491862,-0.693973,-0.530109,-0.491862,0.693973,0.530109,0.491862 + ,0.693973,0.530109,-0.491862,0.693973,-0.530109,0.491862,0.693973,-0.530109,-0.491862,-0.323842,0.158835,0.395376,-0.323842,0.158835,-0.395376,-0.323842,-0.158835,0.395376,-0.323842,-0.158835,-0.395376 + ,0.323842,0.158835,0.395376,0.323842,0.158835,-0.395376,0.323842,-0.158835,0.395376,0.323842,-0.158835,-0.395376,-0.222210,0.311694,0.374024,-0.222210,0.311694,-0.374024,-0.222210,-0.311694,0.374024 + ,-0.222210,-0.311694,-0.374024,0.222210,0.311694,0.374024,0.222210,0.311694,-0.374024,0.222210,-0.311694,0.374024,0.222210,-0.311694,-0.374024,-0.160041,-0.092400,0.502268,-0.160041,0.092400,-0.502268 + ,0.160041,0.092400,0.502268,0.160041,0.092400,-0.502268,0.000000,0.000000,1.002268,0.000000,0.000000,-1.002268,-0.160041,0.502268,0.092399,-0.160041,-0.502268,0.092399,0.160041,0.502268,0.092399 + ,0.160041,-0.502268,0.092399,0.000000,1.002268,0.000000,0.000000,-1.002268,0.000000,-0.502268,-0.092400,0.160041,-0.502268,-0.092400,-0.160041,0.502268,-0.092400,0.160041,0.502268,-0.092400,-0.160041 + ,-1.002268,0.000000,0.000000,1.002268,0.000000,0.000000 + PolygonVertexIndex: 14,16,20,-11,21,16,14,-12,22,17,15,-13,15,17,23,-14,24,18,14,-11,14,18,25,-12,15,19,26,-13,27,19,15,-14,10,20,28,-7,29,21,11,-8,30,22,12,-9,13,23,31,-10,32,24,10,-7 + ,11,25,33,-8,12,26,34,-9,35,27,13,-10,6,28,36,-3,37,29,7,-4,38,30,8,-5,9,31,39,-6,40,32,6,-3,7,33,41,-4,8,34,42,-5,43,35,9,-6,36,0,-3,3,1,-38 + ,4,0,-39,39,1,-6,2,0,-41,41,1,-4,42,0,-5,5,1,-44,44,0,-37,37,1,-46,38,0,-47,47,1,-40,40,0,-49,49,1,-42,50,0,-43 + ,43,1,-52,28,52,44,-37,45,53,29,-38,46,54,30,-39,31,55,47,-40,48,56,32,-41,33,57,49,-42,34,58,50,-43,51,59,35,-44,20,60,52,-29,53,61,21,-30,54,62,22,-31,23,63,55,-32 + ,56,64,24,-33,25,65,57,-34,26,66,58,-35,59,67,27,-36,16,68,60,-21,61,68,16,-22,62,69,17,-23,17,69,63,-24,64,70,18,-25,18,70,65,-26,19,71,66,-27,67,71,19,-28,68,72,76,-61 + ,77,72,68,-62,78,73,69,-63,69,73,79,-64,80,74,70,-65,70,74,81,-66,71,75,82,-67,83,75,71,-68,60,76,84,-53,85,77,61,-54,86,78,62,-55,63,79,87,-56,88,80,64,-57,65,81,89,-58 + ,66,82,90,-59,91,83,67,-60,52,84,92,-45,93,85,53,-46,94,86,54,-47,55,87,95,-48,96,88,56,-49,57,89,97,-50,58,90,98,-51,99,91,59,-52,92,0,-45,45,1,-94,46,0,-95 + ,95,1,-48,48,0,-97,97,1,-50,98,0,-51,51,1,-100,100,0,-93,93,1,-102,94,0,-101,101,1,-96,96,0,-103,103,1,-98,102,0,-99,99,1,-104 + ,84,104,100,-93,101,105,85,-94,100,104,86,-95,87,105,101,-96,102,106,88,-97,89,107,103,-98,90,106,102,-99,103,107,91,-100,76,108,104,-85,105,109,77,-86,104,108,78,-87,79,109,105,-88,106,110,80,-89 + ,81,111,107,-90,82,110,106,-91,107,111,83,-92,72,112,108,-77,109,112,72,-78,108,112,73,-79,73,112,109,-80,110,113,74,-81,74,113,111,-82,75,113,110,-83,111,113,75,-84,130,154,-135,135,155,-132 + ,136,156,-133,133,157,-138,138,154,-131,131,155,-140,132,156,-141,141,157,-134,130,134,-143,143,135,-132,144,136,-133,133,137,-146,146,138,-131,131,139,-148,132,140,-149 + ,149,141,-134,130,142,-151,151,143,-132,152,144,-133,133,145,-154,150,146,-131,131,147,-152,132,148,-153,153,149,-134,198,182,-175,175,183,-200,176,184,-201,201,185,-178 + ,178,186,-203,203,187,-180,204,188,-181,181,189,-206,198,190,-183,183,191,-200,184,192,-201,201,193,-186,186,194,-203,203,195,-188,204,196,-189,189,197,-206,198,166,-191 + ,191,167,-200,192,168,-201,201,169,-194,194,170,-203,203,171,-196,204,172,-197,197,173,-206,198,174,-207,207,175,-200,208,176,-201,201,177,-210,210,178,-203,203,179,-212 + ,204,180,-213,213,181,-206,198,206,-215,215,207,-200,216,208,-201,201,209,-218,218,210,-203,203,211,-220,204,212,-221,221,213,-206,198,214,-167,167,215,-200,168,216,-201 + ,201,217,-170,170,218,-203,203,219,-172,204,220,-173,173,221,-206,222,226,-119,223,227,-120,224,226,-121,121,227,-226,118,226,-115,115,227,-224,116,226,-223,119,227,-118 + ,114,226,-225,225,227,-116,120,226,-117,117,227,-122,232,228,-123,123,126,-233,124,229,-234,233,127,-126,122,230,-233,232,128,-124,233,231,-125,125,129,-234,228,232,-127 + ,127,233,-230,128,232,-231,231,233,-130,162,238,-235,235,238,-164,236,239,-165,165,239,-238,238,162,-159,158,163,-239,159,234,-239,238,235,-160,160,164,-240,239,165,-161 + ,239,236,-162,161,237,-240 + Edges: 2,6,3,7,4,8,5,9,6,10,7,11,8,12,9,13,10,14,11,14,12,15,13,15,14,16 + ,15,17,14,18,15,19,10,20,11,21,12,22,13,23,10,24,11,25,12,26,13,27,16,20,16,21 + ,17,22,17,23,18,24,18,25,19,26,19,27,6,28,7,29,8,30,9,31,6,32,7,33,8,34 + ,9,35,20,28,21,29,22,30,23,31,24,32,25,33,26,34,27,35,2,36,3,37,4,38,5,39 + ,2,40,3,41,4,42,5,43,28,36,29,37,30,38,31,39,32,40,33,41,34,42,35,43,36,44 + ,37,45,38,46,39,47,40,48,41,49,42,50,43,51,44,52,45,53,46,54,47,55,48,56,49,57 + ,50,58,51,59,28,52,29,53,30,54,31,55,32,56,33,57,34,58,35,59,52,60,53,61,54,62 + ,55,63,56,64,57,65,58,66,59,67,20,60,21,61,22,62,23,63,24,64,25,65,26,66,27,67 + ,60,68,61,68,62,69,63,69,64,70,65,70,66,71,67,71,16,68,17,69,18,70,19,71,68,72 + ,69,73,70,74,71,75,60,76,61,77,62,78,63,79,64,80,65,81,66,82,67,83,72,76,72,77 + ,73,78,73,79,74,80,74,81,75,82,75,83,52,84,53,85,54,86,55,87,56,88,57,89,58,90 + ,59,91,76,84,77,85,78,86,79,87,80,88,81,89,82,90,83,91,44,92,45,93,46,94,47,95 + ,48,96,49,97,50,98,51,99,84,92,85,93,86,94,87,95,88,96,89,97,90,98,91,99,92,100 + ,93,101,94,100,95,101,96,102,97,103,98,102,99,103,100,104,101,105,102,106,103,107,84,104,85,105 + ,86,104,87,105,88,106,89,107,90,106,91,107,104,108,105,109,106,110,107,111,76,108,77,109,78,108 + ,79,109,80,110,81,111,82,110,83,111,108,112,109,112,110,113,111,113,72,112,73,112,74,113,75,113 + ,0,100,1,101,0,102,1,103,0,92,1,93,0,94,1,95,0,96,1,97,0,98,1,99,0,44 + ,1,45,0,46,1,47,0,48,1,49,0,50,1,51,0,36,1,37,0,38,1,39,0,40,1,41 + ,0,42,1,43,0,2,1,3,0,4,1,5,114,118,117,119,116,120,117,121,123,126,125,127,123,128 + ,125,129,134,154,135,155,136,156,137,157,138,154,139,155,140,156,141,157,130,134,131,135,132,136,133,137 + ,130,138,131,139,132,140,133,141,134,142,135,143,136,144,137,145,138,146,139,147,140,148,141,149,130,142 + ,131,143,132,144,133,145,130,146,131,147,132,148,133,149,142,150,143,151,144,152,145,153,146,150,147,151 + ,148,152,149,153,130,150,131,151,132,152,133,153,130,154,131,155,132,156,133,157,158,162,158,163,160,164 + ,160,165,174,182,175,183,176,184,177,185,178,186,179,187,180,188,181,189,182,190,183,191,184,192,185,193 + ,186,194,187,195,188,196,189,197,166,190,167,191,168,192,169,193,170,194,171,195,172,196,173,197,198,206 + ,199,207,200,208,201,209,202,210,203,211,204,212,205,213,206,214,207,215,208,216,209,217,210,218,211,219 + ,212,220,213,221,198,214,199,215,200,216,201,217,202,218,203,219,204,220,205,221,174,198,175,199,176,200 + ,177,201,178,202,179,203,180,204,181,205,166,198,167,199,168,200,169,201,170,202,171,203,172,204,173,205 + ,166,214,167,215,168,216,169,217,170,218,171,219,172,220,173,221,174,206,175,207,176,208,177,209,178,210 + ,179,211,180,212,181,213,190,198,191,199,192,200,193,201,194,202,195,203,196,204,197,205,182,198,183,199 + ,184,200,185,201,186,202,187,203,188,204,189,205,118,222,119,223,120,224,121,225,118,226,119,227,120,226 + ,121,227,126,228,127,229,128,230,129,231,162,234,163,235,164,236,165,237,162,238,163,238,164,239,165,239 + ,222,226,223,227,224,226,225,227,114,226,115,227,116,226,117,227,228,232,229,233,230,232,231,233,234,238 + ,235,238,236,239,237,239,158,238,159,238,160,239,161,239,122,232,123,232,124,233,125,233,126,232,127,233 + ,128,232,129,233,116,222,114,224,122,228,122,230,159,234,161,236,124,229,124,231,115,223,115,225,161,237 + ,159,235 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: 0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.000000000000000,0.382183283567429,0.924069941043854,0.000000000000000,0.382183283567429,-0.924069941043854 + ,0.000000000000000,-0.382183283567429,0.924069941043854,0.000000000000000,-0.382183283567429,-0.924069941043854 + ,0.000000000000000,0.706564545631409,0.707602143287659,0.000000000000000,0.706564545631409,-0.707602143287659 + ,0.000000000000000,-0.706564545631409,0.707602143287659,0.000000000000000,-0.706564545631409,-0.707602143287659 + ,0.000000000000000,0.923673212528229,0.383129358291626,0.000000000000000,0.923673212528229,-0.383129358291626 + ,0.000000000000000,-0.923673212528229,0.383129358291626,0.000000000000000,-0.923673212528229,-0.383129358291626 + ,0.000000000000000,0.999969482421875,0.000000000000000,0.000000000000000,-0.999969482421875,0.000000000000000 + ,-0.382671594619751,0.923856317996979,0.000000000000000,-0.382671594619751,-0.923856317996979,0.000000000000000 + ,0.382671594619751,0.923856317996979,0.000000000000000,0.382671594619751,-0.923856317996979,0.000000000000000 + ,-0.353465378284454,0.853358566761017,0.383129358291626,-0.353465378284454,0.853358566761017,-0.383129358291626 + ,-0.353465378284454,-0.853358566761017,0.383129358291626,-0.353465378284454,-0.853358566761017,-0.383129358291626 + ,0.353465378284454,0.853358566761017,0.383129358291626,0.353465378284454,0.853358566761017,-0.383129358291626 + ,0.353465378284454,-0.853358566761017,0.383129358291626,0.353465378284454,-0.853358566761017,-0.383129358291626 + ,-0.270393997430801,0.652790904045105,0.707602143287659,-0.270393997430801,0.652790904045105,-0.707602143287659 + ,-0.270393997430801,-0.652790904045105,0.707602143287659,-0.270393997430801,-0.652790904045105,-0.707602143287659 + ,0.270393997430801,0.652790904045105,0.707602143287659,0.270393997430801,0.652790904045105,-0.707602143287659 + ,0.270393997430801,-0.652790904045105,0.707602143287659,0.270393997430801,-0.652790904045105,-0.707602143287659 + ,-0.146244704723358,0.353099167346954,0.924069941043854,-0.146244704723358,0.353099167346954,-0.924069941043854 + ,-0.146244704723358,-0.353099167346954,0.924069941043854,-0.146244704723358,-0.353099167346954,-0.924069941043854 + ,0.146244704723358,0.353099167346954,0.924069941043854,0.146244704723358,0.353099167346954,-0.924069941043854 + ,0.146244704723358,-0.353099167346954,0.924069941043854,0.146244704723358,-0.353099167346954,-0.924069941043854 + ,-0.270241409540176,0.270241409540176,0.924069941043854,-0.270241409540176,0.270241409540176,-0.924069941043854 + ,-0.270241409540176,-0.270241409540176,0.924069941043854,-0.270241409540176,-0.270241409540176,-0.924069941043854 + ,0.270241409540176,0.270241409540176,0.924069941043854,0.270241409540176,0.270241409540176,-0.924069941043854 + ,0.270241409540176,-0.270241409540176,0.924069941043854,0.270241409540176,-0.270241409540176,-0.924069941043854 + ,-0.499618530273438,0.499618530273438,0.707602143287659,-0.499618530273438,0.499618530273438,-0.707602143287659 + ,-0.499618530273438,-0.499618530273438,0.707602143287659,-0.499618530273438,-0.499618530273438,-0.707602143287659 + ,0.499618530273438,0.499618530273438,0.707602143287659,0.499618530273438,0.499618530273438,-0.707602143287659 + ,0.499618530273438,-0.499618530273438,0.707602143287659,0.499618530273438,-0.499618530273438,-0.707602143287659 + ,-0.653126597404480,0.653126597404480,0.383129358291626,-0.653126597404480,0.653126597404480,-0.383129358291626 + ,-0.653126597404480,-0.653126597404480,0.383129358291626,-0.653126597404480,-0.653126597404480,-0.383129358291626 + ,0.653126597404480,0.653126597404480,0.383129358291626,0.653126597404480,0.653126597404480,-0.383129358291626 + ,0.653126597404480,-0.653126597404480,0.383129358291626,0.653126597404480,-0.653126597404480,-0.383129358291626 + ,-0.707083344459534,0.707083344459534,0.000000000000000,-0.707083344459534,-0.707083344459534,0.000000000000000 + ,0.707083344459534,0.707083344459534,0.000000000000000,0.707083344459534,-0.707083344459534,0.000000000000000 + ,-0.923856317996979,0.382671594619751,0.000000000000000,-0.923856317996979,-0.382671594619751,0.000000000000000 + ,0.923856317996979,0.382671594619751,0.000000000000000,0.923856317996979,-0.382671594619751,0.000000000000000 + ,-0.853358566761017,0.353465378284454,0.383129358291626,-0.853358566761017,0.353465378284454,-0.383129358291626 + ,-0.853358566761017,-0.353465378284454,0.383129358291626,-0.853358566761017,-0.353465378284454,-0.383129358291626 + ,0.853358566761017,0.353465378284454,0.383129358291626,0.853358566761017,0.353465378284454,-0.383129358291626 + ,0.853358566761017,-0.353465378284454,0.383129358291626,0.853358566761017,-0.353465378284454,-0.383129358291626 + ,-0.652790904045105,0.270393997430801,0.707602143287659,-0.652790904045105,0.270393997430801,-0.707602143287659 + ,-0.652790904045105,-0.270393997430801,0.707602143287659,-0.652790904045105,-0.270393997430801,-0.707602143287659 + ,0.652790904045105,0.270393997430801,0.707602143287659,0.652790904045105,0.270393997430801,-0.707602143287659 + ,0.652790904045105,-0.270393997430801,0.707602143287659,0.652790904045105,-0.270393997430801,-0.707602143287659 + ,-0.353099167346954,0.146244704723358,0.924069941043854,-0.353099167346954,0.146244704723358,-0.924069941043854 + ,-0.353099167346954,-0.146244704723358,0.924069941043854,-0.353099167346954,-0.146244704723358,-0.924069941043854 + ,0.353099167346954,0.146244704723358,0.924069941043854,0.353099167346954,0.146244704723358,-0.924069941043854 + ,0.353099167346954,-0.146244704723358,0.924069941043854,0.353099167346954,-0.146244704723358,-0.924069941043854 + ,-0.382183283567429,0.000000000000000,0.924069941043854,-0.382183283567429,0.000000000000000,-0.924069941043854 + ,0.382183283567429,0.000000000000000,0.924069941043854,0.382183283567429,0.000000000000000,-0.924069941043854 + ,-0.706564545631409,0.000000000000000,0.707602143287659,-0.706564545631409,0.000000000000000,-0.707602143287659 + ,0.706564545631409,0.000000000000000,0.707602143287659,0.706564545631409,0.000000000000000,-0.707602143287659 + ,-0.923673212528229,0.000000000000000,0.383129358291626,-0.923673212528229,0.000000000000000,-0.383129358291626 + ,0.923673212528229,0.000000000000000,0.383129358291626,0.923673212528229,0.000000000000000,-0.383129358291626 + ,-1.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000 + ,0.000000000000000,0.937955856323242,0.346659749746323,0.000000000000000,0.937955856323242,-0.346659749746323 + ,0.000000000000000,-0.937955856323242,0.346659749746323,0.000000000000000,-0.937955856323242,-0.346659749746323 + ,-0.812311172485352,0.468977928161621,0.346659749746323,-0.812311172485352,-0.468977928161621,-0.346659749746323 + ,0.812311172485352,-0.468977928161621,0.346659749746323,0.812311172485352,-0.468977928161621,-0.346659749746323 + ,0.000000000000000,0.346659749746323,0.937955856323242,0.000000000000000,0.346659749746323,-0.937955856323242 + ,0.000000000000000,-0.346659749746323,0.937955856323242,0.000000000000000,-0.346659749746323,-0.937955856323242 + ,-0.812311172485352,0.346659749746323,-0.468977928161621,-0.812311172485352,-0.346659749746323,-0.468977928161621 + ,0.812311172485352,0.346659749746323,-0.468977928161621,0.812311172485352,-0.346659749746323,-0.468977928161621 + ,0.000000000000000,0.707083344459534,0.707083344459534,0.000000000000000,0.707083344459534,-0.707083344459534 + ,0.000000000000000,-0.707083344459534,0.707083344459534,0.000000000000000,-0.707083344459534,-0.707083344459534 + ,-0.812311172485352,0.576738774776459,-0.086489453911781,-0.812311172485352,0.576738774776459,0.086489453911781 + ,-0.812311172485352,-0.576738774776459,-0.086489453911781,-0.812311172485352,-0.576738774776459,0.086489453911781 + ,0.812311172485352,0.576738774776459,-0.086489453911781,0.812311172485352,0.576738774776459,0.086489453911781 + ,0.812311172485352,-0.576738774776459,-0.086489453911781,0.812311172485352,-0.576738774776459,0.086489453911781 + ,-0.812311172485352,-0.086458936333656,0.576738774776459,-0.812311172485352,-0.086458936333656,-0.576738774776459 + ,-0.812311172485352,0.086458936333656,0.576738774776459,-0.812311172485352,0.086458936333656,-0.576738774776459 + ,0.812311172485352,-0.086458936333656,0.576738774776459,0.812311172485352,-0.086458936333656,-0.576738774776459 + ,0.812311172485352,0.086458936333656,0.576738774776459,0.812311172485352,0.086458936333656,-0.576738774776459 + ,0.000000000000000,-0.418103575706482,0.908383429050446,0.000000000000000,-0.418103575706482,-0.908383429050446 + ,0.000000000000000,0.418103575706482,0.908383429050446,0.000000000000000,0.418103575706482,-0.908383429050446 + ,0.000000000000000,0.908383429050446,-0.418103575706482,0.000000000000000,0.908383429050446,0.418103575706482 + ,0.000000000000000,-0.908383429050446,-0.418103575706482,0.000000000000000,-0.908383429050446,0.418103575706482 + ,-0.346659749746323,0.937955856323242,0.000000000000000,-0.346659749746323,-0.937955856323242,0.000000000000000 + ,0.346659749746323,0.937955856323242,0.000000000000000,0.346659749746323,-0.937955856323242,0.000000000000000 + ,-0.346659749746323,0.468977928161621,0.812311172485352,-0.346659749746323,0.468977928161621,-0.812311172485352 + ,0.346659749746323,0.468977928161621,0.812311172485352,0.346659749746323,0.468977928161621,-0.812311172485352 + ,0.275795757770538,0.959196746349335,0.061738945543766,0.275795757770538,0.959196746349335,-0.061738945543766 + ,0.275795757770538,-0.959196746349335,0.061738945543766,0.275795757770538,-0.959196746349335,-0.061738945543766 + ,-0.275795757770538,0.959196746349335,0.061738945543766,-0.275795757770538,0.959196746349335,-0.061738945543766 + ,-0.275795757770538,-0.959196746349335,0.061738945543766,-0.275795757770538,-0.959196746349335,-0.061738945543766 + ,-0.755882441997528,-0.592486321926117,0.278481394052505,-0.755882441997528,-0.592486321926117,-0.278481394052505 + ,-0.755882441997528,0.592486321926117,0.278481394052505,-0.755882441997528,0.592486321926117,-0.278481394052505 + ,0.755882441997528,-0.592486321926117,0.278481394052505,0.755882441997528,-0.592486321926117,-0.278481394052505 + ,0.755882441997528,0.592486321926117,0.278481394052505,0.755882441997528,0.592486321926117,-0.278481394052505 + ,-0.877346098423004,-0.050294503569603,-0.477187424898148,-0.877346098423004,-0.050294503569603,0.477187424898148 + ,-0.877346098423004,0.050294503569603,-0.477187424898148,-0.877346098423004,0.050294503569603,0.477187424898148 + ,0.877346098423004,-0.050294503569603,-0.477187424898148,0.877346098423004,-0.050294503569603,0.477187424898148 + ,0.877346098423004,0.050294503569603,-0.477187424898148,0.877346098423004,0.050294503569603,0.477187424898148 + ,-0.361491739749908,0.725516498088837,-0.585558652877808,-0.361491739749908,0.725516498088837,0.585558652877808 + ,-0.361491739749908,-0.725516498088837,-0.585558652877808,-0.361491739749908,-0.725516498088837,0.585558652877808 + ,0.361491739749908,0.725516498088837,-0.585558652877808,0.361491739749908,0.725516498088837,0.585558652877808 + ,0.361491739749908,-0.725516498088837,-0.585558652877808,0.361491739749908,-0.725516498088837,0.585558652877808 + ,-0.692373394966125,0.528885781764984,0.490737617015839,-0.692373394966125,0.528885781764984,-0.490737617015839 + ,-0.692373394966125,-0.528885781764984,0.490737617015839,-0.692373394966125,-0.528885781764984,-0.490737617015839 + ,0.692373394966125,0.528885781764984,0.490737617015839,0.692373394966125,0.528885781764984,-0.490737617015839 + ,0.692373394966125,-0.528885781764984,0.490737617015839,0.692373394966125,-0.528885781764984,-0.490737617015839 + ,-0.118564411997795,-0.358806103467941,0.925840020179749,-0.118564411997795,-0.358806103467941,-0.925840020179749 + ,-0.118564411997795,0.358806103467941,0.925840020179749,-0.118564411997795,0.358806103467941,-0.925840020179749 + ,0.118564411997795,-0.358806103467941,0.925840020179749,0.118564411997795,-0.358806103467941,-0.925840020179749 + ,0.118564411997795,0.358806103467941,0.925840020179749,0.118564411997795,0.358806103467941,-0.925840020179749 + ,0.397259443998337,0.417035430669785,0.817438304424286,0.397259443998337,0.417035430669785,-0.817438304424286 + ,0.397259443998337,-0.417035430669785,0.817438304424286,0.397259443998337,-0.417035430669785,-0.817438304424286 + ,-0.397259443998337,0.417035430669785,0.817438304424286,-0.397259443998337,0.417035430669785,-0.817438304424286 + ,-0.397259443998337,-0.417035430669785,0.817438304424286,-0.397259443998337,-0.417035430669785,-0.817438304424286 + ,-0.812311172485352,-0.468977928161621,0.346659749746323,-0.812311172485352,0.468977928161621,-0.346659749746323 + ,0.812311172485352,0.468977928161621,0.346659749746323,0.812311172485352,0.468977928161621,-0.346659749746323 + ,0.000000000000000,0.000000000000000,0.999969482421875,0.000000000000000,0.000000000000000,-0.999969482421875 + ,-0.812311172485352,0.346659749746323,0.468977928161621,-0.812311172485352,-0.346659749746323,0.468977928161621 + ,0.812311172485352,0.346659749746323,0.468977928161621,0.812311172485352,-0.346659749746323,0.468977928161621 + ,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000 + ,-0.346659749746323,-0.468977928161621,0.812311172485352,-0.346659749746323,-0.468977928161621,-0.812311172485352 + ,0.346659749746323,-0.468977928161621,0.812311172485352,0.346659749746323,-0.468977928161621,-0.812311172485352 + ,-0.999969482421875,0.000000000000000,0.000000000000000,0.999969482421875,0.000000000000000,0.000000000000000 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.015680,0.527895,0.263295,0.499222,0.299363,0.617942,0.086941,0.649520,0.299363,0.617942,0.263295,0.499222,0.015680,0.527895 + ,0.086941,0.649520,0.299363,0.617942,0.263295,0.499222,0.015680,0.527895,0.086941,0.649520,0.015680,0.527895,0.263295,0.499222 + ,0.299363,0.617942,0.086941,0.649520,0.299363,0.617942,0.263295,0.499222,0.015680,0.527895,0.086941,0.649520,0.015680,0.527895 + ,0.263295,0.499222,0.299363,0.617942,0.086941,0.649520,0.015680,0.527895,0.263295,0.499222,0.299363,0.617942,0.086941,0.649520 + ,0.299363,0.617942,0.263295,0.499222,0.015680,0.527895,0.086941,0.649520,0.086941,0.649520,0.299363,0.617942,0.347692,0.727381 + ,0.195115,0.759854,0.347692,0.727381,0.299363,0.617942,0.086941,0.649520,0.195115,0.759854,0.347692,0.727381,0.299363,0.617942 + ,0.086941,0.649520,0.195115,0.759854,0.086941,0.649520,0.299363,0.617942,0.347692,0.727381,0.195115,0.759854,0.347692,0.727381 + ,0.299363,0.617942,0.086941,0.649520,0.195115,0.759854,0.086941,0.649520,0.299363,0.617942,0.347692,0.727381,0.195115,0.759854 + ,0.086941,0.649520,0.299363,0.617942,0.347692,0.727381,0.195115,0.759854,0.347692,0.727381,0.299363,0.617942,0.086941,0.649520 + ,0.195115,0.759854,0.195115,0.759854,0.347692,0.727381,0.415272,0.835697,0.336584,0.857689,0.415272,0.835697,0.347692,0.727381 + ,0.195115,0.759854,0.336584,0.857689,0.415272,0.835697,0.347692,0.727381,0.195115,0.759854,0.336584,0.857689,0.195115,0.759854 + ,0.347692,0.727381,0.415272,0.835697,0.336584,0.857689,0.415272,0.835697,0.347692,0.727381,0.195115,0.759854,0.336584,0.857689 + ,0.195115,0.759854,0.347692,0.727381,0.415272,0.835697,0.336584,0.857689,0.195115,0.759854,0.347692,0.727381,0.415272,0.835697 + ,0.336584,0.857689,0.415272,0.835697,0.347692,0.727381,0.195115,0.759854,0.336584,0.857689,0.415272,0.835697,0.501292,0.945896 + ,0.336584,0.857689,0.336584,0.857689,0.501292,0.945896,0.415272,0.835697,0.336584,0.857689,0.501292,0.945896,0.415272,0.835697 + ,0.415272,0.835697,0.501292,0.945896,0.336584,0.857689,0.336584,0.857689,0.501292,0.945896,0.415272,0.835697,0.415272,0.835697 + ,0.501292,0.945896,0.336584,0.857689,0.415272,0.835697,0.501292,0.945896,0.336584,0.857689,0.336584,0.857689,0.501292,0.945896 + ,0.415272,0.835697,0.502069,0.828387,0.501292,0.945896,0.415272,0.835697,0.415272,0.835697,0.501292,0.945896,0.502069,0.828387 + ,0.415272,0.835697,0.501292,0.945896,0.502069,0.828387,0.502069,0.828387,0.501292,0.945896,0.415272,0.835697,0.415272,0.835697 + ,0.501292,0.945896,0.502069,0.828387,0.502069,0.828387,0.501292,0.945896,0.415272,0.835697,0.502069,0.828387,0.501292,0.945896 + ,0.415272,0.835697,0.415272,0.835697,0.501292,0.945896,0.502069,0.828387,0.347692,0.727381,0.502904,0.717087,0.502069,0.828387 + ,0.415272,0.835697,0.502069,0.828387,0.502904,0.717087,0.347692,0.727381,0.415272,0.835697,0.502069,0.828387,0.502904,0.717087 + ,0.347692,0.727381,0.415272,0.835697,0.347692,0.727381,0.502904,0.717087,0.502069,0.828387,0.415272,0.835697,0.502069,0.828387 + ,0.502904,0.717087,0.347692,0.727381,0.415272,0.835697,0.347692,0.727381,0.502904,0.717087,0.502069,0.828387,0.415272,0.835697 + ,0.347692,0.727381,0.502904,0.717087,0.502069,0.828387,0.415272,0.835697,0.502069,0.828387,0.502904,0.717087,0.347692,0.727381 + ,0.415272,0.835697,0.299363,0.617942,0.504741,0.607850,0.502904,0.717087,0.347692,0.727381,0.502904,0.717087,0.504741,0.607850 + ,0.299363,0.617942,0.347692,0.727381,0.502904,0.717087,0.504741,0.607850,0.299363,0.617942,0.347692,0.727381,0.299363,0.617942 + ,0.504741,0.607850,0.502904,0.717087,0.347692,0.727381,0.502904,0.717087,0.504741,0.607850,0.299363,0.617942,0.347692,0.727381 + ,0.299363,0.617942,0.504741,0.607850,0.502904,0.717087,0.347692,0.727381,0.299363,0.617942,0.504741,0.607850,0.502904,0.717087 + ,0.347692,0.727381,0.502904,0.717087,0.504741,0.607850,0.299363,0.617942,0.347692,0.727381,0.263295,0.499222,0.510904,0.491802 + ,0.504741,0.607850,0.299363,0.617942,0.504741,0.607850,0.510904,0.491802,0.263295,0.499222,0.299363,0.617942,0.504741,0.607850 + ,0.510904,0.491802,0.263295,0.499222,0.299363,0.617942,0.263295,0.499222,0.510904,0.491802,0.504741,0.607850,0.299363,0.617942 + ,0.504741,0.607850,0.510904,0.491802,0.263295,0.499222,0.299363,0.617942,0.263295,0.499222,0.510904,0.491802,0.504741,0.607850 + ,0.299363,0.617942,0.263295,0.499222,0.510904,0.491802,0.504741,0.607850,0.299363,0.617942,0.504741,0.607850,0.510904,0.491802 + ,0.263295,0.499222,0.299363,0.617942,0.510904,0.491802,0.751301,0.505663,0.709298,0.619287,0.504741,0.607850,0.709298,0.619287 + ,0.751301,0.505663,0.510904,0.491802,0.504741,0.607850,0.709298,0.619287,0.751301,0.505663,0.510904,0.491802,0.504741,0.607850 + ,0.510904,0.491802,0.751301,0.505663,0.709298,0.619287,0.504741,0.607850,0.709298,0.619287,0.751301,0.505663,0.510904,0.491802 + ,0.504741,0.607850,0.510904,0.491802,0.751301,0.505663,0.709298,0.619287,0.504741,0.607850,0.510904,0.491802,0.751301,0.505663 + ,0.709298,0.619287,0.504741,0.607850,0.709298,0.619287,0.751301,0.505663,0.510904,0.491802,0.504741,0.607850,0.504741,0.607850 + ,0.709298,0.619287,0.657495,0.727766,0.502904,0.717087,0.657495,0.727766,0.709298,0.619287,0.504741,0.607850,0.502904,0.717087 + ,0.657495,0.727766,0.709298,0.619287,0.504741,0.607850,0.502904,0.717087,0.504741,0.607850,0.709298,0.619287,0.657495,0.727766 + ,0.502904,0.717087,0.657495,0.727766,0.709298,0.619287,0.504741,0.607850,0.502904,0.717087,0.504741,0.607850,0.709298,0.619287 + ,0.657495,0.727766,0.502904,0.717087,0.504741,0.607850,0.709298,0.619287,0.657495,0.727766,0.502904,0.717087,0.657495,0.727766 + ,0.709298,0.619287,0.504741,0.607850,0.502904,0.717087,0.502904,0.717087,0.657495,0.727766,0.588721,0.835923,0.502069,0.828387 + ,0.588721,0.835923,0.657495,0.727766,0.502904,0.717087,0.502069,0.828387,0.588721,0.835923,0.657495,0.727766,0.502904,0.717087 + ,0.502069,0.828387,0.502904,0.717087,0.657495,0.727766,0.588721,0.835923,0.502069,0.828387,0.588721,0.835923,0.657495,0.727766 + ,0.502904,0.717087,0.502069,0.828387,0.502904,0.717087,0.657495,0.727766,0.588721,0.835923,0.502069,0.828387,0.502904,0.717087 + ,0.657495,0.727766,0.588721,0.835923,0.502069,0.828387,0.588721,0.835923,0.657495,0.727766,0.502904,0.717087,0.502069,0.828387 + ,0.588721,0.835923,0.501292,0.945896,0.502069,0.828387,0.502069,0.828387,0.501292,0.945896,0.588721,0.835923,0.502069,0.828387 + ,0.501292,0.945896,0.588721,0.835923,0.588721,0.835923,0.501292,0.945896,0.502069,0.828387,0.502069,0.828387,0.501292,0.945896 + ,0.588721,0.835923,0.588721,0.835923,0.501292,0.945896,0.502069,0.828387,0.588721,0.835923,0.501292,0.945896,0.502069,0.828387 + ,0.502069,0.828387,0.501292,0.945896,0.588721,0.835923,0.668354,0.858328,0.501292,0.945896,0.588721,0.835923,0.588721,0.835923 + ,0.501292,0.945896,0.668354,0.858328,0.588721,0.835923,0.501292,0.945896,0.668354,0.858328,0.668354,0.858328,0.501292,0.945896 + ,0.588721,0.835923,0.588721,0.835923,0.501292,0.945896,0.668354,0.858328,0.668354,0.858328,0.501292,0.945896,0.588721,0.835923 + ,0.668354,0.858328,0.501292,0.945896,0.588721,0.835923,0.588721,0.835923,0.501292,0.945896,0.668354,0.858328,0.657495,0.727766 + ,0.809485,0.759159,0.668354,0.858328,0.588721,0.835923,0.668354,0.858328,0.809485,0.759159,0.657495,0.727766,0.588721,0.835923 + ,0.668354,0.858328,0.809485,0.759159,0.657495,0.727766,0.588721,0.835923,0.657495,0.727766,0.809485,0.759159,0.668354,0.858328 + ,0.588721,0.835923,0.668354,0.858328,0.809485,0.759159,0.657495,0.727766,0.588721,0.835923,0.657495,0.727766,0.809485,0.759159 + ,0.668354,0.858328,0.588721,0.835923,0.657495,0.727766,0.809485,0.759159,0.668354,0.858328,0.588721,0.835923,0.668354,0.858328 + ,0.809485,0.759159,0.657495,0.727766,0.588721,0.835923,0.709298,0.619287,0.912420,0.650687,0.809485,0.759159,0.657495,0.727766 + ,0.809485,0.759159,0.912420,0.650687,0.709298,0.619287,0.657495,0.727766,0.809485,0.759159,0.912420,0.650687,0.709298,0.619287 + ,0.657495,0.727766,0.709298,0.619287,0.912420,0.650687,0.809485,0.759159,0.657495,0.727766,0.809485,0.759159,0.912420,0.650687 + ,0.709298,0.619287,0.657495,0.727766,0.709298,0.619287,0.912420,0.650687,0.809485,0.759159,0.657495,0.727766,0.709298,0.619287 + ,0.912420,0.650687,0.809485,0.759159,0.657495,0.727766,0.809485,0.759159,0.912420,0.650687,0.709298,0.619287,0.657495,0.727766 + ,0.751301,0.505663,0.984957,0.535822,0.912420,0.650687,0.709298,0.619287,0.912420,0.650687,0.984957,0.535822,0.751301,0.505663 + ,0.709298,0.619287,0.912420,0.650687,0.984957,0.535822,0.751301,0.505663,0.709298,0.619287,0.751301,0.505663,0.984957,0.535822 + ,0.912420,0.650687,0.709298,0.619287,0.912420,0.650687,0.984957,0.535822,0.751301,0.505663,0.709298,0.619287,0.751301,0.505663 + ,0.984957,0.535822,0.912420,0.650687,0.709298,0.619287,0.751301,0.505663,0.984957,0.535822,0.912420,0.650687,0.709298,0.619287 + ,0.912420,0.650687,0.984957,0.535822,0.751301,0.505663,0.709298,0.619287,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881 + ,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.507460,0.444809 + ,0.741246,0.039881,0.273675,0.039881,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.507460,0.444809,0.741246,0.039881 + ,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809 + ,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881 + ,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881 + ,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881 + ,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.273675,0.039881 + ,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.507460,0.444809,0.741246,0.039881 + ,0.273675,0.039881,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881 + ,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.507460,0.444809 + ,0.741246,0.039881,0.273675,0.039881,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881 + ,0.507460,0.444809,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809 + ,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.273675,0.039881 + ,0.741246,0.039881,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881 + ,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881 + ,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809 + ,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.741246,0.039881 + ,0.273675,0.039881,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809 + ,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.507460,0.444809 + ,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.273675,0.039881,0.741246,0.039881 + ,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809 + ,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881 + ,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881 + ,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881 + ,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.507460,0.444809 + ,0.741246,0.039881,0.273675,0.039881,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.507460,0.444809,0.741246,0.039881 + ,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809 + ,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881 + ,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881 + ,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881 + ,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881 + ,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.741246,0.039881,0.507460,0.444809 + ,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881 + ,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.273675,0.039881 + ,0.507460,0.444809,0.741246,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809 + ,0.273675,0.039881,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881 + ,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809 + ,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881 + ,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809 + ,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881 + ,0.507460,0.444809,0.741246,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.273675,0.039881,0.507460,0.444809 + ,0.741246,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881 + ,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881 + ,0.273675,0.039881,0.507460,0.444809,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881 + ,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881 + ,0.507460,0.444809,0.273675,0.039881,0.741246,0.039881,0.741246,0.039881,0.273675,0.039881,0.507460,0.444809 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 + ,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109 + ,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164 + ,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219 + ,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274 + ,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329 + ,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,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,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,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,540,541,542,543,544,545,546,547,548,549 + ,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,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,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,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769 + ,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: "Model::Producer Perspective", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,71.299999999999997,287.500000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",10.000000 + Property: "FarPlane", "double", "",4000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",0 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,71.300000,287.500000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Top", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Bottom", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,-4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,-4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Front", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Back", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,-4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,-4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Right", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Left", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: -4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Material: "Material::None__SpikeBall_png", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Phong" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",0.5000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",1.0000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "SpecularFactor", "double", "",0.2000 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",0.8,0.8,0.8 + Property: "Shininess", "double", "",20.0 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Video: "Video::SpikeBall_png", "Clip" { + Type: "Clip" + Properties60: { + Property: "FrameRate", "double", "",0 + Property: "LastFrame", "int", "",0 + Property: "Width", "int", "",0 + Property: "Height", "int", "",0 + Property: "Path", "charptr", "", "SpikeBall.png" + Property: "StartFrame", "int", "",0 + Property: "StopFrame", "int", "",0 + Property: "PlaySpeed", "double", "",1 + Property: "Offset", "KTime", "",0 + Property: "InterlaceMode", "enum", "",0 + Property: "FreeRunning", "bool", "",0 + Property: "Loop", "bool", "",0 + Property: "AccessMode", "enum", "",0 + } + UseMipMap: 0 + Filename: "SpikeBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\SpikeBall.png" + } + Texture: "Texture::SpikeBall_png", "TextureVideoClip" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::SpikeBall_png" + Properties60: { + Property: "Translation", "Vector", "A+",0,0,0 + Property: "Rotation", "Vector", "A+",0,0,0 + Property: "Scaling", "Vector", "A+",1,1,1 + Property: "Texture alpha", "Number", "A+",0 + Property: "TextureTypeUse", "enum", "",0 + Property: "CurrentTextureBlendMode", "enum", "",1 + Property: "UseMaterial", "bool", "",0 + Property: "UseMipMap", "bool", "",0 + Property: "CurrentMappingType", "enum", "",0 + Property: "UVSwap", "bool", "",0 + Property: "WrapModeU", "enum", "",0 + Property: "WrapModeV", "enum", "",0 + Property: "TextureRotationPivot", "Vector3D", "",0,0,0 + Property: "TextureScalingPivot", "Vector3D", "",0,0,0 + Property: "VideoProperty", "object", "" + } + Media: "Video::SpikeBall_png" + FileName: "SpikeBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\SpikeBall.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 2 + PoseNode: { + Node: "Model::blend_root" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::SpikeBall" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,-0.000000043711388,-1.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,-0.000000043711388,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",100 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::blend_root", "Null" { + } + Model: "Model::SpikeBall", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::None__SpikeBall_png", "" { + } + Texture: "Texture::SpikeBall_png", "TextureVideoClip" { + } + Video: "Video::SpikeBall_png", "Clip" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::blend_root", "Model::Scene" + Connect: "OO", "Model::SpikeBall", "Model::blend_root" + Connect: "OO", "Material::None__SpikeBall_png", "Model::SpikeBall" + Connect: "OO", "Texture::SpikeBall_png", "Model::SpikeBall" + Connect: "OO", "Video::SpikeBall_png", "Texture::SpikeBall_png" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" + Take: "Default Take" { + FileName: "Default_Take.tak" + LocalTime: 0,479181389250 + ReferenceTime: 0,479181389250 + + ;Models animation + ;---------------------------------------------------- + Model: "Model::SpikeBall" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 1.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,1.000000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + } +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FlogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.1,0.1,0.1,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 479181389250 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/Assets/resources/Ball Pack/Models/SpikeBall.fbx.meta b/Assets/resources/Ball Pack/Models/SpikeBall.fbx.meta new file mode 100644 index 00000000..3b83e527 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/SpikeBall.fbx.meta @@ -0,0 +1,114 @@ +fileFormatVersion: 2 +guid: c455996f6e6b49d418895f41b5216202 +ModelImporter: + serializedVersion: 20200 + internalIDToNameTable: + - first: + 43: 4300000 + second: Sphere + - first: + 43: 4300002 + second: SpikeBall + - first: + 1001: 100100000 + second: DataTemplate __Singleton__ + - first: + 74: 1989289236423521904 + second: Default Take + externalObjects: {} + materials: + materialImportMode: 1 + materialName: 3 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 0 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + fileIdsGeneration: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + meshOptimizationFlags: -1 + indexFormat: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 0 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 4 + normalCalculationMode: 0 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 1 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/SplitMetalBall.fbx b/Assets/resources/Ball Pack/Models/SplitMetalBall.fbx new file mode 100644 index 00000000..f2b557ee --- /dev/null +++ b/Assets/resources/Ball Pack/Models/SplitMetalBall.fbx @@ -0,0 +1,2795 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2011 + Month: 03 + Day: 16 + Hour: 12 + Minute: 46 + Second: 04 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2011-03-16 12:46:04:000" +Creator: "Blender version 2.56 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 14 + ObjectType: "Model" { + Count: 10 + } + ObjectType: "Geometry" { + Count: 1 + } + ObjectType: "Material" { + Count: 1 + } + ObjectType: "Texture" { + Count: 1 + } + ObjectType: "Video" { + Count: 1 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::Camera Switcher", "CameraSwitcher" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Camera Index", "Integer", "A+",100 + } + MultiLayer: 0 + MultiTake: 1 + Hidden: "True" + Shading: W + Culling: "CullingOff" + Version: 101 + Name: "Model::Camera Switcher" + CameraId: 0 + CameraName: 100 + CameraIndexName: + } + Model: "Model::blend_root", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::SplitMetalBall", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-179.999991348319355,-0.000004325711512,-89.999988843970513 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.500000000000000,0.500000000000000,0.500000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.392513,0.089589,0.200000,0.392513,0.089589,-0.200000,0.974928,0.222521,0.200000,0.974928,0.222521,-0.200000,0.941708,0.214939,0.325539,0.941708,0.214939,-0.325539,0.844312,0.192709,0.621600 + ,0.844312,0.192709,-0.621600,0.689378,0.157346,0.828706,0.689378,0.157346,-0.828706,0.487464,0.111260,0.909225,0.487464,0.111260,-0.909225,0.252330,0.057593,1.009125,0.252330,0.057593,-1.009125 + ,0.233188,0.112297,1.009125,0.233188,0.112297,-1.009125,0.450484,0.216942,0.909225,0.450484,0.216942,-0.909225,0.637081,0.306802,0.828706,0.637081,0.306802,-0.828706,0.780262,0.375754,0.621600 + ,0.780262,0.375754,-0.621600,0.870269,0.419100,0.325539,0.870269,0.419100,-0.325539,0.900969,0.433884,0.200000,0.900969,0.433884,-0.200000,0.362737,0.174685,0.200000,0.362737,0.174685,-0.200000 + ,0.314771,0.251022,0.200000,0.314771,0.251022,-0.200000,0.781831,0.623490,0.200000,0.781831,0.623490,-0.200000,0.755191,0.602245,0.325539,0.755191,0.602245,-0.325539,0.677086,0.539958,0.621600 + ,0.677086,0.539958,-0.621600,0.552838,0.440874,0.828706,0.552838,0.440874,-0.828706,0.390916,0.311745,0.909225,0.390916,0.311745,-0.909225,0.202353,0.161371,1.009125,0.202353,0.161371,-1.009125 + ,0.161371,0.202353,1.009125,0.161371,0.202353,-1.009125,0.311745,0.390916,0.909225,0.311745,0.390916,-0.909225,0.440874,0.552838,0.828706,0.440874,0.552838,-0.828706,0.539958,0.677086,0.621600 + ,0.539958,0.677086,-0.621600,0.602245,0.755191,0.325539,0.602245,0.755191,-0.325539,0.623490,0.781831,0.200000,0.623490,0.781831,-0.200000,0.251022,0.314771,0.200000,0.251022,0.314771,-0.200000 + ,0.174685,0.362737,0.200000,0.174685,0.362737,-0.200000,0.433884,0.900969,0.200000,0.433884,0.900969,-0.200000,0.419099,0.870269,0.325539,0.419099,0.870269,-0.325539,0.375754,0.780262,0.621600 + ,0.375754,0.780262,-0.621600,0.306802,0.637081,0.828706,0.306802,0.637081,-0.828706,0.216942,0.450484,0.909225,0.216942,0.450484,-0.909225,0.112297,0.233188,1.009125,0.112297,0.233188,-1.009125 + ,0.057593,0.252330,1.009125,0.057593,0.252330,-1.009125,0.111260,0.487464,0.909225,0.111260,0.487464,-0.909225,0.157346,0.689378,0.828706,0.157346,0.689378,-0.828706,0.192709,0.844312,0.621600 + ,0.192709,0.844312,-0.621600,0.214939,0.941708,0.325539,0.214939,0.941708,-0.325539,0.222521,0.974928,0.200000,0.222521,0.974928,-0.200000,0.089589,0.392513,0.200000,0.089589,0.392513,-0.200000 + ,0.000000,0.402607,0.200000,0.000000,0.402607,-0.200000,-0.000000,1.000000,0.200000,-0.000000,1.000000,-0.200000,0.000000,0.965926,0.325539,0.000000,0.965926,-0.325539,0.000000,0.866025,0.621600 + ,0.000000,0.866025,-0.621600,0.000000,0.707107,0.828706,0.000000,0.707107,-0.828706,-0.000000,0.500000,0.909225,-0.000000,0.500000,-0.909225,0.000000,0.258819,1.009125,0.000000,0.258819,-1.009125 + ,-0.057593,0.252330,1.009125,-0.057593,0.252330,-1.009125,-0.111260,0.487464,0.909225,-0.111260,0.487464,-0.909225,-0.157346,0.689378,0.828706,-0.157346,0.689378,-0.828706,-0.192709,0.844312,0.621600 + ,-0.192709,0.844312,-0.621600,-0.214939,0.941708,0.325539,-0.214939,0.941708,-0.325539,-0.222521,0.974928,0.200000,-0.222521,0.974928,-0.200000,-0.089589,0.392513,0.200000,-0.089589,0.392513,-0.200000 + ,-0.174685,0.362737,0.200000,-0.174685,0.362737,-0.200000,-0.433884,0.900969,0.200000,-0.433884,0.900969,-0.200000,-0.419099,0.870269,0.325539,-0.419099,0.870269,-0.325539,-0.375754,0.780262,0.621600 + ,-0.375754,0.780262,-0.621600,-0.306802,0.637081,0.828706,-0.306802,0.637081,-0.828706,-0.216942,0.450484,0.909225,-0.216942,0.450484,-0.909225,-0.112297,0.233188,1.009125,-0.112297,0.233188,-1.009125 + ,-0.161371,0.202353,1.009125,-0.161371,0.202353,-1.009125,-0.311745,0.390916,0.909225,-0.311745,0.390916,-0.909225,-0.440874,0.552838,0.828706,-0.440874,0.552838,-0.828706,-0.539958,0.677086,0.621600 + ,-0.539958,0.677086,-0.621600,-0.602245,0.755191,0.325539,-0.602245,0.755191,-0.325539,-0.623490,0.781831,0.200000,-0.623490,0.781831,-0.200000,-0.251022,0.314771,0.200000,-0.251022,0.314771,-0.200000 + ,-0.314771,0.251022,0.200000,-0.314771,0.251022,-0.200000,-0.781831,0.623490,0.200000,-0.781831,0.623490,-0.200000,-0.755191,0.602245,0.325539,-0.755191,0.602245,-0.325539,-0.677086,0.539958,0.621600 + ,-0.677086,0.539958,-0.621600,-0.552838,0.440874,0.828706,-0.552838,0.440874,-0.828706,-0.390916,0.311745,0.909225,-0.390916,0.311745,-0.909225,-0.202353,0.161371,1.009125,-0.202353,0.161371,-1.009125 + ,-0.233188,0.112297,1.009125,-0.233188,0.112297,-1.009125,-0.450484,0.216942,0.909225,-0.450484,0.216942,-0.909225,-0.637081,0.306802,0.828706,-0.637081,0.306802,-0.828706,-0.780262,0.375754,0.621600 + ,-0.780262,0.375754,-0.621600,-0.870269,0.419099,0.325539,-0.870269,0.419099,-0.325539,-0.900969,0.433884,0.200000,-0.900969,0.433884,-0.200000,-0.362737,0.174685,0.200000,-0.362737,0.174685,-0.200000 + ,-0.392513,0.089589,0.200000,-0.392513,0.089589,-0.200000,-0.974928,0.222521,0.200000,-0.974928,0.222521,-0.200000,-0.941708,0.214939,0.325539,-0.941708,0.214939,-0.325539,-0.844312,0.192709,0.621600 + ,-0.844312,0.192709,-0.621600,-0.689378,0.157346,0.828706,-0.689378,0.157346,-0.828706,-0.487464,0.111260,0.909225,-0.487464,0.111260,-0.909225,-0.252330,0.057593,1.009125,-0.252330,0.057593,-1.009125 + ,-0.258819,0.000000,1.009125,-0.258819,0.000000,-1.009125,-0.500000,-0.000000,0.909225,-0.500000,-0.000000,-0.909225,-0.707107,0.000000,0.828706,-0.707107,0.000000,-0.828706,-0.866025,0.000000,0.621600 + ,-0.866025,0.000000,-0.621600,-0.965926,-0.000000,0.325539,-0.965926,-0.000000,-0.325539,-1.000000,-0.000000,0.200000,-1.000000,-0.000000,-0.200000,-0.402607,0.000000,0.200000,-0.402607,0.000000,-0.200000 + ,-0.392513,-0.089588,0.200000,-0.392513,-0.089588,-0.200000,-0.974928,-0.222521,0.200000,-0.974928,-0.222521,-0.200000,-0.941708,-0.214939,0.325539,-0.941708,-0.214939,-0.325539,-0.844312,-0.192709,0.621600 + ,-0.844312,-0.192709,-0.621600,-0.689378,-0.157346,0.828706,-0.689378,-0.157346,-0.828706,-0.487464,-0.111260,0.909225,-0.487464,-0.111260,-0.909225,-0.252330,-0.057593,1.009125,-0.252330,-0.057593,-1.009125 + ,-0.233188,-0.112297,1.009125,-0.233188,-0.112297,-1.009125,-0.450484,-0.216942,0.909225,-0.450484,-0.216942,-0.909225,-0.637081,-0.306802,0.828706,-0.637081,-0.306802,-0.828706,-0.780262,-0.375754,0.621600 + ,-0.780262,-0.375754,-0.621600,-0.870269,-0.419099,0.325539,-0.870269,-0.419099,-0.325539,-0.900968,-0.433884,0.200000,-0.900968,-0.433884,-0.200000,-0.362737,-0.174685,0.200000,-0.362737,-0.174685,-0.200000 + ,-0.314771,-0.251021,0.200000,-0.314771,-0.251021,-0.200000,-0.781831,-0.623490,0.200000,-0.781831,-0.623490,-0.200000,-0.755191,-0.602245,0.325539,-0.755191,-0.602245,-0.325539,-0.677086,-0.539958,0.621600 + ,-0.677086,-0.539958,-0.621600,-0.552838,-0.440874,0.828706,-0.552838,-0.440874,-0.828706,-0.390916,-0.311745,0.909225,-0.390916,-0.311745,-0.909225,-0.202353,-0.161371,1.009125,-0.202353,-0.161371,-1.009125 + ,-0.161371,-0.202353,1.009125,-0.161371,-0.202353,-1.009125,-0.311745,-0.390916,0.909225,-0.311745,-0.390916,-0.909225,-0.440874,-0.552838,0.828706,-0.440874,-0.552838,-0.828706,-0.539958,-0.677086,0.621600 + ,-0.539958,-0.677086,-0.621600,-0.602245,-0.755191,0.325539,-0.602245,-0.755191,-0.325539,-0.623490,-0.781831,0.200000,-0.623490,-0.781831,-0.200000,-0.251021,-0.314771,0.200000,-0.251021,-0.314771,-0.200000 + ,-0.174685,-0.362737,0.200000,-0.174685,-0.362737,-0.200000,-0.433884,-0.900968,0.200000,-0.433884,-0.900968,-0.200000,-0.419099,-0.870269,0.325539,-0.419099,-0.870269,-0.325539,-0.375754,-0.780262,0.621600 + ,-0.375754,-0.780262,-0.621600,-0.306802,-0.637081,0.828706,-0.306802,-0.637081,-0.828706,-0.216942,-0.450484,0.909225,-0.216942,-0.450484,-0.909225,-0.112297,-0.233188,1.009125,-0.112297,-0.233188,-1.009125 + ,-0.057593,-0.252330,1.009125,-0.057593,-0.252330,-1.009125,-0.111260,-0.487464,0.909225,-0.111260,-0.487464,-0.909225,-0.157346,-0.689378,0.828706,-0.157346,-0.689378,-0.828706,-0.192709,-0.844312,0.621600 + ,-0.192709,-0.844312,-0.621600,-0.214939,-0.941708,0.325539,-0.214939,-0.941708,-0.325539,-0.222521,-0.974928,0.200000,-0.222521,-0.974928,-0.200000,-0.089588,-0.392513,0.200000,-0.089588,-0.392513,-0.200000 + ,0.000000,-0.402607,0.200000,0.000000,-0.402607,-0.200000,0.000000,-1.000000,0.200000,0.000000,-1.000000,-0.200000,0.000000,-0.965926,0.325539,0.000000,-0.965926,-0.325539,-0.000000,-0.866025,0.621600 + ,-0.000000,-0.866025,-0.621600,0.000000,-0.707107,0.828706,0.000000,-0.707107,-0.828706,0.000000,-0.500000,0.909225,0.000000,-0.500000,-0.909225,-0.000000,-0.258819,1.009125,-0.000000,-0.258819,-1.009125 + ,0.057593,-0.252330,1.009125,0.057593,-0.252330,-1.009125,0.111260,-0.487464,0.909225,0.111260,-0.487464,-0.909225,0.157346,-0.689378,0.828706,0.157346,-0.689378,-0.828706,0.192709,-0.844312,0.621600 + ,0.192709,-0.844312,-0.621600,0.214939,-0.941708,0.325539,0.214939,-0.941708,-0.325539,0.222521,-0.974927,0.200000,0.222521,-0.974927,-0.200000,0.089589,-0.392513,0.200000,0.089589,-0.392513,-0.200000 + ,0.174685,-0.362736,0.200000,0.174685,-0.362736,-0.200000,0.433884,-0.900968,0.200000,0.433884,-0.900968,-0.200000,0.419099,-0.870269,0.325539,0.419099,-0.870269,-0.325539,0.375754,-0.780262,0.621600 + ,0.375754,-0.780262,-0.621600,0.306802,-0.637081,0.828706,0.306802,-0.637081,-0.828706,0.216942,-0.450484,0.909225,0.216942,-0.450484,-0.909225,0.112297,-0.233188,1.009125,0.112297,-0.233188,-1.009125 + ,0.161371,-0.202353,1.009125,0.161371,-0.202353,-1.009125,0.311745,-0.390916,0.909225,0.311745,-0.390916,-0.909225,0.440874,-0.552838,0.828706,0.440874,-0.552838,-0.828706,0.539958,-0.677086,0.621600 + ,0.539958,-0.677086,-0.621600,0.602245,-0.755191,0.325539,0.602245,-0.755191,-0.325539,0.623490,-0.781831,0.200000,0.623490,-0.781831,-0.200000,0.251022,-0.314771,0.200000,0.251022,-0.314771,-0.200000 + ,0.314771,-0.251021,0.200000,0.314771,-0.251021,-0.200000,0.781831,-0.623490,0.200000,0.781831,-0.623490,-0.200000,0.755191,-0.602245,0.325539,0.755191,-0.602245,-0.325539,0.677086,-0.539958,0.621600 + ,0.677086,-0.539958,-0.621600,0.552838,-0.440874,0.828706,0.552838,-0.440874,-0.828706,0.390916,-0.311745,0.909225,0.390916,-0.311745,-0.909225,0.202353,-0.161371,1.009125,0.202353,-0.161371,-1.009125 + ,0.233188,-0.112297,1.009125,0.233188,-0.112297,-1.009125,0.450484,-0.216942,0.909225,0.450484,-0.216942,-0.909225,0.637081,-0.306802,0.828706,0.637081,-0.306802,-0.828706,0.780262,-0.375754,0.621600 + ,0.780262,-0.375754,-0.621600,0.870269,-0.419099,0.325539,0.870269,-0.419099,-0.325539,0.900968,-0.433884,0.200000,0.900968,-0.433884,-0.200000,0.362737,-0.174685,0.200000,0.362737,-0.174685,-0.200000 + ,0.392513,-0.089588,0.200000,0.392513,-0.089588,-0.200000,0.974928,-0.222521,0.200000,0.974928,-0.222521,-0.200000,0.941708,-0.214939,0.325539,0.941708,-0.214939,-0.325539,0.844312,-0.192709,0.621600 + ,0.844312,-0.192709,-0.621600,0.689378,-0.157346,0.828706,0.689378,-0.157346,-0.828706,0.487464,-0.111260,0.909225,0.487464,-0.111260,-0.909225,0.252330,-0.057593,1.009125,0.252330,-0.057593,-1.009125 + ,0.258819,-0.000000,1.009125,0.258819,-0.000000,-1.009125,0.500000,0.000000,0.909225,0.500000,0.000000,-0.909225,0.707107,0.000000,0.828706,0.707107,0.000000,-0.828706,0.866025,-0.000000,0.621600 + ,0.866025,-0.000000,-0.621600,0.965925,0.000000,0.325539,0.965925,0.000000,-0.325539,1.000000,0.000000,0.200000,1.000000,0.000000,-0.200000,0.402607,0.000000,0.200000,0.402607,0.000000,-0.200000 + ,0.663007,0.151327,0.793455,0.663007,0.151327,-0.793455,0.680058,0.000000,0.793455,0.680058,0.000000,-0.793455,0.461093,0.105241,0.873974,0.461093,0.105241,-0.873974,0.472951,0.000000,0.873974 + ,0.472951,0.000000,-0.873974,0.663007,-0.151327,0.793455,0.663007,-0.151327,-0.793455,0.461093,-0.105241,0.873974,0.461093,-0.105241,-0.873974,0.426114,-0.205206,0.873974,0.426114,-0.205206,-0.873974 + ,0.612711,-0.295066,0.793455,0.612711,-0.295066,-0.793455,0.531691,-0.424009,0.793455,0.531691,-0.424009,-0.793455,0.369768,-0.294880,0.873974,0.369768,-0.294880,-0.873974,0.294880,-0.369768,0.873974 + ,0.294880,-0.369768,-0.873974,0.424009,-0.531690,0.793455,0.424009,-0.531690,-0.793455,0.295066,-0.612711,0.793455,0.295066,-0.612711,-0.793455,0.205206,-0.426114,0.873974,0.205206,-0.426114,-0.873974 + ,0.105241,-0.461093,0.873974,0.105241,-0.461093,-0.873974,0.151327,-0.663007,0.793455,0.151327,-0.663007,-0.793455,-0.000000,-0.680058,0.793455,-0.000000,-0.680058,-0.793455,0.000000,-0.472951,0.873974 + ,0.000000,-0.472951,-0.873974,-0.105241,-0.461093,0.873974,-0.105241,-0.461093,-0.873974,-0.151327,-0.663007,0.793455,-0.151327,-0.663007,-0.793455,-0.295066,-0.612711,0.793455,-0.295066,-0.612711,-0.793455 + ,-0.205206,-0.426114,0.873974,-0.205206,-0.426114,-0.873974,-0.294880,-0.369768,0.873974,-0.294880,-0.369768,-0.873974,-0.424009,-0.531691,0.793455,-0.424009,-0.531691,-0.793455,-0.531690,-0.424009,0.793455 + ,-0.531690,-0.424009,-0.793455,-0.369768,-0.294880,0.873974,-0.369768,-0.294880,-0.873974,-0.426114,-0.205206,0.873974,-0.426114,-0.205206,-0.873974,-0.612711,-0.295066,0.793455,-0.612711,-0.295066,-0.793455 + ,-0.663007,-0.151327,0.793455,-0.663007,-0.151327,-0.793455,-0.461093,-0.105241,0.873974,-0.461093,-0.105241,-0.873974,-0.472951,-0.000000,0.873974,-0.472951,-0.000000,-0.873974,-0.680058,0.000000,0.793455 + ,-0.680058,0.000000,-0.793455,-0.663007,0.151327,0.793455,-0.663007,0.151327,-0.793455,-0.461093,0.105241,0.873974,-0.461093,0.105241,-0.873974,-0.426114,0.205206,0.873974,-0.426114,0.205206,-0.873974 + ,-0.612711,0.295066,0.793455,-0.612711,0.295066,-0.793455,-0.531691,0.424009,0.793455,-0.531691,0.424009,-0.793455,-0.369768,0.294880,0.873974,-0.369768,0.294880,-0.873974,-0.294880,0.369768,0.873974 + ,-0.294880,0.369768,-0.873974,-0.424009,0.531690,0.793455,-0.424009,0.531690,-0.793455,-0.295066,0.612711,0.793455,-0.295066,0.612711,-0.793455,-0.205206,0.426114,0.873974,-0.205206,0.426114,-0.873974 + ,-0.105241,0.461093,0.873974,-0.105241,0.461093,-0.873974,-0.151327,0.663007,0.793455,-0.151327,0.663007,-0.793455,0.000000,0.680058,0.793455,0.000000,0.680058,-0.793455,-0.000000,0.472951,0.873974 + ,-0.000000,0.472951,-0.873974,0.105241,0.461093,0.873974,0.105241,0.461093,-0.873974,0.151327,0.663007,0.793455,0.151327,0.663007,-0.793455,0.295066,0.612711,0.793455,0.295066,0.612711,-0.793455 + ,0.205206,0.426114,0.873974,0.205206,0.426114,-0.873974,0.294880,0.369768,0.873974,0.294880,0.369768,-0.873974,0.424009,0.531691,0.793455,0.424009,0.531691,-0.793455,0.531691,0.424009,0.793455 + ,0.531691,0.424009,-0.793455,0.369768,0.294880,0.873974,0.369768,0.294880,-0.873974,0.426114,0.205206,0.873974,0.426114,0.205206,-0.873974,0.612711,0.295066,0.793455,0.612711,0.295066,-0.793455 + ,0.898253,0.205020,0.307076,0.898253,0.205020,-0.307076,0.921353,0.000000,0.307076,0.921353,0.000000,-0.307076,0.800858,0.182791,0.603137,0.800858,0.182791,-0.603137,0.821453,-0.000000,0.603137 + ,0.821453,-0.000000,-0.603137,0.898253,-0.205020,0.307076,0.898253,-0.205020,-0.307076,0.800857,-0.182791,0.603137,0.800857,-0.182791,-0.603137,0.740103,-0.356415,0.603137,0.740103,-0.356415,-0.603137 + ,0.830111,-0.399760,0.307076,0.830111,-0.399760,-0.307076,0.720343,-0.574454,0.307076,0.720343,-0.574454,-0.307076,0.642238,-0.512168,0.603137,0.642238,-0.512168,-0.603137,0.512167,-0.642238,0.603137 + ,0.512167,-0.642238,-0.603137,0.574454,-0.720343,0.307076,0.574454,-0.720343,-0.307076,0.399760,-0.830110,0.307076,0.399760,-0.830110,-0.307076,0.356415,-0.740104,0.603137,0.356415,-0.740104,-0.603137 + ,0.182790,-0.800857,0.603137,0.182790,-0.800857,-0.603137,0.205021,-0.898253,0.307076,0.205021,-0.898253,-0.307076,0.000000,-0.921353,0.307076,0.000000,-0.921353,-0.307076,-0.000000,-0.821453,0.603137 + ,-0.000000,-0.821453,-0.603137,-0.182791,-0.800857,0.603137,-0.182791,-0.800857,-0.603137,-0.205020,-0.898253,0.307076,-0.205020,-0.898253,-0.307076,-0.399760,-0.830111,0.307076,-0.399760,-0.830111,-0.307076 + ,-0.356415,-0.740104,0.603137,-0.356415,-0.740104,-0.603137,-0.512168,-0.642238,0.603137,-0.512168,-0.642238,-0.603137,-0.574454,-0.720343,0.307076,-0.574454,-0.720343,-0.307076,-0.720343,-0.574454,0.307076 + ,-0.720343,-0.574454,-0.307076,-0.642238,-0.512168,0.603137,-0.642238,-0.512168,-0.603137,-0.740104,-0.356415,0.603137,-0.740104,-0.356415,-0.603137,-0.830111,-0.399760,0.307076,-0.830111,-0.399760,-0.307076 + ,-0.898253,-0.205020,0.307076,-0.898253,-0.205020,-0.307076,-0.800857,-0.182790,0.603137,-0.800857,-0.182790,-0.603137,-0.821453,0.000000,0.603137,-0.821453,0.000000,-0.603137,-0.921353,-0.000000,0.307076 + ,-0.921353,-0.000000,-0.307076,-0.898253,0.205020,0.307076,-0.898253,0.205020,-0.307076,-0.800858,0.182791,0.603137,-0.800858,0.182791,-0.603137,-0.740104,0.356415,0.603137,-0.740104,0.356415,-0.603137 + ,-0.830111,0.399760,0.307076,-0.830111,0.399760,-0.307076,-0.720343,0.574454,0.307076,-0.720343,0.574454,-0.307076,-0.642238,0.512168,0.603137,-0.642238,0.512168,-0.603137,-0.512168,0.642238,0.603137 + ,-0.512168,0.642238,-0.603137,-0.574455,0.720343,0.307076,-0.574455,0.720343,-0.307076,-0.399760,0.830111,0.307076,-0.399760,0.830111,-0.307076,-0.356415,0.740104,0.603137,-0.356415,0.740104,-0.603137 + ,-0.182790,0.800858,0.603137,-0.182790,0.800858,-0.603137,-0.205020,0.898253,0.307076,-0.205020,0.898253,-0.307076,0.000000,0.921354,0.307076,0.000000,0.921354,-0.307076,0.000000,0.821453,0.603137 + ,0.000000,0.821453,-0.603137,0.182791,0.800858,0.603137,0.182791,0.800858,-0.603137,0.205020,0.898253,0.307076,0.205020,0.898253,-0.307076,0.399760,0.830111,0.307076,0.399760,0.830111,-0.307076 + ,0.356415,0.740104,0.603137,0.356415,0.740104,-0.603137,0.512168,0.642238,0.603137,0.512168,0.642238,-0.603137,0.574455,0.720343,0.307076,0.574455,0.720343,-0.307076,0.720343,0.574455,0.307076 + ,0.720343,0.574455,-0.307076,0.642238,0.512168,0.603137,0.642238,0.512168,-0.603137,0.740104,0.356415,0.603137,0.740104,0.356415,-0.603137,0.830111,0.399760,0.307076,0.830111,0.399760,-0.307076 + ,0.252330,0.057593,0.974029,0.252330,0.057593,-0.974029,0.258819,-0.000000,0.974029,0.258819,-0.000000,-0.974029,0.252330,-0.057593,0.974029,0.252330,-0.057593,-0.974029,0.233188,-0.112297,0.974029 + ,0.233188,-0.112297,-0.974029,0.202353,-0.161371,0.974029,0.202353,-0.161371,-0.974029,0.161371,-0.202353,0.974029,0.161371,-0.202353,-0.974029,0.112297,-0.233188,0.974029,0.112297,-0.233188,-0.974029 + ,0.057593,-0.252330,0.974029,0.057593,-0.252330,-0.974029,-0.000000,-0.258819,0.974029,-0.000000,-0.258819,-0.974029,-0.057593,-0.252330,0.974029,-0.057593,-0.252330,-0.974029,-0.112297,-0.233188,0.974029 + ,-0.112297,-0.233188,-0.974029,-0.161371,-0.202353,0.974029,-0.161371,-0.202353,-0.974029,-0.202353,-0.161371,0.974029,-0.202353,-0.161371,-0.974029,-0.233188,-0.112297,0.974029,-0.233188,-0.112297,-0.974029 + ,-0.252330,-0.057593,0.974029,-0.252330,-0.057593,-0.974029,-0.258819,0.000000,0.974029,-0.258819,0.000000,-0.974029,-0.252330,0.057593,0.974029,-0.252330,0.057593,-0.974029,-0.233188,0.112297,0.974029 + ,-0.233188,0.112297,-0.974029,-0.202353,0.161371,0.974029,-0.202353,0.161371,-0.974029,-0.161371,0.202353,0.974029,-0.161371,0.202353,-0.974029,-0.112297,0.233188,0.974029,-0.112297,0.233188,-0.974029 + ,-0.057593,0.252330,0.974029,-0.057593,0.252330,-0.974029,0.000000,0.258819,0.974029,0.000000,0.258819,-0.974029,0.057593,0.252330,0.974029,0.057593,0.252330,-0.974029,0.112297,0.233188,0.974029 + ,0.112297,0.233188,-0.974029,0.161371,0.202353,0.974029,0.161371,0.202353,-0.974029,0.202353,0.161371,0.974029,0.202353,0.161371,-0.974029,0.233188,0.112297,0.974029,0.233188,0.112297,-0.974029 + ,-0.000000,-0.000000,1.008104,-0.000000,-0.000000,-1.008104 + PolygonVertexIndex: 390,0,2,-389,3,1,391,-390,388,2,4,-387,5,3,389,-388,384,6,8,-383,9,7,385,-384,380,10,12,-379,13,11,381,-380,10,16,14,-13,15,17,11,-14,6,20,18,-9,19,21,7,-10,2,24,22,-5 + ,23,25,3,-6,0,26,24,-3,25,27,1,-4,26,28,30,-25,31,29,27,-26,24,30,32,-23,33,31,25,-24,20,34,36,-19,37,35,21,-20,16,38,40,-15,41,39,17,-16,38,44,42,-41,43,45,39,-42 + ,34,48,46,-37,47,49,35,-38,30,52,50,-33,51,53,31,-34,28,54,52,-31,53,55,29,-32,54,56,58,-53,59,57,55,-54,52,58,60,-51,61,59,53,-52,48,62,64,-47,65,63,49,-48,44,66,68,-43 + ,69,67,45,-44,66,72,70,-69,71,73,67,-70,62,76,74,-65,75,77,63,-66,58,80,78,-61,79,81,59,-62,56,82,80,-59,81,83,57,-60,82,84,86,-81,87,85,83,-82,80,86,88,-79,89,87,81,-80 + ,76,90,92,-75,93,91,77,-76,72,94,96,-71,97,95,73,-72,94,100,98,-97,99,101,95,-98,90,104,102,-93,103,105,91,-94,86,108,106,-89,107,109,87,-90,84,110,108,-87,109,111,85,-88,110,112,114,-109 + ,115,113,111,-110,108,114,116,-107,117,115,109,-108,104,118,120,-103,121,119,105,-104,100,122,124,-99,125,123,101,-100,122,128,126,-125,127,129,123,-126,118,132,130,-121,131,133,119,-122,114,136,134,-117,135,137,115,-118 + ,112,138,136,-115,137,139,113,-116,138,140,142,-137,143,141,139,-138,136,142,144,-135,145,143,137,-136,132,146,148,-131,149,147,133,-132,128,150,152,-127,153,151,129,-128,150,156,154,-153,155,157,151,-154,146,160,158,-149 + ,159,161,147,-150,142,164,162,-145,163,165,143,-146,140,166,164,-143,165,167,141,-144,166,168,170,-165,171,169,167,-166,164,170,172,-163,173,171,165,-164,160,174,176,-159,177,175,161,-160,156,178,180,-155,181,179,157,-156 + ,178,184,182,-181,183,185,179,-182,174,188,186,-177,187,189,175,-178,170,192,190,-173,191,193,171,-174,168,194,192,-171,193,195,169,-172,194,196,198,-193,199,197,195,-194,192,198,200,-191,201,199,193,-192,188,202,204,-187 + ,205,203,189,-188,184,206,208,-183,209,207,185,-184,206,212,210,-209,211,213,207,-210,202,216,214,-205,215,217,203,-206,198,220,218,-201,219,221,199,-202,196,222,220,-199,221,223,197,-200,222,224,226,-221,227,225,223,-222 + ,220,226,228,-219,229,227,221,-220,216,230,232,-215,233,231,217,-216,212,234,236,-211,237,235,213,-212,234,240,238,-237,239,241,235,-238,230,244,242,-233,243,245,231,-234,226,248,246,-229,247,249,227,-230,224,250,248,-227 + ,249,251,225,-228,250,252,254,-249,255,253,251,-250,248,254,256,-247,257,255,249,-248,244,258,260,-243,261,259,245,-244,240,262,264,-239,265,263,241,-240,262,268,266,-265,267,269,263,-266,258,272,270,-261,271,273,259,-262 + ,254,276,274,-257,275,277,255,-258,252,278,276,-255,277,279,253,-256,278,280,282,-277,283,281,279,-278,276,282,284,-275,285,283,277,-276,272,286,288,-271,289,287,273,-272,268,290,292,-267,293,291,269,-268,290,296,294,-293 + ,295,297,291,-294,286,300,298,-289,299,301,287,-290,282,304,302,-285,303,305,283,-286,280,306,304,-283,305,307,281,-284,306,308,310,-305,311,309,307,-306,304,310,312,-303,313,311,305,-304,300,314,316,-299,317,315,301,-300 + ,296,318,320,-295,321,319,297,-296,318,324,322,-321,323,325,319,-322,314,328,326,-317,327,329,315,-318,310,332,330,-313,331,333,311,-314,308,334,332,-311,333,335,309,-312,334,336,338,-333,339,337,335,-334,332,338,340,-331 + ,341,339,333,-332,328,342,344,-327,345,343,329,-328,324,346,348,-323,349,347,325,-324,346,352,350,-349,351,353,347,-350,342,356,354,-345,355,357,343,-346,338,360,358,-341,359,361,339,-342,336,362,360,-339,361,363,337,-340 + ,362,364,366,-361,367,365,363,-362,360,366,368,-359,369,367,361,-360,356,370,372,-355,373,371,357,-356,352,374,376,-351,377,375,353,-352,374,380,378,-377,379,381,375,-378,370,384,382,-373,383,385,371,-374,366,388,386,-369 + ,387,389,367,-370,364,390,388,-367,389,391,365,-368,382,8,392,-395,393,9,383,-396,10,380,398,-397,399,381,11,-398,372,382,394,-401,395,383,373,-402,380,374,402,-399,403,375,381,-400,374,352,404,-403,405,353,375,-404 + ,354,372,400,-407,401,373,355,-408,344,354,406,-409,407,355,345,-410,352,346,410,-405,411,347,353,-406,346,324,412,-411,413,325,347,-412,326,344,408,-415,409,345,327,-416,316,326,414,-417,415,327,317,-418,324,318,418,-413 + ,419,319,325,-414,318,296,420,-419,421,297,319,-420,298,316,416,-423,417,317,299,-424,288,298,422,-425,423,299,289,-426,296,290,426,-421,427,291,297,-422,290,268,428,-427,429,269,291,-428,270,288,424,-431,425,289,271,-432 + ,260,270,430,-433,431,271,261,-434,268,262,434,-429,435,263,269,-430,262,240,436,-435,437,241,263,-436,242,260,432,-439,433,261,243,-440,232,242,438,-441,439,243,233,-442,240,234,442,-437,443,235,241,-438,234,212,444,-443 + ,445,213,235,-444,214,232,440,-447,441,233,215,-448,204,214,446,-449,447,215,205,-450,212,206,450,-445,451,207,213,-446,206,184,452,-451,453,185,207,-452,186,204,448,-455,449,205,187,-456,176,186,454,-457,455,187,177,-458 + ,184,178,458,-453,459,179,185,-454,178,156,460,-459,461,157,179,-460,158,176,456,-463,457,177,159,-464,148,158,462,-465,463,159,149,-466,156,150,466,-461,467,151,157,-462,150,128,468,-467,469,129,151,-468,130,148,464,-471 + ,465,149,131,-472,120,130,470,-473,471,131,121,-474,128,122,474,-469,475,123,129,-470,122,100,476,-475,477,101,123,-476,102,120,472,-479,473,121,103,-480,92,102,478,-481,479,103,93,-482,100,94,482,-477,483,95,101,-478 + ,94,72,484,-483,485,73,95,-484,74,92,480,-487,481,93,75,-488,64,74,486,-489,487,75,65,-490,72,66,490,-485,491,67,73,-486,66,44,492,-491,493,45,67,-492,46,64,488,-495,489,65,47,-496,36,46,494,-497 + ,495,47,37,-498,44,38,498,-493,499,39,45,-494,38,16,500,-499,501,17,39,-500,18,36,496,-503,497,37,19,-504,8,18,502,-393,503,19,9,-394,16,10,396,-501,397,11,17,-502,400,394,398,-403,399,395,401,-404 + ,406,400,402,-405,403,401,407,-406,408,406,404,-411,405,407,409,-412,414,408,410,-413,411,409,415,-414,416,414,412,-419,413,415,417,-420,422,416,418,-421,419,417,423,-422,424,422,420,-427,421,423,425,-428,430,424,426,-429 + ,427,425,431,-430,432,430,428,-435,429,431,433,-436,438,432,434,-437,435,433,439,-438,440,438,436,-443,437,439,441,-444,446,440,442,-445,443,441,447,-446,448,446,444,-451,445,447,449,-452,454,448,450,-453,451,449,455,-454 + ,456,454,452,-459,453,455,457,-460,462,456,458,-461,459,457,463,-462,464,462,460,-467,461,463,465,-468,470,464,466,-469,467,465,471,-470,472,470,468,-475,469,471,473,-476,478,472,474,-477,475,473,479,-478,480,478,476,-483 + ,477,479,481,-484,486,480,482,-485,483,481,487,-486,488,486,484,-491,485,487,489,-492,494,488,490,-493,491,489,495,-494,496,494,492,-499,493,495,497,-500,502,496,498,-501,499,497,503,-502,392,502,500,-397,501,503,393,-398 + ,394,392,396,-399,397,393,395,-400,386,4,504,-507,505,5,387,-508,6,384,510,-509,511,385,7,-510,368,386,506,-513,507,387,369,-514,384,370,514,-511,515,371,385,-512,370,356,516,-515,517,357,371,-516,358,368,512,-519 + ,513,369,359,-520,340,358,518,-521,519,359,341,-522,356,342,522,-517,523,343,357,-518,342,328,524,-523,525,329,343,-524,330,340,520,-527,521,341,331,-528,312,330,526,-529,527,331,313,-530,328,314,530,-525,531,315,329,-526 + ,314,300,532,-531,533,301,315,-532,302,312,528,-535,529,313,303,-536,284,302,534,-537,535,303,285,-538,300,286,538,-533,539,287,301,-534,286,272,540,-539,541,273,287,-540,274,284,536,-543,537,285,275,-544,256,274,542,-545 + ,543,275,257,-546,272,258,546,-541,547,259,273,-542,258,244,548,-547,549,245,259,-548,246,256,544,-551,545,257,247,-552,228,246,550,-553,551,247,229,-554,244,230,554,-549,555,231,245,-550,230,216,556,-555,557,217,231,-556 + ,218,228,552,-559,553,229,219,-560,200,218,558,-561,559,219,201,-562,216,202,562,-557,563,203,217,-558,202,188,564,-563,565,189,203,-564,190,200,560,-567,561,201,191,-568,172,190,566,-569,567,191,173,-570,188,174,570,-565 + ,571,175,189,-566,174,160,572,-571,573,161,175,-572,162,172,568,-575,569,173,163,-576,144,162,574,-577,575,163,145,-578,160,146,578,-573,579,147,161,-574,146,132,580,-579,581,133,147,-580,134,144,576,-583,577,145,135,-584 + ,116,134,582,-585,583,135,117,-586,132,118,586,-581,587,119,133,-582,118,104,588,-587,589,105,119,-588,106,116,584,-591,585,117,107,-592,88,106,590,-593,591,107,89,-594,104,90,594,-589,595,91,105,-590,90,76,596,-595 + ,597,77,91,-596,78,88,592,-599,593,89,79,-600,60,78,598,-601,599,79,61,-602,76,62,602,-597,603,63,77,-598,62,48,604,-603,605,49,63,-604,50,60,600,-607,601,61,51,-608,32,50,606,-609,607,51,33,-610 + ,48,34,610,-605,611,35,49,-606,34,20,612,-611,613,21,35,-612,22,32,608,-615,609,33,23,-616,4,22,614,-505,615,23,5,-506,20,6,508,-613,509,7,21,-614,512,506,510,-515,511,507,513,-516,518,512,514,-517 + ,515,513,519,-518,520,518,516,-523,517,519,521,-524,526,520,522,-525,523,521,527,-526,528,526,524,-531,525,527,529,-532,534,528,530,-533,531,529,535,-534,536,534,532,-539,533,535,537,-540,542,536,538,-541,539,537,543,-542 + ,544,542,540,-547,541,543,545,-548,550,544,546,-549,547,545,551,-550,552,550,548,-555,549,551,553,-556,558,552,554,-557,555,553,559,-558,560,558,556,-563,557,559,561,-564,566,560,562,-565,563,561,567,-566,568,566,564,-571 + ,565,567,569,-572,574,568,570,-573,571,569,575,-574,576,574,572,-579,573,575,577,-580,582,576,578,-581,579,577,583,-582,584,582,580,-587,581,583,585,-588,590,584,586,-589,587,585,591,-590,592,590,588,-595,589,591,593,-596 + ,598,592,594,-597,595,593,599,-598,600,598,596,-603,597,599,601,-604,606,600,602,-605,603,601,607,-606,608,606,604,-611,605,607,609,-612,614,608,610,-613,611,609,615,-614,504,614,612,-509,613,615,505,-510,506,504,508,-511 + ,509,505,507,-512,378,12,616,-619,617,13,379,-620,376,378,618,-621,619,379,377,-622,350,376,620,-623,621,377,351,-624,348,350,622,-625,623,351,349,-626,322,348,624,-627,625,349,323,-628,320,322,626,-629,627,323,321,-630 + ,294,320,628,-631,629,321,295,-632,292,294,630,-633,631,295,293,-634,266,292,632,-635,633,293,267,-636,264,266,634,-637,635,267,265,-638,238,264,636,-639,637,265,239,-640,236,238,638,-641,639,239,237,-642,210,236,640,-643 + ,641,237,211,-644,208,210,642,-645,643,211,209,-646,182,208,644,-647,645,209,183,-648,180,182,646,-649,647,183,181,-650,154,180,648,-651,649,181,155,-652,152,154,650,-653,651,155,153,-654,126,152,652,-655,653,153,127,-656 + ,124,126,654,-657,655,127,125,-658,98,124,656,-659,657,125,99,-660,96,98,658,-661,659,99,97,-662,70,96,660,-663,661,97,71,-664,68,70,662,-665,663,71,69,-666,42,68,664,-667,665,69,43,-668,40,42,666,-669 + ,667,43,41,-670,14,40,668,-671,669,41,15,-672,12,14,670,-617,671,15,13,-618,620,618,-673,673,619,-622,622,620,-673,673,621,-624,624,622,-673,673,623,-626,626,624,-673,673,625,-628 + ,628,626,-673,673,627,-630,630,628,-673,673,629,-632,632,630,-673,673,631,-634,634,632,-673,673,633,-636,636,634,-673,673,635,-638,638,636,-673,673,637,-640,640,638,-673 + ,673,639,-642,642,640,-673,673,641,-644,644,642,-673,673,643,-646,646,644,-673,673,645,-648,648,646,-673,673,647,-650,650,648,-673,673,649,-652,652,650,-673,673,651,-654 + ,654,652,-673,673,653,-656,656,654,-673,673,655,-658,658,656,-673,673,657,-660,660,658,-673,673,659,-662,662,660,-673,673,661,-664,664,662,-673,673,663,-666,666,664,-673 + ,673,665,-668,668,666,-673,673,667,-670,670,668,-673,673,669,-672,616,670,-673,673,671,-618,618,616,-673,673,617,-620,1,0,390,-392,364,365,391,-391,362,363,365,-365,336,337,363,-363 + ,334,335,337,-337,308,309,335,-335,306,307,309,-309,280,281,307,-307,278,279,281,-281,252,253,279,-279,250,251,253,-253,224,225,251,-251,222,223,225,-225,196,197,223,-223,194,195,197,-197,168,169,195,-195,166,167,169,-169 + ,140,141,167,-167,138,139,141,-141,112,113,139,-139,110,111,113,-113,84,85,111,-111,82,83,85,-85,56,57,83,-83,54,55,57,-57,28,29,55,-55,26,27,29,-29,0,1,27,-27 + Edges: 0,2,1,3,2,4,3,5,6,8,7,9,10,12,11,13,12,14,13,15,14,16,15,17,10,16 + ,11,17,8,18,9,19,18,20,19,21,6,20,7,21,4,22,5,23,22,24,23,25,2,24,3,25 + ,24,26,25,27,0,26,1,27,26,28,27,29,24,30,25,31,28,30,29,31,22,32,23,33,30,32 + ,31,33,20,34,21,35,18,36,19,37,34,36,35,37,16,38,17,39,14,40,15,41,38,40,39,41 + ,40,42,41,43,42,44,43,45,38,44,39,45,36,46,37,47,46,48,47,49,34,48,35,49,32,50 + ,33,51,50,52,51,53,30,52,31,53,52,54,53,55,28,54,29,55,54,56,55,57,52,58,53,59 + ,56,58,57,59,50,60,51,61,58,60,59,61,48,62,49,63,46,64,47,65,62,64,63,65,44,66 + ,45,67,42,68,43,69,66,68,67,69,68,70,69,71,70,72,71,73,66,72,67,73,64,74,65,75 + ,74,76,75,77,62,76,63,77,60,78,61,79,78,80,79,81,58,80,59,81,80,82,81,83,56,82 + ,57,83,82,84,83,85,80,86,81,87,84,86,85,87,78,88,79,89,86,88,87,89,76,90,77,91 + ,74,92,75,93,90,92,91,93,72,94,73,95,70,96,71,97,94,96,95,97,96,98,97,99,98,100 + ,99,101,94,100,95,101,92,102,93,103,102,104,103,105,90,104,91,105,88,106,89,107,106,108,107,109 + ,86,108,87,109,108,110,109,111,84,110,85,111,110,112,111,113,108,114,109,115,112,114,113,115,106,116 + ,107,117,114,116,115,117,104,118,105,119,102,120,103,121,118,120,119,121,100,122,101,123,98,124,99,125 + ,122,124,123,125,124,126,125,127,126,128,127,129,122,128,123,129,120,130,121,131,130,132,131,133,118,132 + ,119,133,116,134,117,135,134,136,135,137,114,136,115,137,136,138,137,139,112,138,113,139,138,140,139,141 + ,136,142,137,143,140,142,141,143,134,144,135,145,142,144,143,145,132,146,133,147,130,148,131,149,146,148 + ,147,149,128,150,129,151,126,152,127,153,150,152,151,153,152,154,153,155,154,156,155,157,150,156,151,157 + ,148,158,149,159,158,160,159,161,146,160,147,161,144,162,145,163,162,164,163,165,142,164,143,165,164,166 + ,165,167,140,166,141,167,166,168,167,169,164,170,165,171,168,170,169,171,162,172,163,173,170,172,171,173 + ,160,174,161,175,158,176,159,177,174,176,175,177,156,178,157,179,154,180,155,181,178,180,179,181,180,182 + ,181,183,182,184,183,185,178,184,179,185,176,186,177,187,186,188,187,189,174,188,175,189,172,190,173,191 + ,190,192,191,193,170,192,171,193,192,194,193,195,168,194,169,195,194,196,195,197,192,198,193,199,196,198 + ,197,199,190,200,191,201,198,200,199,201,188,202,189,203,186,204,187,205,202,204,203,205,184,206,185,207 + ,182,208,183,209,206,208,207,209,208,210,209,211,210,212,211,213,206,212,207,213,204,214,205,215,214,216 + ,215,217,202,216,203,217,200,218,201,219,218,220,219,221,198,220,199,221,220,222,221,223,196,222,197,223 + ,222,224,223,225,220,226,221,227,224,226,225,227,218,228,219,229,226,228,227,229,216,230,217,231,214,232 + ,215,233,230,232,231,233,212,234,213,235,210,236,211,237,234,236,235,237,236,238,237,239,238,240,239,241 + ,234,240,235,241,232,242,233,243,242,244,243,245,230,244,231,245,228,246,229,247,246,248,247,249,226,248 + ,227,249,248,250,249,251,224,250,225,251,250,252,251,253,248,254,249,255,252,254,253,255,246,256,247,257 + ,254,256,255,257,244,258,245,259,242,260,243,261,258,260,259,261,240,262,241,263,238,264,239,265,262,264 + ,263,265,264,266,265,267,266,268,267,269,262,268,263,269,260,270,261,271,270,272,271,273,258,272,259,273 + ,256,274,257,275,274,276,275,277,254,276,255,277,276,278,277,279,252,278,253,279,278,280,279,281,276,282 + ,277,283,280,282,281,283,274,284,275,285,282,284,283,285,272,286,273,287,270,288,271,289,286,288,287,289 + ,268,290,269,291,266,292,267,293,290,292,291,293,292,294,293,295,294,296,295,297,290,296,291,297,288,298 + ,289,299,298,300,299,301,286,300,287,301,284,302,285,303,302,304,303,305,282,304,283,305,304,306,305,307 + ,280,306,281,307,306,308,307,309,304,310,305,311,308,310,309,311,302,312,303,313,310,312,311,313,300,314 + ,301,315,298,316,299,317,314,316,315,317,296,318,297,319,294,320,295,321,318,320,319,321,320,322,321,323 + ,322,324,323,325,318,324,319,325,316,326,317,327,326,328,327,329,314,328,315,329,312,330,313,331,330,332 + ,331,333,310,332,311,333,332,334,333,335,308,334,309,335,334,336,335,337,332,338,333,339,336,338,337,339 + ,330,340,331,341,338,340,339,341,328,342,329,343,326,344,327,345,342,344,343,345,324,346,325,347,322,348 + ,323,349,346,348,347,349,348,350,349,351,350,352,351,353,346,352,347,353,344,354,345,355,354,356,355,357 + ,342,356,343,357,340,358,341,359,358,360,359,361,338,360,339,361,360,362,361,363,336,362,337,363,362,364 + ,363,365,360,366,361,367,364,366,365,367,358,368,359,369,366,368,367,369,356,370,357,371,354,372,355,373 + ,370,372,371,373,352,374,353,375,350,376,351,377,374,376,375,377,376,378,377,379,378,380,379,381,374,380 + ,375,381,372,382,373,383,382,384,383,385,370,384,371,385,368,386,369,387,386,388,387,389,366,388,367,389 + ,388,390,389,391,364,390,365,391,12,378,13,379,10,380,11,381,8,382,9,383,6,384,7,385,4,386 + ,5,387,2,388,3,389,0,390,1,391,8,392,9,393,392,394,393,395,382,394,383,395,380,398,381,399 + ,396,398,397,399,10,396,11,397,394,400,395,401,372,400,373,401,374,402,375,403,398,402,399,403,352,404 + ,353,405,402,404,403,405,400,406,401,407,354,406,355,407,406,408,407,409,344,408,345,409,346,410,347,411 + ,404,410,405,411,324,412,325,413,410,412,411,413,408,414,409,415,326,414,327,415,414,416,415,417,316,416 + ,317,417,318,418,319,419,412,418,413,419,296,420,297,421,418,420,419,421,416,422,417,423,298,422,299,423 + ,422,424,423,425,288,424,289,425,290,426,291,427,420,426,421,427,268,428,269,429,426,428,427,429,424,430 + ,425,431,270,430,271,431,430,432,431,433,260,432,261,433,262,434,263,435,428,434,429,435,240,436,241,437 + ,434,436,435,437,432,438,433,439,242,438,243,439,438,440,439,441,232,440,233,441,234,442,235,443,436,442 + ,437,443,212,444,213,445,442,444,443,445,440,446,441,447,214,446,215,447,446,448,447,449,204,448,205,449 + ,206,450,207,451,444,450,445,451,184,452,185,453,450,452,451,453,448,454,449,455,186,454,187,455,454,456 + ,455,457,176,456,177,457,178,458,179,459,452,458,453,459,156,460,157,461,458,460,459,461,456,462,457,463 + ,158,462,159,463,462,464,463,465,148,464,149,465,150,466,151,467,460,466,461,467,128,468,129,469,466,468 + ,467,469,464,470,465,471,130,470,131,471,470,472,471,473,120,472,121,473,122,474,123,475,468,474,469,475 + ,100,476,101,477,474,476,475,477,472,478,473,479,102,478,103,479,478,480,479,481,92,480,93,481,94,482 + ,95,483,476,482,477,483,72,484,73,485,482,484,483,485,480,486,481,487,74,486,75,487,486,488,487,489 + ,64,488,65,489,66,490,67,491,484,490,485,491,44,492,45,493,490,492,491,493,488,494,489,495,46,494 + ,47,495,494,496,495,497,36,496,37,497,38,498,39,499,492,498,493,499,16,500,17,501,498,500,499,501 + ,496,502,497,503,18,502,19,503,392,502,393,503,396,500,397,501,394,398,395,399,400,402,401,403,404,406 + ,405,407,408,410,409,411,412,414,413,415,416,418,417,419,420,422,421,423,424,426,425,427,428,430,429,431 + ,432,434,433,435,436,438,437,439,440,442,441,443,444,446,445,447,448,450,449,451,452,454,453,455,456,458 + ,457,459,460,462,461,463,464,466,465,467,468,470,469,471,472,474,473,475,476,478,477,479,480,482,481,483 + ,484,486,485,487,488,490,489,491,492,494,493,495,496,498,497,499,500,502,501,503,392,396,393,397,4,504 + ,5,505,504,506,505,507,386,506,387,507,384,510,385,511,508,510,509,511,6,508,7,509,506,512,507,513 + ,368,512,369,513,370,514,371,515,510,514,511,515,356,516,357,517,514,516,515,517,512,518,513,519,358,518 + ,359,519,518,520,519,521,340,520,341,521,342,522,343,523,516,522,517,523,328,524,329,525,522,524,523,525 + ,520,526,521,527,330,526,331,527,526,528,527,529,312,528,313,529,314,530,315,531,524,530,525,531,300,532 + ,301,533,530,532,531,533,528,534,529,535,302,534,303,535,534,536,535,537,284,536,285,537,286,538,287,539 + ,532,538,533,539,272,540,273,541,538,540,539,541,536,542,537,543,274,542,275,543,542,544,543,545,256,544 + ,257,545,258,546,259,547,540,546,541,547,244,548,245,549,546,548,547,549,544,550,545,551,246,550,247,551 + ,550,552,551,553,228,552,229,553,230,554,231,555,548,554,549,555,216,556,217,557,554,556,555,557,552,558 + ,553,559,218,558,219,559,558,560,559,561,200,560,201,561,202,562,203,563,556,562,557,563,188,564,189,565 + ,562,564,563,565,560,566,561,567,190,566,191,567,566,568,567,569,172,568,173,569,174,570,175,571,564,570 + ,565,571,160,572,161,573,570,572,571,573,568,574,569,575,162,574,163,575,574,576,575,577,144,576,145,577 + ,146,578,147,579,572,578,573,579,132,580,133,581,578,580,579,581,576,582,577,583,134,582,135,583,582,584 + ,583,585,116,584,117,585,118,586,119,587,580,586,581,587,104,588,105,589,586,588,587,589,584,590,585,591 + ,106,590,107,591,590,592,591,593,88,592,89,593,90,594,91,595,588,594,589,595,76,596,77,597,594,596 + ,595,597,592,598,593,599,78,598,79,599,598,600,599,601,60,600,61,601,62,602,63,603,596,602,597,603 + ,48,604,49,605,602,604,603,605,600,606,601,607,50,606,51,607,606,608,607,609,32,608,33,609,34,610 + ,35,611,604,610,605,611,20,612,21,613,610,612,611,613,608,614,609,615,22,614,23,615,504,614,505,615 + ,508,612,509,613,506,510,507,511,512,514,513,515,516,518,517,519,520,522,521,523,524,526,525,527,528,530 + ,529,531,532,534,533,535,536,538,537,539,540,542,541,543,544,546,545,547,548,550,549,551,552,554,553,555 + ,556,558,557,559,560,562,561,563,564,566,565,567,568,570,569,571,572,574,573,575,576,578,577,579,580,582 + ,581,583,584,586,585,587,588,590,589,591,592,594,593,595,596,598,597,599,600,602,601,603,604,606,605,607 + ,608,610,609,611,612,614,613,615,504,508,505,509,12,616,13,617,616,618,617,619,378,618,379,619,618,620 + ,619,621,376,620,377,621,620,622,621,623,350,622,351,623,622,624,623,625,348,624,349,625,624,626,625,627 + ,322,626,323,627,626,628,627,629,320,628,321,629,628,630,629,631,294,630,295,631,630,632,631,633,292,632 + ,293,633,632,634,633,635,266,634,267,635,634,636,635,637,264,636,265,637,636,638,637,639,238,638,239,639 + ,638,640,639,641,236,640,237,641,640,642,641,643,210,642,211,643,642,644,643,645,208,644,209,645,644,646 + ,645,647,182,646,183,647,646,648,647,649,180,648,181,649,648,650,649,651,154,650,155,651,650,652,651,653 + ,152,652,153,653,652,654,653,655,126,654,127,655,654,656,655,657,124,656,125,657,656,658,657,659,98,658 + ,99,659,658,660,659,661,96,660,97,661,660,662,661,663,70,662,71,663,662,664,663,665,68,664,69,665 + ,664,666,665,667,42,666,43,667,666,668,667,669,40,668,41,669,668,670,669,671,14,670,15,671,616,670 + ,617,671,618,672,619,673,620,672,621,673,622,672,623,673,624,672,625,673,626,672,627,673,628,672,629,673 + ,630,672,631,673,632,672,633,673,634,672,635,673,636,672,637,673,638,672,639,673,640,672,641,673,642,672 + ,643,673,644,672,645,673,646,672,647,673,648,672,649,673,650,672,651,673,652,672,653,673,654,672,655,673 + ,656,672,657,673,658,672,659,673,660,672,661,673,662,672,663,673,664,672,665,673,666,672,667,673,668,672 + ,669,673,670,672,671,673,616,672,617,673,26,27,28,29,54,55,56,57,82,83,84,85,110,111,112,113 + ,138,139,140,141,166,167,168,169,194,195,196,197,222,223,224,225,250,251,252,253,278,279,280,281,306,307 + ,308,309,334,335,336,337,362,363,364,365,0,1,390,391 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: 0.687185287475586,0.156834617257118,-0.709311187267303,0.687185287475586,0.156834617257118,0.709311187267303 + ,0.772118270397186,0.176213875412941,-0.610522806644440,0.772118270397186,0.176213875412941,0.610522806644440 + ,0.427320182323456,0.097506634891033,0.898800611495972,0.427320182323456,0.097506634891033,-0.898800611495972 + ,0.941190838813782,0.214819788932800,-0.260719627141953,0.941190838813782,0.214819788932800,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.941190838813782,0.214819788932800,0.260719627141953,0.941190838813782,0.214819788932800,-0.260719627141953 + ,-0.538346529006958,-0.122867517173290,0.833674132823944,-0.538346529006958,-0.122867517173290,-0.833674132823944 + ,-0.497512727975845,-0.239570304751396,0.833674132823944,-0.497512727975845,-0.239570304751396,-0.833674132823944 + ,0.869777500629425,0.418866544961929,0.260719627141953,0.869777500629425,0.418866544961929,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.869777500629425,0.418866544961929,-0.260719627141953,0.869777500629425,0.418866544961929,0.260719627141953 + ,0.394878983497620,0.190160825848579,0.898800611495972,0.394878983497620,0.190160825848579,-0.898800611495972 + ,0.713553249835968,0.343607902526855,-0.610522806644440,0.713553249835968,0.343607902526855,0.610522806644440 + ,0.635059654712677,0.305825978517532,-0.709311187267303,0.635059654712677,0.305825978517532,0.709311187267303 + ,0.551072716712952,0.439466536045074,-0.709311187267303,0.551072716712952,0.439466536045074,0.709311187267303 + ,0.619190037250519,0.493789494037628,-0.610522806644440,0.619190037250519,0.493789494037628,0.610522806644440 + ,0.342661827802658,0.273262739181519,0.898800611495972,0.342661827802658,0.273262739181519,-0.898800611495972 + ,0.754783749580383,0.601916551589966,-0.260719627141953,0.754783749580383,0.601916551589966,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.754783749580383,0.601916551589966,0.260719627141953,0.754783749580383,0.601916551589966,-0.260719627141953 + ,-0.431714832782745,-0.344279319047928,0.833674132823944,-0.431714832782745,-0.344279319047928,-0.833674132823944 + ,-0.344279319047928,-0.431714832782745,0.833674132823944,-0.344279319047928,-0.431714832782745,-0.833674132823944 + ,0.601916551589966,0.754783749580383,0.260719627141953,0.601916551589966,0.754783749580383,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.601916551589966,0.754783749580383,-0.260719627141953,0.601916551589966,0.754783749580383,0.260719627141953 + ,0.273262739181519,0.342661827802658,0.898800611495972,0.273262739181519,0.342661827802658,-0.898800611495972 + ,0.493789494037628,0.619190037250519,-0.610522806644440,0.493789494037628,0.619190037250519,0.610522806644440 + ,0.439466536045074,0.551072716712952,-0.709311187267303,0.439466536045074,0.551072716712952,0.709311187267303 + ,0.305825978517532,0.635059654712677,-0.709311187267303,0.305825978517532,0.635059654712677,0.709311187267303 + ,0.343607902526855,0.713553249835968,-0.610522806644440,0.343607902526855,0.713553249835968,0.610522806644440 + ,0.190160825848579,0.394878983497620,0.898800611495972,0.190160825848579,0.394878983497620,-0.898800611495972 + ,0.418866544961929,0.869777500629425,-0.260719627141953,0.418866544961929,0.869777500629425,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.418866544961929,0.869777500629425,0.260719627141953,0.418866544961929,0.869777500629425,-0.260719627141953 + ,-0.239570304751396,-0.497512727975845,0.833674132823944,-0.239570304751396,-0.497512727975845,-0.833674132823944 + ,-0.122867517173290,-0.538346529006958,0.833674132823944,-0.122867517173290,-0.538346529006958,-0.833674132823944 + ,0.214819788932800,0.941190838813782,0.260719627141953,0.214819788932800,0.941190838813782,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.214819788932800,0.941190838813782,-0.260719627141953,0.214819788932800,0.941190838813782,0.260719627141953 + ,0.097506634891033,0.427320182323456,0.898800611495972,0.097506634891033,0.427320182323456,-0.898800611495972 + ,0.176213875412941,0.772118270397186,-0.610522806644440,0.176213875412941,0.772118270397186,0.610522806644440 + ,0.156834617257118,0.687185287475586,-0.709311187267303,0.156834617257118,0.687185287475586,0.709311187267303 + ,0.000000000000000,0.704855501651764,-0.709311187267303,0.000000000000000,0.704855501651764,0.709311187267303 + ,0.000000000000000,0.791985809803009,-0.610522806644440,0.000000000000000,0.791985809803009,0.610522806644440 + ,0.000000000000000,0.438306838274002,0.898800611495972,0.000000000000000,0.438306838274002,-0.898800611495972 + ,0.000000000000000,0.965391993522644,-0.260719627141953,0.000000000000000,0.965391993522644,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.000000000000000,0.965391993522644,0.260719627141953,0.000000000000000,0.965391993522644,-0.260719627141953 + ,0.000000000000000,-0.552201926708221,0.833674132823944,0.000000000000000,-0.552201926708221,-0.833674132823944 + ,0.122867517173290,-0.538346529006958,0.833674132823944,0.122867517173290,-0.538346529006958,-0.833674132823944 + ,-0.214819788932800,0.941190838813782,0.260719627141953,-0.214819788932800,0.941190838813782,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.214819788932800,0.941190838813782,-0.260719627141953,-0.214819788932800,0.941190838813782,0.260719627141953 + ,-0.097506634891033,0.427320182323456,0.898800611495972,-0.097506634891033,0.427320182323456,-0.898800611495972 + ,-0.176213875412941,0.772118270397186,-0.610522806644440,-0.176213875412941,0.772118270397186,0.610522806644440 + ,-0.156834617257118,0.687185287475586,-0.709311187267303,-0.156834617257118,0.687185287475586,0.709311187267303 + ,-0.305825978517532,0.635059654712677,-0.709311187267303,-0.305825978517532,0.635059654712677,0.709311187267303 + ,-0.343607902526855,0.713553249835968,-0.610522806644440,-0.343607902526855,0.713553249835968,0.610522806644440 + ,-0.190160825848579,0.394878983497620,0.898800611495972,-0.190160825848579,0.394878983497620,-0.898800611495972 + ,-0.418866544961929,0.869777500629425,-0.260719627141953,-0.418866544961929,0.869777500629425,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.418866544961929,0.869777500629425,0.260719627141953,-0.418866544961929,0.869777500629425,-0.260719627141953 + ,0.239570304751396,-0.497512727975845,0.833674132823944,0.239570304751396,-0.497512727975845,-0.833674132823944 + ,0.344279319047928,-0.431714832782745,0.833674132823944,0.344279319047928,-0.431714832782745,-0.833674132823944 + ,-0.601916551589966,0.754783749580383,0.260719627141953,-0.601916551589966,0.754783749580383,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.601916551589966,0.754783749580383,-0.260719627141953,-0.601916551589966,0.754783749580383,0.260719627141953 + ,-0.273262739181519,0.342661827802658,0.898800611495972,-0.273262739181519,0.342661827802658,-0.898800611495972 + ,-0.493789494037628,0.619190037250519,-0.610522806644440,-0.493789494037628,0.619190037250519,0.610522806644440 + ,-0.439466536045074,0.551072716712952,-0.709311187267303,-0.439466536045074,0.551072716712952,0.709311187267303 + ,-0.551072716712952,0.439466536045074,-0.709311187267303,-0.551072716712952,0.439466536045074,0.709311187267303 + ,-0.619190037250519,0.493789494037628,-0.610522806644440,-0.619190037250519,0.493789494037628,0.610522806644440 + ,-0.342661827802658,0.273262739181519,0.898800611495972,-0.342661827802658,0.273262739181519,-0.898800611495972 + ,-0.754783749580383,0.601916551589966,-0.260719627141953,-0.754783749580383,0.601916551589966,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.754783749580383,0.601916551589966,0.260719627141953,-0.754783749580383,0.601916551589966,-0.260719627141953 + ,0.431714832782745,-0.344279319047928,0.833674132823944,0.431714832782745,-0.344279319047928,-0.833674132823944 + ,0.497512727975845,-0.239570304751396,0.833674132823944,0.497512727975845,-0.239570304751396,-0.833674132823944 + ,-0.869777500629425,0.418866544961929,0.260719627141953,-0.869777500629425,0.418866544961929,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.869777500629425,0.418866544961929,-0.260719627141953,-0.869777500629425,0.418866544961929,0.260719627141953 + ,-0.394878983497620,0.190160825848579,0.898800611495972,-0.394878983497620,0.190160825848579,-0.898800611495972 + ,-0.713553249835968,0.343607902526855,-0.610522806644440,-0.713553249835968,0.343607902526855,0.610522806644440 + ,-0.635059654712677,0.305825978517532,-0.709311187267303,-0.635059654712677,0.305825978517532,0.709311187267303 + ,-0.687185287475586,0.156834617257118,-0.709311187267303,-0.687185287475586,0.156834617257118,0.709311187267303 + ,-0.772118270397186,0.176213875412941,-0.610522806644440,-0.772118270397186,0.176213875412941,0.610522806644440 + ,-0.427320182323456,0.097506634891033,0.898800611495972,-0.427320182323456,0.097506634891033,-0.898800611495972 + ,-0.941190838813782,0.214819788932800,-0.260719627141953,-0.941190838813782,0.214819788932800,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.941190838813782,0.214819788932800,0.260719627141953,-0.941190838813782,0.214819788932800,-0.260719627141953 + ,0.538346529006958,-0.122867517173290,0.833674132823944,0.538346529006958,-0.122867517173290,-0.833674132823944 + ,0.552201926708221,0.000000000000000,0.833674132823944,0.552201926708221,0.000000000000000,-0.833674132823944 + ,-0.965391993522644,0.000000000000000,0.260719627141953,-0.965391993522644,0.000000000000000,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.965391993522644,0.000000000000000,-0.260719627141953,-0.965391993522644,0.000000000000000,0.260719627141953 + ,-0.438306838274002,0.000000000000000,0.898800611495972,-0.438306838274002,0.000000000000000,-0.898800611495972 + ,-0.791985809803009,0.000000000000000,-0.610522806644440,-0.791985809803009,0.000000000000000,0.610522806644440 + ,-0.704855501651764,0.000000000000000,-0.709311187267303,-0.704855501651764,0.000000000000000,0.709311187267303 + ,-0.687185287475586,-0.156834617257118,-0.709311187267303,-0.687185287475586,-0.156834617257118,0.709311187267303 + ,-0.772118270397186,-0.176213875412941,-0.610522806644440,-0.772118270397186,-0.176213875412941,0.610522806644440 + ,-0.427320182323456,-0.097506634891033,0.898800611495972,-0.427320182323456,-0.097506634891033,-0.898800611495972 + ,-0.941190838813782,-0.214819788932800,-0.260719627141953,-0.941190838813782,-0.214819788932800,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.941190838813782,-0.214819788932800,0.260719627141953,-0.941190838813782,-0.214819788932800,-0.260719627141953 + ,0.538346529006958,0.122867517173290,0.833674132823944,0.538346529006958,0.122867517173290,-0.833674132823944 + ,0.497512727975845,0.239570304751396,0.833674132823944,0.497512727975845,0.239570304751396,-0.833674132823944 + ,-0.869777500629425,-0.418866544961929,0.260719627141953,-0.869777500629425,-0.418866544961929,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.869777500629425,-0.418866544961929,-0.260719627141953,-0.869777500629425,-0.418866544961929,0.260719627141953 + ,-0.394878983497620,-0.190160825848579,0.898800611495972,-0.394878983497620,-0.190160825848579,-0.898800611495972 + ,-0.713553249835968,-0.343607902526855,-0.610522806644440,-0.713553249835968,-0.343607902526855,0.610522806644440 + ,-0.635059654712677,-0.305825978517532,-0.709311187267303,-0.635059654712677,-0.305825978517532,0.709311187267303 + ,-0.551072716712952,-0.439466536045074,-0.709311187267303,-0.551072716712952,-0.439466536045074,0.709311187267303 + ,-0.619190037250519,-0.493789494037628,-0.610522806644440,-0.619190037250519,-0.493789494037628,0.610522806644440 + ,-0.342661827802658,-0.273262739181519,0.898800611495972,-0.342661827802658,-0.273262739181519,-0.898800611495972 + ,-0.754783749580383,-0.601916551589966,-0.260719627141953,-0.754783749580383,-0.601916551589966,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.754783749580383,-0.601916551589966,0.260719627141953,-0.754783749580383,-0.601916551589966,-0.260719627141953 + ,0.431714832782745,0.344279319047928,0.833674132823944,0.431714832782745,0.344279319047928,-0.833674132823944 + ,0.344279319047928,0.431714832782745,0.833674132823944,0.344279319047928,0.431714832782745,-0.833674132823944 + ,-0.601916551589966,-0.754783749580383,0.260719627141953,-0.601916551589966,-0.754783749580383,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.601916551589966,-0.754783749580383,-0.260719627141953,-0.601916551589966,-0.754783749580383,0.260719627141953 + ,-0.273262739181519,-0.342661827802658,0.898800611495972,-0.273262739181519,-0.342661827802658,-0.898800611495972 + ,-0.493789494037628,-0.619190037250519,-0.610522806644440,-0.493789494037628,-0.619190037250519,0.610522806644440 + ,-0.439466536045074,-0.551072716712952,-0.709311187267303,-0.439466536045074,-0.551072716712952,0.709311187267303 + ,-0.305825978517532,-0.635059654712677,-0.709311187267303,-0.305825978517532,-0.635059654712677,0.709311187267303 + ,-0.343607902526855,-0.713553249835968,-0.610522806644440,-0.343607902526855,-0.713553249835968,0.610522806644440 + ,-0.190160825848579,-0.394878983497620,0.898800611495972,-0.190160825848579,-0.394878983497620,-0.898800611495972 + ,-0.418866544961929,-0.869777500629425,-0.260719627141953,-0.418866544961929,-0.869777500629425,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.418866544961929,-0.869777500629425,0.260719627141953,-0.418866544961929,-0.869777500629425,-0.260719627141953 + ,0.239570304751396,0.497512727975845,0.833674132823944,0.239570304751396,0.497512727975845,-0.833674132823944 + ,0.122867517173290,0.538346529006958,0.833674132823944,0.122867517173290,0.538346529006958,-0.833674132823944 + ,-0.214819788932800,-0.941190838813782,0.260719627141953,-0.214819788932800,-0.941190838813782,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,-0.214819788932800,-0.941190838813782,-0.260719627141953,-0.214819788932800,-0.941190838813782,0.260719627141953 + ,-0.097506634891033,-0.427320182323456,0.898800611495972,-0.097506634891033,-0.427320182323456,-0.898800611495972 + ,-0.176213875412941,-0.772118270397186,-0.610522806644440,-0.176213875412941,-0.772118270397186,0.610522806644440 + ,-0.156834617257118,-0.687185287475586,-0.709311187267303,-0.156834617257118,-0.687185287475586,0.709311187267303 + ,0.000000000000000,-0.704855501651764,-0.709311187267303,0.000000000000000,-0.704855501651764,0.709311187267303 + ,0.000000000000000,-0.791985809803009,-0.610522806644440,0.000000000000000,-0.791985809803009,0.610522806644440 + ,0.000000000000000,-0.438306838274002,0.898800611495972,0.000000000000000,-0.438306838274002,-0.898800611495972 + ,0.000000000000000,-0.965391993522644,-0.260719627141953,0.000000000000000,-0.965391993522644,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.000000000000000,-0.965391993522644,0.260719627141953,0.000000000000000,-0.965391993522644,-0.260719627141953 + ,0.000000000000000,0.552201926708221,0.833674132823944,0.000000000000000,0.552201926708221,-0.833674132823944 + ,-0.122867517173290,0.538346529006958,0.833674132823944,-0.122867517173290,0.538346529006958,-0.833674132823944 + ,0.214819788932800,-0.941190838813782,0.260719627141953,0.214819788932800,-0.941190838813782,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.214819788932800,-0.941190838813782,-0.260719627141953,0.214819788932800,-0.941190838813782,0.260719627141953 + ,0.097506634891033,-0.427320182323456,0.898800611495972,0.097506634891033,-0.427320182323456,-0.898800611495972 + ,0.176213875412941,-0.772118270397186,-0.610522806644440,0.176213875412941,-0.772118270397186,0.610522806644440 + ,0.156834617257118,-0.687185287475586,-0.709311187267303,0.156834617257118,-0.687185287475586,0.709311187267303 + ,0.305825978517532,-0.635059654712677,-0.709311187267303,0.305825978517532,-0.635059654712677,0.709311187267303 + ,0.343607902526855,-0.713553249835968,-0.610522806644440,0.343607902526855,-0.713553249835968,0.610522806644440 + ,0.190160825848579,-0.394878983497620,0.898800611495972,0.190160825848579,-0.394878983497620,-0.898800611495972 + ,0.418866544961929,-0.869777500629425,-0.260719627141953,0.418866544961929,-0.869777500629425,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.418866544961929,-0.869777500629425,0.260719627141953,0.418866544961929,-0.869777500629425,-0.260719627141953 + ,-0.239570304751396,0.497512727975845,0.833674132823944,-0.239570304751396,0.497512727975845,-0.833674132823944 + ,-0.344279319047928,0.431714832782745,0.833674132823944,-0.344279319047928,0.431714832782745,-0.833674132823944 + ,0.601916551589966,-0.754783749580383,0.260719627141953,0.601916551589966,-0.754783749580383,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.601916551589966,-0.754783749580383,-0.260719627141953,0.601916551589966,-0.754783749580383,0.260719627141953 + ,0.273262739181519,-0.342661827802658,0.898800611495972,0.273262739181519,-0.342661827802658,-0.898800611495972 + ,0.493789494037628,-0.619190037250519,-0.610522806644440,0.493789494037628,-0.619190037250519,0.610522806644440 + ,0.439466536045074,-0.551072716712952,-0.709311187267303,0.439466536045074,-0.551072716712952,0.709311187267303 + ,0.551072716712952,-0.439466536045074,-0.709311187267303,0.551072716712952,-0.439466536045074,0.709311187267303 + ,0.619190037250519,-0.493789494037628,-0.610522806644440,0.619190037250519,-0.493789494037628,0.610522806644440 + ,0.342661827802658,-0.273262739181519,0.898800611495972,0.342661827802658,-0.273262739181519,-0.898800611495972 + ,0.754783749580383,-0.601916551589966,-0.260719627141953,0.754783749580383,-0.601916551589966,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.754783749580383,-0.601916551589966,0.260719627141953,0.754783749580383,-0.601916551589966,-0.260719627141953 + ,-0.431714832782745,0.344279319047928,0.833674132823944,-0.431714832782745,0.344279319047928,-0.833674132823944 + ,-0.497512727975845,0.239570304751396,0.833674132823944,-0.497512727975845,0.239570304751396,-0.833674132823944 + ,0.869777500629425,-0.418866544961929,0.260719627141953,0.869777500629425,-0.418866544961929,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.869777500629425,-0.418866544961929,-0.260719627141953,0.869777500629425,-0.418866544961929,0.260719627141953 + ,0.394878983497620,-0.190160825848579,0.898800611495972,0.394878983497620,-0.190160825848579,-0.898800611495972 + ,0.713553249835968,-0.343607902526855,-0.610522806644440,0.713553249835968,-0.343607902526855,0.610522806644440 + ,0.635059654712677,-0.305825978517532,-0.709311187267303,0.635059654712677,-0.305825978517532,0.709311187267303 + ,0.687185287475586,-0.156834617257118,-0.709311187267303,0.687185287475586,-0.156834617257118,0.709311187267303 + ,0.772118270397186,-0.176213875412941,-0.610522806644440,0.772118270397186,-0.176213875412941,0.610522806644440 + ,0.427320182323456,-0.097506634891033,0.898800611495972,0.427320182323456,-0.097506634891033,-0.898800611495972 + ,0.941190838813782,-0.214819788932800,-0.260719627141953,0.941190838813782,-0.214819788932800,0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.941190838813782,-0.214819788932800,0.260719627141953,0.941190838813782,-0.214819788932800,-0.260719627141953 + ,-0.538346529006958,0.122867517173290,0.833674132823944,-0.538346529006958,0.122867517173290,-0.833674132823944 + ,-0.552201926708221,0.000000000000000,0.833674132823944,-0.552201926708221,0.000000000000000,-0.833674132823944 + ,0.965391993522644,0.000000000000000,0.260719627141953,0.965391993522644,0.000000000000000,-0.260719627141953 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.965391993522644,0.000000000000000,-0.260719627141953,0.965391993522644,0.000000000000000,0.260719627141953 + ,0.438306838274002,0.000000000000000,0.898800611495972,0.438306838274002,0.000000000000000,-0.898800611495972 + ,0.791985809803009,0.000000000000000,-0.610522806644440,0.791985809803009,0.000000000000000,0.610522806644440 + ,0.704855501651764,0.000000000000000,-0.709311187267303,0.704855501651764,0.000000000000000,0.709311187267303 + ,-0.261513113975525,-0.059663686901331,0.963347256183624,-0.261513113975525,-0.059663686901331,-0.963347256183624 + ,-0.268227189779282,0.000000000000000,0.963347256183624,-0.268227189779282,0.000000000000000,-0.963347256183624 + ,0.938322067260742,0.214148387312889,0.271401107311249,0.938322067260742,0.214148387312889,-0.271401107311249 + ,0.962462246417999,0.000000000000000,0.271401107311249,0.962462246417999,0.000000000000000,-0.271401107311249 + ,-0.261513113975525,0.059663686901331,0.963347256183624,-0.261513113975525,0.059663686901331,-0.963347256183624 + ,0.938322067260742,-0.214148387312889,0.271401107311249,0.938322067260742,-0.214148387312889,-0.271401107311249 + ,0.867122411727905,-0.417584776878357,0.271401107311249,0.867122411727905,-0.417584776878357,-0.271401107311249 + ,-0.241676077246666,0.116367079317570,0.963347256183624,-0.241676077246666,0.116367079317570,-0.963347256183624 + ,-0.209723204374313,0.167241424322128,0.963347256183624,-0.209723204374313,0.167241424322128,-0.963347256183624 + ,0.752464354038239,-0.600085437297821,0.271401107311249,0.752464354038239,-0.600085437297821,-0.271401107311249 + ,0.600085437297821,-0.752464354038239,0.271401107311249,0.600085437297821,-0.752464354038239,-0.271401107311249 + ,-0.167241424322128,0.209723204374313,0.963347256183624,-0.167241424322128,0.209723204374313,-0.963347256183624 + ,-0.116367079317570,0.241676077246666,0.963347256183624,-0.116367079317570,0.241676077246666,-0.963347256183624 + ,0.417584776878357,-0.867122411727905,0.271401107311249,0.417584776878357,-0.867122411727905,-0.271401107311249 + ,0.214148387312889,-0.938322067260742,0.271401107311249,0.214148387312889,-0.938322067260742,-0.271401107311249 + ,-0.059663686901331,0.261513113975525,0.963347256183624,-0.059663686901331,0.261513113975525,-0.963347256183624 + ,0.000000000000000,0.268227189779282,0.963347256183624,0.000000000000000,0.268227189779282,-0.963347256183624 + ,0.000000000000000,-0.962462246417999,0.271401107311249,0.000000000000000,-0.962462246417999,-0.271401107311249 + ,-0.214148387312889,-0.938322067260742,0.271401107311249,-0.214148387312889,-0.938322067260742,-0.271401107311249 + ,0.059663686901331,0.261513113975525,0.963347256183624,0.059663686901331,0.261513113975525,-0.963347256183624 + ,0.116367079317570,0.241676077246666,0.963347256183624,0.116367079317570,0.241676077246666,-0.963347256183624 + ,-0.417584776878357,-0.867122411727905,0.271401107311249,-0.417584776878357,-0.867122411727905,-0.271401107311249 + ,-0.600085437297821,-0.752464354038239,0.271401107311249,-0.600085437297821,-0.752464354038239,-0.271401107311249 + ,0.167241424322128,0.209723204374313,0.963347256183624,0.167241424322128,0.209723204374313,-0.963347256183624 + ,0.209723204374313,0.167241424322128,0.963347256183624,0.209723204374313,0.167241424322128,-0.963347256183624 + ,-0.752464354038239,-0.600085437297821,0.271401107311249,-0.752464354038239,-0.600085437297821,-0.271401107311249 + ,-0.867122411727905,-0.417584776878357,0.271401107311249,-0.867122411727905,-0.417584776878357,-0.271401107311249 + ,0.241676077246666,0.116367079317570,0.963347256183624,0.241676077246666,0.116367079317570,-0.963347256183624 + ,0.261513113975525,0.059663686901331,0.963347256183624,0.261513113975525,0.059663686901331,-0.963347256183624 + ,-0.938322067260742,-0.214148387312889,0.271401107311249,-0.938322067260742,-0.214148387312889,-0.271401107311249 + ,-0.962462246417999,0.000000000000000,0.271401107311249,-0.962462246417999,0.000000000000000,-0.271401107311249 + ,0.268227189779282,0.000000000000000,0.963347256183624,0.268227189779282,0.000000000000000,-0.963347256183624 + ,0.261513113975525,-0.059663686901331,0.963347256183624,0.261513113975525,-0.059663686901331,-0.963347256183624 + ,-0.938322067260742,0.214148387312889,0.271401107311249,-0.938322067260742,0.214148387312889,-0.271401107311249 + ,-0.867122411727905,0.417584776878357,0.271401107311249,-0.867122411727905,0.417584776878357,-0.271401107311249 + ,0.241676077246666,-0.116367079317570,0.963347256183624,0.241676077246666,-0.116367079317570,-0.963347256183624 + ,0.209723204374313,-0.167241424322128,0.963347256183624,0.209723204374313,-0.167241424322128,-0.963347256183624 + ,-0.752464354038239,0.600085437297821,0.271401107311249,-0.752464354038239,0.600085437297821,-0.271401107311249 + ,-0.600085437297821,0.752464354038239,0.271401107311249,-0.600085437297821,0.752464354038239,-0.271401107311249 + ,0.167241424322128,-0.209723204374313,0.963347256183624,0.167241424322128,-0.209723204374313,-0.963347256183624 + ,0.116367079317570,-0.241676077246666,0.963347256183624,0.116367079317570,-0.241676077246666,-0.963347256183624 + ,-0.417584776878357,0.867122411727905,0.271401107311249,-0.417584776878357,0.867122411727905,-0.271401107311249 + ,-0.214148387312889,0.938322067260742,0.271401107311249,-0.214148387312889,0.938322067260742,-0.271401107311249 + ,0.059663686901331,-0.261513113975525,0.963347256183624,0.059663686901331,-0.261513113975525,-0.963347256183624 + ,0.000000000000000,-0.268227189779282,0.963347256183624,0.000000000000000,-0.268227189779282,-0.963347256183624 + ,0.000000000000000,0.962462246417999,0.271401107311249,0.000000000000000,0.962462246417999,-0.271401107311249 + ,0.214148387312889,0.938322067260742,0.271401107311249,0.214148387312889,0.938322067260742,-0.271401107311249 + ,-0.059663686901331,-0.261513113975525,0.963347256183624,-0.059663686901331,-0.261513113975525,-0.963347256183624 + ,-0.116367079317570,-0.241676077246666,0.963347256183624,-0.116367079317570,-0.241676077246666,-0.963347256183624 + ,0.417584776878357,0.867122411727905,0.271401107311249,0.417584776878357,0.867122411727905,-0.271401107311249 + ,0.600085437297821,0.752464354038239,0.271401107311249,0.600085437297821,0.752464354038239,-0.271401107311249 + ,-0.167241424322128,-0.209723204374313,0.963347256183624,-0.167241424322128,-0.209723204374313,-0.963347256183624 + ,-0.209723204374313,-0.167241424322128,0.963347256183624,-0.209723204374313,-0.167241424322128,-0.963347256183624 + ,0.752464354038239,0.600085437297821,0.271401107311249,0.752464354038239,0.600085437297821,-0.271401107311249 + ,0.867122411727905,0.417584776878357,0.271401107311249,0.867122411727905,0.417584776878357,-0.271401107311249 + ,-0.241676077246666,-0.116367079317570,0.963347256183624,-0.241676077246666,-0.116367079317570,-0.963347256183624 + ,0.400891125202179,0.091494493186474,0.911526858806610,0.400891125202179,0.091494493186474,-0.911526858806610 + ,0.411206394433975,0.000000000000000,0.911526858806610,0.411206394433975,0.000000000000000,-0.911526858806610 + ,0.886745810508728,0.202368229627609,-0.415540039539337,0.886745810508728,0.202368229627609,0.415540039539337 + ,0.909543156623840,0.000000000000000,-0.415540039539337,0.909543156623840,0.000000000000000,0.415540039539337 + ,0.400891125202179,-0.091494493186474,0.911526858806610,0.400891125202179,-0.091494493186474,-0.911526858806610 + ,0.886745810508728,-0.202368229627609,-0.415540039539337,0.886745810508728,-0.202368229627609,0.415540039539337 + ,0.819483041763306,-0.394634842872620,-0.415540039539337,0.819483041763306,-0.394634842872620,0.415540039539337 + ,0.370494693517685,-0.178411200642586,0.911526858806610,0.370494693517685,-0.178411200642586,-0.911526858806610 + ,0.321481972932816,-0.256386011838913,0.911526858806610,0.321481972932816,-0.256386011838913,-0.911526858806610 + ,0.711111783981323,-0.567094922065735,-0.415540039539337,0.711111783981323,-0.567094922065735,0.415540039539337 + ,0.567094922065735,-0.711111783981323,-0.415540039539337,0.567094922065735,-0.711111783981323,0.415540039539337 + ,0.256386011838913,-0.321481972932816,0.911526858806610,0.256386011838913,-0.321481972932816,-0.911526858806610 + ,0.178411200642586,-0.370494693517685,0.911526858806610,0.178411200642586,-0.370494693517685,-0.911526858806610 + ,0.394634842872620,-0.819483041763306,-0.415540039539337,0.394634842872620,-0.819483041763306,0.415540039539337 + ,0.202368229627609,-0.886745810508728,-0.415540039539337,0.202368229627609,-0.886745810508728,0.415540039539337 + ,0.091494493186474,-0.400891125202179,0.911526858806610,0.091494493186474,-0.400891125202179,-0.911526858806610 + ,0.000000000000000,-0.411206394433975,0.911526858806610,0.000000000000000,-0.411206394433975,-0.911526858806610 + ,0.000000000000000,-0.909543156623840,-0.415540039539337,0.000000000000000,-0.909543156623840,0.415540039539337 + ,-0.202368229627609,-0.886745810508728,-0.415540039539337,-0.202368229627609,-0.886745810508728,0.415540039539337 + ,-0.091494493186474,-0.400891125202179,0.911526858806610,-0.091494493186474,-0.400891125202179,-0.911526858806610 + ,-0.178411200642586,-0.370494693517685,0.911526858806610,-0.178411200642586,-0.370494693517685,-0.911526858806610 + ,-0.394634842872620,-0.819483041763306,-0.415540039539337,-0.394634842872620,-0.819483041763306,0.415540039539337 + ,-0.567094922065735,-0.711111783981323,-0.415540039539337,-0.567094922065735,-0.711111783981323,0.415540039539337 + ,-0.256386011838913,-0.321481972932816,0.911526858806610,-0.256386011838913,-0.321481972932816,-0.911526858806610 + ,-0.321481972932816,-0.256386011838913,0.911526858806610,-0.321481972932816,-0.256386011838913,-0.911526858806610 + ,-0.711111783981323,-0.567094922065735,-0.415540039539337,-0.711111783981323,-0.567094922065735,0.415540039539337 + ,-0.819483041763306,-0.394634842872620,-0.415540039539337,-0.819483041763306,-0.394634842872620,0.415540039539337 + ,-0.370494693517685,-0.178411200642586,0.911526858806610,-0.370494693517685,-0.178411200642586,-0.911526858806610 + ,-0.400891125202179,-0.091494493186474,0.911526858806610,-0.400891125202179,-0.091494493186474,-0.911526858806610 + ,-0.886745810508728,-0.202368229627609,-0.415540039539337,-0.886745810508728,-0.202368229627609,0.415540039539337 + ,-0.909543156623840,0.000000000000000,-0.415540039539337,-0.909543156623840,0.000000000000000,0.415540039539337 + ,-0.411206394433975,0.000000000000000,0.911526858806610,-0.411206394433975,0.000000000000000,-0.911526858806610 + ,-0.400891125202179,0.091494493186474,0.911526858806610,-0.400891125202179,0.091494493186474,-0.911526858806610 + ,-0.886745810508728,0.202368229627609,-0.415540039539337,-0.886745810508728,0.202368229627609,0.415540039539337 + ,-0.819483041763306,0.394634842872620,-0.415540039539337,-0.819483041763306,0.394634842872620,0.415540039539337 + ,-0.370494693517685,0.178411200642586,0.911526858806610,-0.370494693517685,0.178411200642586,-0.911526858806610 + ,-0.321481972932816,0.256386011838913,0.911526858806610,-0.321481972932816,0.256386011838913,-0.911526858806610 + ,-0.711111783981323,0.567094922065735,-0.415540039539337,-0.711111783981323,0.567094922065735,0.415540039539337 + ,-0.567094922065735,0.711111783981323,-0.415540039539337,-0.567094922065735,0.711111783981323,0.415540039539337 + ,-0.256386011838913,0.321481972932816,0.911526858806610,-0.256386011838913,0.321481972932816,-0.911526858806610 + ,-0.178411200642586,0.370494693517685,0.911526858806610,-0.178411200642586,0.370494693517685,-0.911526858806610 + ,-0.394634842872620,0.819483041763306,-0.415540039539337,-0.394634842872620,0.819483041763306,0.415540039539337 + ,-0.202368229627609,0.886745810508728,-0.415540039539337,-0.202368229627609,0.886745810508728,0.415540039539337 + ,-0.091494493186474,0.400891125202179,0.911526858806610,-0.091494493186474,0.400891125202179,-0.911526858806610 + ,0.000000000000000,0.411206394433975,0.911526858806610,0.000000000000000,0.411206394433975,-0.911526858806610 + ,0.000000000000000,0.909543156623840,-0.415540039539337,0.000000000000000,0.909543156623840,0.415540039539337 + ,0.202368229627609,0.886745810508728,-0.415540039539337,0.202368229627609,0.886745810508728,0.415540039539337 + ,0.091494493186474,0.400891125202179,0.911526858806610,0.091494493186474,0.400891125202179,-0.911526858806610 + ,0.178411200642586,0.370494693517685,0.911526858806610,0.178411200642586,0.370494693517685,-0.911526858806610 + ,0.394634842872620,0.819483041763306,-0.415540039539337,0.394634842872620,0.819483041763306,0.415540039539337 + ,0.567094922065735,0.711111783981323,-0.415540039539337,0.567094922065735,0.711111783981323,0.415540039539337 + ,0.256386011838913,0.321481972932816,0.911526858806610,0.256386011838913,0.321481972932816,-0.911526858806610 + ,0.321481972932816,0.256386011838913,0.911526858806610,0.321481972932816,0.256386011838913,-0.911526858806610 + ,0.711111783981323,0.567094922065735,-0.415540039539337,0.711111783981323,0.567094922065735,0.415540039539337 + ,0.819483041763306,0.394634842872620,-0.415540039539337,0.819483041763306,0.394634842872620,0.415540039539337 + ,0.370494693517685,0.178411200642586,0.911526858806610,0.370494693517685,0.178411200642586,-0.911526858806610 + ,-0.640217304229736,-0.146122619509697,0.754142880439758,-0.640217304229736,-0.146122619509697,-0.754142880439758 + ,-0.656666755676270,0.000000000000000,0.754142880439758,-0.656666755676270,0.000000000000000,-0.754142880439758 + ,-0.640217304229736,0.146122619509697,0.754142880439758,-0.640217304229736,0.146122619509697,-0.754142880439758 + ,-0.591631829738617,0.284920811653137,0.754142880439758,-0.591631829738617,0.284920811653137,-0.754142880439758 + ,-0.513412892818451,0.409405797719955,0.754142880439758,-0.513412892818451,0.409405797719955,-0.754142880439758 + ,-0.409405797719955,0.513412892818451,0.754142880439758,-0.409405797719955,0.513412892818451,-0.754142880439758 + ,-0.284920811653137,0.591631829738617,0.754142880439758,-0.284920811653137,0.591631829738617,-0.754142880439758 + ,-0.146122619509697,0.640217304229736,0.754142880439758,-0.146122619509697,0.640217304229736,-0.754142880439758 + ,0.000000000000000,0.656666755676270,0.754142880439758,0.000000000000000,0.656666755676270,-0.754142880439758 + ,0.146122619509697,0.640217304229736,0.754142880439758,0.146122619509697,0.640217304229736,-0.754142880439758 + ,0.284920811653137,0.591631829738617,0.754142880439758,0.284920811653137,0.591631829738617,-0.754142880439758 + ,0.409405797719955,0.513412892818451,0.754142880439758,0.409405797719955,0.513412892818451,-0.754142880439758 + ,0.513412892818451,0.409405797719955,0.754142880439758,0.513412892818451,0.409405797719955,-0.754142880439758 + ,0.591631829738617,0.284920811653137,0.754142880439758,0.591631829738617,0.284920811653137,-0.754142880439758 + ,0.640217304229736,0.146122619509697,0.754142880439758,0.640217304229736,0.146122619509697,-0.754142880439758 + ,0.656666755676270,0.000000000000000,0.754142880439758,0.656666755676270,0.000000000000000,-0.754142880439758 + ,0.640217304229736,-0.146122619509697,0.754142880439758,0.640217304229736,-0.146122619509697,-0.754142880439758 + ,0.591631829738617,-0.284920811653137,0.754142880439758,0.591631829738617,-0.284920811653137,-0.754142880439758 + ,0.513412892818451,-0.409405797719955,0.754142880439758,0.513412892818451,-0.409405797719955,-0.754142880439758 + ,0.409405797719955,-0.513412892818451,0.754142880439758,0.409405797719955,-0.513412892818451,-0.754142880439758 + ,0.284920811653137,-0.591631829738617,0.754142880439758,0.284920811653137,-0.591631829738617,-0.754142880439758 + ,0.146122619509697,-0.640217304229736,0.754142880439758,0.146122619509697,-0.640217304229736,-0.754142880439758 + ,0.000000000000000,-0.656666755676270,0.754142880439758,0.000000000000000,-0.656666755676270,-0.754142880439758 + ,-0.146122619509697,-0.640217304229736,0.754142880439758,-0.146122619509697,-0.640217304229736,-0.754142880439758 + ,-0.284920811653137,-0.591631829738617,0.754142880439758,-0.284920811653137,-0.591631829738617,-0.754142880439758 + ,-0.409405797719955,-0.513412892818451,0.754142880439758,-0.409405797719955,-0.513412892818451,-0.754142880439758 + ,-0.513412892818451,-0.409405797719955,0.754142880439758,-0.513412892818451,-0.409405797719955,-0.754142880439758 + ,-0.591631829738617,-0.284920811653137,0.754142880439758,-0.591631829738617,-0.284920811653137,-0.754142880439758 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.113913,0.923941,0.119753,0.921869,0.141062,0.959691,0.126505,0.965964,0.141062,0.959691,0.119753,0.921869,0.113913,0.923941 + ,0.126505,0.965964,0.175728,0.182197,0.257655,0.118412,0.287913,0.166442,0.217958,0.223935,0.287913,0.166442,0.257655,0.118412 + ,0.175728,0.182197,0.217958,0.223935,0.325007,0.328870,0.369024,0.294320,0.405215,0.353320,0.374308,0.378284,0.405215,0.353320 + ,0.369024,0.294320,0.325007,0.328870,0.374308,0.378284,0.426593,0.431318,0.445111,0.417446,0.471986,0.461054,0.462851,0.468208 + ,0.471986,0.461054,0.445111,0.417446,0.426593,0.431318,0.462851,0.468208,0.445111,0.417446,0.466136,0.407234,0.482477,0.456133 + ,0.471986,0.461054,0.482477,0.456133,0.466136,0.407234,0.445111,0.417446,0.471986,0.461054,0.369024,0.294320,0.419923,0.269854 + ,0.441501,0.335668,0.405215,0.353320,0.441501,0.335668,0.419923,0.269854,0.369024,0.294320,0.405215,0.353320,0.257655,0.118412 + ,0.349675,0.072881,0.369253,0.126619,0.287913,0.166442,0.369253,0.126619,0.349675,0.072881,0.257655,0.118412,0.287913,0.166442 + ,0.119753,0.921869,0.124815,0.918398,0.153953,0.950477,0.141062,0.959691,0.153953,0.950477,0.124815,0.918398,0.119753,0.921869 + ,0.141062,0.959691,0.124815,0.918398,0.129225,0.913599,0.164917,0.938649,0.153953,0.950477,0.164917,0.938649,0.129225,0.913599 + ,0.124815,0.918398,0.153953,0.950477,0.349675,0.072881,0.450190,0.050000,0.456971,0.107331,0.369253,0.126619,0.456971,0.107331 + ,0.450190,0.050000,0.349675,0.072881,0.369253,0.126619,0.419923,0.269854,0.474252,0.257593,0.481134,0.326812,0.441501,0.335668 + ,0.481134,0.326812,0.474252,0.257593,0.419923,0.269854,0.441501,0.335668,0.466136,0.407234,0.488768,0.402451,0.493816,0.453693 + ,0.482477,0.456133,0.493816,0.453693,0.488768,0.402451,0.466136,0.407234,0.482477,0.456133,0.488768,0.402451,0.511948,0.402780 + ,0.505391,0.453844,0.493816,0.453693,0.505391,0.453844,0.511948,0.402780,0.488768,0.402451,0.493816,0.453693,0.474252,0.257593 + ,0.529255,0.257992,0.521611,0.327548,0.481134,0.326812,0.521611,0.327548,0.529255,0.257992,0.474252,0.257593,0.481134,0.326812 + ,0.450190,0.050000,0.553564,0.050000,0.547006,0.108017,0.456971,0.107331,0.547006,0.108017,0.553564,0.050000,0.450190,0.050000 + ,0.456971,0.107331,0.129225,0.913599,0.132424,0.907796,0.173235,0.924422,0.164917,0.938649,0.173235,0.924422,0.132424,0.907796 + ,0.129225,0.913599,0.164917,0.938649,0.132424,0.907796,0.134282,0.901322,0.178242,0.908465,0.173235,0.924422,0.178242,0.908465 + ,0.134282,0.901322,0.132424,0.907796,0.173235,0.924422,0.553564,0.050000,0.656440,0.074024,0.635385,0.130033,0.547006,0.108017 + ,0.635385,0.130033,0.656440,0.074024,0.553564,0.050000,0.547006,0.108017,0.529255,0.257992,0.583302,0.272023,0.560725,0.337321 + ,0.521611,0.327548,0.560725,0.337321,0.583302,0.272023,0.529255,0.257992,0.521611,0.327548,0.511948,0.402780,0.534535,0.408192 + ,0.516632,0.456544,0.505391,0.453844,0.516632,0.456544,0.534535,0.408192,0.511948,0.402780,0.505391,0.453844,0.534535,0.408192 + ,0.555193,0.418623,0.526995,0.461686,0.516632,0.456544,0.526995,0.461686,0.555193,0.418623,0.534535,0.408192,0.516632,0.456544 + ,0.583302,0.272023,0.633797,0.297269,0.596589,0.355669,0.560725,0.337321,0.596589,0.355669,0.633797,0.297269,0.583302,0.272023 + ,0.560725,0.337321,0.656440,0.074024,0.748745,0.123889,0.715779,0.171483,0.635385,0.130033,0.715779,0.171483,0.748745,0.123889 + ,0.656440,0.074024,0.635385,0.130033,0.134282,0.901322,0.134593,0.894551,0.179470,0.891551,0.178242,0.908465,0.179470,0.891551 + ,0.134593,0.894551,0.134282,0.901322,0.178242,0.908465,0.134593,0.894551,0.133325,0.887805,0.176772,0.874535,0.179470,0.891551 + ,0.176772,0.874535,0.133325,0.887805,0.134593,0.894551,0.179470,0.891551,0.748745,0.123889,0.825650,0.191032,0.783729,0.229178 + ,0.715779,0.171483,0.783729,0.229178,0.825650,0.191032,0.748745,0.123889,0.715779,0.171483,0.633797,0.297269,0.676378,0.332798 + ,0.627245,0.381368,0.596589,0.355669,0.627245,0.381368,0.676378,0.332798,0.633797,0.297269,0.596589,0.355669,0.555193,0.418623 + ,0.573012,0.433395,0.535932,0.469025,0.526995,0.461686,0.535932,0.469025,0.573012,0.433395,0.555193,0.418623,0.526995,0.461686 + ,0.573012,0.433395,0.587093,0.451698,0.543006,0.478134,0.535932,0.469025,0.543006,0.478134,0.587093,0.451698,0.573012,0.433395 + ,0.535932,0.469025,0.676378,0.332798,0.709789,0.376736,0.651305,0.413088,0.627245,0.381368,0.651305,0.413088,0.709789,0.376736 + ,0.676378,0.332798,0.627245,0.381368,0.825650,0.191032,0.884979,0.272447,0.836481,0.299986,0.783729,0.229178,0.836481,0.299986 + ,0.884979,0.272447,0.825650,0.191032,0.783729,0.229178,0.133325,0.887805,0.130519,0.881475,0.170139,0.858427,0.176772,0.874535 + ,0.170139,0.858427,0.130519,0.881475,0.133325,0.887805,0.176772,0.874535,0.130519,0.881475,0.126306,0.875912,0.159857,0.844170 + ,0.170139,0.858427,0.159857,0.844170,0.126306,0.875912,0.130519,0.881475,0.170139,0.858427,0.884979,0.272447,0.924321,0.363492 + ,0.872659,0.379923,0.836481,0.299986,0.872659,0.379923,0.924321,0.363492,0.884979,0.272447,0.836481,0.299986,0.709789,0.376736 + ,0.732581,0.426842,0.667662,0.449206,0.651305,0.413088,0.667662,0.449206,0.732581,0.426842,0.709789,0.376736,0.651305,0.413088 + ,0.587093,0.451698,0.596920,0.472249,0.547877,0.488589,0.543006,0.478134,0.547877,0.488589,0.596920,0.472249,0.587093,0.451698 + ,0.543006,0.478134,0.596920,0.472249,0.601089,0.494879,0.550299,0.499904,0.547877,0.488589,0.550299,0.499904,0.601089,0.494879 + ,0.596920,0.472249,0.547877,0.488589,0.732581,0.426842,0.743788,0.480591,0.675645,0.488044,0.667662,0.449206,0.675645,0.488044 + ,0.743788,0.480591,0.732581,0.426842,0.667662,0.449206,0.924321,0.363492,0.944169,0.459611,0.889670,0.465359,0.872659,0.379923 + ,0.889670,0.465359,0.944169,0.459611,0.924321,0.363492,0.872659,0.379923,0.126306,0.875912,0.120897,0.871429,0.146447,0.832613 + ,0.159857,0.844170,0.146447,0.832613,0.120897,0.871429,0.126306,0.875912,0.159857,0.844170,0.120897,0.871429,0.114577,0.868283 + ,0.130635,0.824450,0.146447,0.832613,0.130635,0.824450,0.114577,0.868283,0.120897,0.871429,0.146447,0.832613,0.944169,0.459611 + ,0.943293,0.557460,0.888475,0.551515,0.889670,0.465359,0.888475,0.551515,0.943293,0.557460,0.944169,0.459611,0.889670,0.465359 + ,0.743788,0.480591,0.743356,0.534775,0.674827,0.527511,0.675645,0.488044,0.674827,0.527511,0.743356,0.534775,0.743788,0.480591 + ,0.675645,0.488044,0.601089,0.494879,0.600756,0.518053,0.550109,0.511438,0.550299,0.499904,0.550109,0.511438,0.600756,0.518053 + ,0.601089,0.494879,0.550299,0.499904,0.600756,0.518053,0.595572,0.540150,0.547367,0.522617,0.550109,0.511438,0.547367,0.522617 + ,0.595572,0.540150,0.600756,0.518053,0.550109,0.511438,0.743356,0.534775,0.730337,0.587333,0.665430,0.565857,0.674827,0.527511 + ,0.665430,0.565857,0.730337,0.587333,0.743356,0.534775,0.674827,0.527511,0.943293,0.557460,0.922108,0.653739,0.869282,0.636003 + ,0.888475,0.551515,0.869282,0.636003,0.922108,0.653739,0.943293,0.557460,0.888475,0.551515,0.114577,0.868283,0.107682,0.866653 + ,0.113299,0.820177,0.130635,0.824450,0.113299,0.820177,0.107682,0.866653,0.114577,0.868283,0.130635,0.824450,0.107682,0.866653 + ,0.100582,0.866625,0.095440,0.820100,0.113299,0.820177,0.095440,0.820100,0.100582,0.866625,0.107682,0.866653,0.113299,0.820177 + ,0.922108,0.653739,0.879569,0.744861,0.831222,0.715341,0.869282,0.636003,0.831222,0.715341,0.879569,0.744861,0.922108,0.653739 + ,0.869282,0.636003,0.730337,0.587333,0.705540,0.637061,0.647583,0.601464,0.665430,0.565857,0.647583,0.601464,0.705540,0.637061 + ,0.730337,0.587333,0.665430,0.565857,0.595572,0.540150,0.584798,0.560454,0.542233,0.532922,0.547367,0.522617,0.542233,0.532922 + ,0.584798,0.560454,0.595572,0.540150,0.547367,0.522617,0.584798,0.560454,0.570291,0.578552,0.534953,0.541811,0.542233,0.532922 + ,0.534953,0.541811,0.570291,0.578552,0.584798,0.560454,0.542233,0.532922,0.705540,0.637061,0.670628,0.680454,0.622235,0.632248 + ,0.647583,0.601464,0.622235,0.632248,0.670628,0.680454,0.705540,0.637061,0.647583,0.601464,0.879569,0.744861,0.816320,0.825390 + ,0.775565,0.784160,0.831222,0.715341,0.775565,0.784160,0.816320,0.825390,0.879569,0.744861,0.831222,0.715341,0.100582,0.866625 + ,0.093664,0.868218,0.078056,0.824121,0.095440,0.820100,0.078056,0.824121,0.093664,0.868218,0.100582,0.866625,0.095440,0.820100 + ,0.093664,0.868218,0.087296,0.871334,0.062122,0.832046,0.078056,0.824121,0.062122,0.832046,0.087296,0.871334,0.093664,0.868218 + ,0.078056,0.824121,0.816320,0.825390,0.735060,0.886599,0.706436,0.839421,0.775565,0.784160,0.706436,0.839421,0.735060,0.886599 + ,0.816320,0.825390,0.775565,0.784160,0.670628,0.680454,0.627382,0.714254,0.590832,0.656465,0.622235,0.632248,0.590832,0.656465 + ,0.627382,0.714254,0.670628,0.680454,0.622235,0.632248,0.570291,0.578552,0.552217,0.592704,0.525880,0.548867,0.534953,0.541811 + ,0.525880,0.548867,0.552217,0.592704,0.570291,0.578552,0.534953,0.541811,0.552217,0.592704,0.531430,0.602440,0.515469,0.553740 + ,0.525880,0.548867,0.515469,0.553740,0.531430,0.602440,0.552217,0.592704,0.525880,0.548867,0.627382,0.714254,0.578483,0.737624 + ,0.555024,0.673036,0.590832,0.656465,0.555024,0.673036,0.578483,0.737624,0.627382,0.714254,0.590832,0.656465,0.735060,0.886599 + ,0.644878,0.928657,0.626645,0.876231,0.706436,0.839421,0.626645,0.876231,0.644878,0.928657,0.735060,0.886599,0.706436,0.839421 + ,0.087296,0.871334,0.081817,0.875798,0.048522,0.843393,0.062122,0.832046,0.048522,0.843393,0.081817,0.875798,0.087296,0.871334 + ,0.062122,0.832046,0.081817,0.875798,0.077513,0.881362,0.037987,0.857477,0.048522,0.843393,0.037987,0.857477,0.077513,0.881362 + ,0.081817,0.875798,0.048522,0.843393,0.644878,0.928657,0.547922,0.950000,0.541489,0.894977,0.626645,0.876231,0.541489,0.894977 + ,0.547922,0.950000,0.644878,0.928657,0.626645,0.876231,0.578483,0.737624,0.524887,0.748731,0.516466,0.681211,0.555024,0.673036 + ,0.516466,0.681211,0.524887,0.748731,0.578483,0.737624,0.555024,0.673036,0.531430,0.602440,0.508982,0.607149,0.504233,0.556183 + ,0.515469,0.553740,0.504233,0.556183,0.508982,0.607149,0.531430,0.602440,0.515469,0.553740,0.508982,0.607149,0.486118,0.606811 + ,0.492739,0.556071,0.504233,0.556183,0.492739,0.556071,0.486118,0.606811,0.508982,0.607149,0.504233,0.556183,0.524887,0.748731 + ,0.470089,0.749081,0.476981,0.680703,0.516466,0.681211,0.476981,0.680703,0.470089,0.749081,0.524887,0.748731,0.516466,0.681211 + ,0.547922,0.950000,0.449146,0.949896,0.454769,0.894639,0.541489,0.894977,0.454769,0.894639,0.449146,0.949896,0.547922,0.950000 + ,0.541489,0.894977,0.077513,0.881362,0.074479,0.887727,0.031051,0.873418,0.037987,0.857477,0.031051,0.873418,0.074479,0.887727 + ,0.077513,0.881362,0.037987,0.857477,0.074479,0.887727,0.072981,0.894429,0.028016,0.890328,0.031051,0.873418,0.028016,0.890328 + ,0.072981,0.894429,0.074479,0.887727,0.031051,0.873418,0.449146,0.949896,0.352114,0.928910,0.369830,0.875824,0.454769,0.894639 + ,0.369830,0.875824,0.352114,0.928910,0.449146,0.949896,0.454769,0.894639,0.470089,0.749081,0.417526,0.736499,0.438621,0.671523 + ,0.476981,0.680703,0.438621,0.671523,0.417526,0.736499,0.470089,0.749081,0.476981,0.680703,0.486118,0.606811,0.464043,0.601825 + ,0.481555,0.553413,0.492739,0.556071,0.481555,0.553413,0.464043,0.601825,0.486118,0.606811,0.492739,0.556071,0.464043,0.601825 + ,0.443589,0.591185,0.471207,0.548314,0.481555,0.553413,0.471207,0.548314,0.443589,0.591185,0.464043,0.601825,0.481555,0.553413 + ,0.417526,0.736499,0.367774,0.712086,0.403101,0.654025,0.438621,0.671523,0.403101,0.654025,0.367774,0.712086,0.417526,0.736499 + ,0.438621,0.671523,0.352114,0.928910,0.260690,0.886008,0.290079,0.837994,0.369830,0.875824,0.290079,0.837994,0.260690,0.886008 + ,0.352114,0.928910,0.369830,0.875824,0.072981,0.894429,0.073080,0.901195,0.028941,0.907382,0.028016,0.890328,0.028941,0.907382 + ,0.073080,0.901195,0.072981,0.894429,0.028016,0.890328,0.073080,0.901195,0.074734,0.907631,0.033623,0.923469,0.028941,0.907382 + ,0.033623,0.923469,0.074734,0.907631,0.073080,0.901195,0.028941,0.907382,0.260690,0.886008,0.181647,0.822711,0.221073,0.782739 + ,0.290079,0.837994,0.221073,0.782739,0.181647,0.822711,0.260690,0.886008,0.290079,0.837994,0.367774,0.712086,0.324237,0.677491 + ,0.372276,0.628896,0.403101,0.654025,0.372276,0.628896,0.324237,0.677491,0.367774,0.712086,0.403101,0.654025,0.443589,0.591185 + ,0.425486,0.576535,0.462272,0.541045,0.471207,0.548314,0.462272,0.541045,0.425486,0.576535,0.443589,0.591185,0.471207,0.548314 + ,0.425486,0.576535,0.411403,0.558402,0.455180,0.531976,0.462272,0.541045,0.455180,0.531976,0.411403,0.558402,0.425486,0.576535 + ,0.462272,0.541045,0.324237,0.677491,0.290159,0.634482,0.347869,0.597599,0.372276,0.628896,0.347869,0.597599,0.290159,0.634482 + ,0.324237,0.677491,0.372276,0.628896,0.181647,0.822711,0.119760,0.744184,0.166547,0.714180,0.221073,0.782739,0.166547,0.714180 + ,0.119760,0.744184,0.181647,0.822711,0.221073,0.782739,0.074734,0.907631,0.077808,0.913401,0.041696,0.937871,0.033623,0.923469 + ,0.041696,0.937871,0.077808,0.913401,0.074734,0.907631,0.033623,0.923469,0.077808,0.913401,0.082122,0.918227,0.052482,0.949947 + ,0.041696,0.937871,0.052482,0.949947,0.082122,0.918227,0.077808,0.913401,0.041696,0.937871,0.119760,0.744184,0.076761,0.655458 + ,0.128715,0.636180,0.166547,0.714180,0.128715,0.636180,0.076761,0.655458,0.119760,0.744184,0.166547,0.714180,0.290159,0.634482 + ,0.266321,0.585724,0.331038,0.561832,0.347869,0.597599,0.331038,0.561832,0.266321,0.585724,0.290159,0.634482,0.347869,0.597599 + ,0.411403,0.558402,0.401599,0.537664,0.450271,0.521565,0.455180,0.531976,0.450271,0.521565,0.401599,0.537664,0.411403,0.558402 + ,0.455180,0.531976,0.401599,0.537664,0.396780,0.515221,0.447789,0.510318,0.450271,0.521565,0.447789,0.510318,0.396780,0.515221 + ,0.401599,0.537664,0.450271,0.521565,0.266321,0.585724,0.254471,0.532715,0.322522,0.523285,0.331038,0.561832,0.322522,0.523285 + ,0.254471,0.532715,0.266321,0.585724,0.331038,0.561832,0.076761,0.655458,0.052782,0.559792,0.107943,0.551892,0.128715,0.636180 + ,0.107943,0.551892,0.052782,0.559792,0.076761,0.655458,0.128715,0.636180,0.082122,0.918227,0.087076,0.921726,0.065473,0.959266 + ,0.052482,0.949947,0.065473,0.959266,0.087076,0.921726,0.082122,0.918227,0.052482,0.949947,0.087076,0.921726,0.092842,0.923869 + ,0.080105,0.965754,0.065473,0.959266,0.080105,0.965754,0.092842,0.923869,0.087076,0.921726,0.065473,0.959266,0.052782,0.559792 + ,0.049693,0.459659,0.106024,0.464000,0.107943,0.551892,0.106024,0.464000,0.049693,0.459659,0.052782,0.559792,0.107943,0.551892 + ,0.254471,0.532715,0.254144,0.477593,0.322713,0.483608,0.322522,0.523285,0.322713,0.483608,0.254144,0.477593,0.254471,0.532715 + ,0.322522,0.523285,0.396780,0.515221,0.397016,0.492296,0.447865,0.498799,0.447789,0.510318,0.447865,0.498799,0.397016,0.492296 + ,0.396780,0.515221,0.447789,0.510318,0.397016,0.492296,0.401928,0.470130,0.450495,0.487579,0.447865,0.498799,0.450495,0.487579 + ,0.401928,0.470130,0.397016,0.492296,0.447865,0.498799,0.254144,0.477593,0.266128,0.423577,0.331747,0.444836,0.322713,0.483608 + ,0.331747,0.444836,0.266128,0.423577,0.254144,0.477593,0.322713,0.483608,0.049693,0.459659,0.069123,0.359647,0.123871,0.376799 + ,0.106024,0.464000,0.123871,0.376799,0.069123,0.359647,0.049693,0.459659,0.106024,0.464000,0.092842,0.923869,0.099752,0.925079 + ,0.095593,0.969168,0.080105,0.965754,0.095593,0.969168,0.099752,0.925079,0.092842,0.923869,0.080105,0.965754,0.099752,0.925079 + ,0.106951,0.924897,0.111555,0.969168,0.095593,0.969168,0.111555,0.969168,0.106951,0.924897,0.099752,0.925079,0.095593,0.969168 + ,0.069123,0.359647,0.111631,0.265072,0.161586,0.294673,0.123871,0.376799,0.161586,0.294673,0.111631,0.265072,0.069123,0.359647 + ,0.123871,0.376799,0.266128,0.423577,0.290582,0.373004,0.349290,0.409028,0.331747,0.444836,0.349290,0.409028,0.290582,0.373004 + ,0.266128,0.423577,0.331747,0.444836,0.401928,0.470130,0.412475,0.449584,0.455580,0.477190,0.450495,0.487579,0.455580,0.477190 + ,0.412475,0.449584,0.401928,0.470130,0.450495,0.487579,0.412475,0.449584,0.426593,0.431318,0.462851,0.468208,0.455580,0.477190 + ,0.462851,0.468208,0.426593,0.431318,0.412475,0.449584,0.455580,0.477190,0.290582,0.373004,0.325007,0.328870,0.374308,0.378284 + ,0.349290,0.409028,0.374308,0.378284,0.325007,0.328870,0.290582,0.373004,0.349290,0.409028,0.111631,0.265072,0.175728,0.182197 + ,0.217958,0.223935,0.161586,0.294673,0.217958,0.223935,0.175728,0.182197,0.111631,0.265072,0.161586,0.294673,0.106951,0.924897 + ,0.113913,0.923941,0.126505,0.965964,0.111555,0.969168,0.126505,0.965964,0.113913,0.923941,0.106951,0.924897,0.111555,0.969168 + ,0.374308,0.378284,0.405215,0.353320,0.411197,0.362661,0.382091,0.386135,0.411197,0.362661,0.405215,0.353320,0.374308,0.378284 + ,0.382091,0.386135,0.445111,0.417446,0.426593,0.431318,0.419927,0.424573,0.439512,0.408429,0.419927,0.424573,0.426593,0.431318 + ,0.445111,0.417446,0.439512,0.408429,0.349290,0.409028,0.374308,0.378284,0.382091,0.386135,0.358601,0.415098,0.382091,0.386135 + ,0.374308,0.378284,0.349290,0.409028,0.358601,0.415098,0.426593,0.431318,0.412475,0.449584,0.403598,0.443957,0.419927,0.424573 + ,0.403598,0.443957,0.412475,0.449584,0.426593,0.431318,0.419927,0.424573,0.412475,0.449584,0.401928,0.470130,0.393143,0.467050 + ,0.403598,0.443957,0.393143,0.467050,0.401928,0.470130,0.412475,0.449584,0.403598,0.443957,0.331747,0.444836,0.349290,0.409028 + ,0.358601,0.415098,0.342211,0.448641,0.358601,0.415098,0.349290,0.409028,0.331747,0.444836,0.342211,0.448641,0.322713,0.483608 + ,0.331747,0.444836,0.342211,0.448641,0.333736,0.484956,0.342211,0.448641,0.331747,0.444836,0.322713,0.483608,0.333736,0.484956 + ,0.401928,0.470130,0.397016,0.492296,0.387291,0.491155,0.393143,0.467050,0.387291,0.491155,0.397016,0.492296,0.401928,0.470130 + ,0.393143,0.467050,0.397016,0.492296,0.396780,0.515221,0.386925,0.516245,0.387291,0.491155,0.386925,0.516245,0.396780,0.515221 + ,0.397016,0.492296,0.387291,0.491155,0.322522,0.523285,0.322713,0.483608,0.333736,0.484956,0.333530,0.522141,0.333736,0.484956 + ,0.322713,0.483608,0.322522,0.523285,0.333530,0.522141,0.331038,0.561832,0.322522,0.523285,0.333530,0.522141,0.341500,0.558314 + ,0.333530,0.522141,0.322522,0.523285,0.331038,0.561832,0.341500,0.558314,0.396780,0.515221,0.401599,0.537664,0.392179,0.540906 + ,0.386925,0.516245,0.392179,0.540906,0.401599,0.537664,0.396780,0.515221,0.386925,0.516245,0.401599,0.537664,0.411403,0.558402 + ,0.402986,0.563622,0.392179,0.540906,0.402986,0.563622,0.411403,0.558402,0.401599,0.537664,0.392179,0.540906,0.347869,0.597599 + ,0.331038,0.561832,0.341500,0.558314,0.357305,0.591830,0.341500,0.558314,0.331038,0.561832,0.347869,0.597599,0.357305,0.591830 + ,0.372276,0.628896,0.347869,0.597599,0.357305,0.591830,0.380212,0.621149,0.357305,0.591830,0.347869,0.597599,0.372276,0.628896 + ,0.380212,0.621149,0.411403,0.558402,0.425486,0.576535,0.418297,0.583545,0.402986,0.563622,0.418297,0.583545,0.425486,0.576535 + ,0.411403,0.558402,0.402986,0.563622,0.425486,0.576535,0.443589,0.591185,0.437827,0.600122,0.418297,0.583545,0.437827,0.600122 + ,0.443589,0.591185,0.425486,0.576535,0.418297,0.583545,0.403101,0.654025,0.372276,0.628896,0.380212,0.621149,0.409128,0.644736 + ,0.380212,0.621149,0.372276,0.628896,0.403101,0.654025,0.409128,0.644736,0.438621,0.671523,0.403101,0.654025,0.409128,0.644736 + ,0.442426,0.661148,0.409128,0.644736,0.403101,0.654025,0.438621,0.671523,0.442426,0.661148,0.443589,0.591185,0.464043,0.601825 + ,0.460947,0.610597,0.437827,0.600122,0.460947,0.610597,0.464043,0.601825,0.443589,0.591185,0.437827,0.600122,0.464043,0.601825 + ,0.486118,0.606811,0.484946,0.616506,0.460947,0.610597,0.484946,0.616506,0.486118,0.606811,0.464043,0.601825,0.460947,0.610597 + ,0.476981,0.680703,0.438621,0.671523,0.442426,0.661148,0.478387,0.669764,0.442426,0.661148,0.438621,0.671523,0.476981,0.680703 + ,0.478387,0.669764,0.516466,0.681211,0.476981,0.680703,0.478387,0.669764,0.515396,0.670240,0.478387,0.669764,0.476981,0.680703 + ,0.516466,0.681211,0.515396,0.670240,0.486118,0.606811,0.508982,0.607149,0.509958,0.616997,0.484946,0.616506,0.509958,0.616997 + ,0.508982,0.607149,0.486118,0.606811,0.484946,0.616506,0.508982,0.607149,0.531430,0.602440,0.534626,0.611882,0.509958,0.616997 + ,0.534626,0.611882,0.531430,0.602440,0.508982,0.607149,0.509958,0.616997,0.555024,0.673036,0.516466,0.681211,0.515396,0.670240 + ,0.551580,0.662565,0.515396,0.670240,0.516466,0.681211,0.555024,0.673036,0.551580,0.662565,0.590832,0.656465,0.555024,0.673036 + ,0.551580,0.662565,0.585139,0.647000,0.551580,0.662565,0.555024,0.673036,0.590832,0.656465,0.585139,0.647000,0.531430,0.602440 + ,0.552217,0.592704,0.557464,0.601158,0.534626,0.611882,0.557464,0.601158,0.552217,0.592704,0.531430,0.602440,0.534626,0.611882 + ,0.552217,0.592704,0.570291,0.578552,0.577339,0.585683,0.557464,0.601158,0.577339,0.585683,0.570291,0.578552,0.552217,0.592704 + ,0.557464,0.601158,0.622235,0.632248,0.590832,0.656465,0.585139,0.647000,0.614541,0.624251,0.585139,0.647000,0.590832,0.656465 + ,0.622235,0.632248,0.614541,0.624251,0.647583,0.601464,0.622235,0.632248,0.614541,0.624251,0.638276,0.595376,0.614541,0.624251 + ,0.622235,0.632248,0.647583,0.601464,0.638276,0.595376,0.570291,0.578552,0.584798,0.560454,0.593624,0.566165,0.577339,0.585683 + ,0.593624,0.566165,0.584798,0.560454,0.570291,0.578552,0.577339,0.585683,0.584798,0.560454,0.595572,0.540150,0.604343,0.543381 + ,0.593624,0.566165,0.604343,0.543381,0.595572,0.540150,0.584798,0.560454,0.593624,0.566165,0.665430,0.565857,0.647583,0.601464 + ,0.638276,0.595376,0.654953,0.561964,0.638276,0.595376,0.647583,0.601464,0.665430,0.565857,0.654953,0.561964,0.674827,0.527511 + ,0.665430,0.565857,0.654953,0.561964,0.663981,0.526072,0.654953,0.561964,0.665430,0.565857,0.674827,0.527511,0.663981,0.526072 + ,0.595572,0.540150,0.600756,0.518053,0.610563,0.519357,0.604343,0.543381,0.610563,0.519357,0.600756,0.518053,0.595572,0.540150 + ,0.604343,0.543381,0.600756,0.518053,0.601089,0.494879,0.611592,0.493929,0.610563,0.519357,0.611592,0.493929,0.601089,0.494879 + ,0.600756,0.518053,0.610563,0.519357,0.675645,0.488044,0.674827,0.527511,0.663981,0.526072,0.664657,0.489047,0.663981,0.526072 + ,0.674827,0.527511,0.675645,0.488044,0.664657,0.489047,0.667662,0.449206,0.675645,0.488044,0.664657,0.489047,0.657119,0.452587 + ,0.664657,0.489047,0.675645,0.488044,0.667662,0.449206,0.657119,0.452587,0.601089,0.494879,0.596920,0.472249,0.605793,0.469297 + ,0.611592,0.493929,0.605793,0.469297,0.596920,0.472249,0.601089,0.494879,0.611592,0.493929,0.596920,0.472249,0.587093,0.451698 + ,0.595500,0.446568,0.605793,0.469297,0.595500,0.446568,0.587093,0.451698,0.596920,0.472249,0.605793,0.469297,0.651305,0.413088 + ,0.667662,0.449206,0.657119,0.452587,0.641759,0.418752,0.657119,0.452587,0.667662,0.449206,0.651305,0.413088,0.641759,0.418752 + ,0.627245,0.381368,0.651305,0.413088,0.641759,0.418752,0.619155,0.389039,0.641759,0.418752,0.651305,0.413088,0.627245,0.381368 + ,0.619155,0.389039,0.587093,0.451698,0.573012,0.433395,0.580214,0.426404,0.595500,0.446568,0.580214,0.426404,0.573012,0.433395 + ,0.587093,0.451698,0.595500,0.446568,0.573012,0.433395,0.555193,0.418623,0.560631,0.410248,0.580214,0.426404,0.560631,0.410248 + ,0.555193,0.418623,0.573012,0.433395,0.580214,0.426404,0.596589,0.355669,0.627245,0.381368,0.619155,0.389039,0.590378,0.365004 + ,0.619155,0.389039,0.627245,0.381368,0.596589,0.355669,0.590378,0.365004,0.560725,0.337321,0.596589,0.355669,0.590378,0.365004 + ,0.556731,0.347947,0.590378,0.365004,0.596589,0.355669,0.560725,0.337321,0.556731,0.347947,0.555193,0.418623,0.534535,0.408192 + ,0.537967,0.398726,0.560631,0.410248,0.537967,0.398726,0.534535,0.408192,0.555193,0.418623,0.560631,0.410248,0.534535,0.408192 + ,0.511948,0.402780,0.513143,0.392789,0.537967,0.398726,0.513143,0.392789,0.511948,0.402780,0.534535,0.408192,0.537967,0.398726 + ,0.521611,0.327548,0.560725,0.337321,0.556731,0.347947,0.520108,0.338718,0.556731,0.347947,0.560725,0.337321,0.521611,0.327548 + ,0.520108,0.338718,0.481134,0.326812,0.521611,0.327548,0.520108,0.338718,0.482282,0.337985,0.520108,0.338718,0.521611,0.327548 + ,0.481134,0.326812,0.482282,0.337985,0.511948,0.402780,0.488768,0.402451,0.487756,0.392485,0.513143,0.392789,0.487756,0.392485 + ,0.488768,0.402451,0.511948,0.402780,0.513143,0.392789,0.488768,0.402451,0.466136,0.407234,0.462848,0.397641,0.487756,0.392485 + ,0.462848,0.397641,0.466136,0.407234,0.488768,0.402451,0.487756,0.392485,0.441501,0.335668,0.481134,0.326812,0.482282,0.337985 + ,0.445313,0.346385,0.482282,0.337985,0.481134,0.326812,0.441501,0.335668,0.445313,0.346385,0.405215,0.353320,0.441501,0.335668 + ,0.445313,0.346385,0.411197,0.362661,0.445313,0.346385,0.441501,0.335668,0.405215,0.353320,0.411197,0.362661,0.466136,0.407234 + ,0.445111,0.417446,0.439512,0.408429,0.462848,0.397641,0.439512,0.408429,0.445111,0.417446,0.466136,0.407234,0.462848,0.397641 + ,0.358601,0.415098,0.382091,0.386135,0.419927,0.424573,0.403598,0.443957,0.419927,0.424573,0.382091,0.386135,0.358601,0.415098 + ,0.403598,0.443957,0.342211,0.448641,0.358601,0.415098,0.403598,0.443957,0.393143,0.467050,0.403598,0.443957,0.358601,0.415098 + ,0.342211,0.448641,0.393143,0.467050,0.333736,0.484956,0.342211,0.448641,0.393143,0.467050,0.387291,0.491155,0.393143,0.467050 + ,0.342211,0.448641,0.333736,0.484956,0.387291,0.491155,0.333530,0.522141,0.333736,0.484956,0.387291,0.491155,0.386925,0.516245 + ,0.387291,0.491155,0.333736,0.484956,0.333530,0.522141,0.386925,0.516245,0.341500,0.558314,0.333530,0.522141,0.386925,0.516245 + ,0.392179,0.540906,0.386925,0.516245,0.333530,0.522141,0.341500,0.558314,0.392179,0.540906,0.357305,0.591830,0.341500,0.558314 + ,0.392179,0.540906,0.402986,0.563622,0.392179,0.540906,0.341500,0.558314,0.357305,0.591830,0.402986,0.563622,0.380212,0.621149 + ,0.357305,0.591830,0.402986,0.563622,0.418297,0.583545,0.402986,0.563622,0.357305,0.591830,0.380212,0.621149,0.418297,0.583545 + ,0.409128,0.644736,0.380212,0.621149,0.418297,0.583545,0.437827,0.600122,0.418297,0.583545,0.380212,0.621149,0.409128,0.644736 + ,0.437827,0.600122,0.442426,0.661148,0.409128,0.644736,0.437827,0.600122,0.460947,0.610597,0.437827,0.600122,0.409128,0.644736 + ,0.442426,0.661148,0.460947,0.610597,0.478387,0.669764,0.442426,0.661148,0.460947,0.610597,0.484946,0.616506,0.460947,0.610597 + ,0.442426,0.661148,0.478387,0.669764,0.484946,0.616506,0.515396,0.670240,0.478387,0.669764,0.484946,0.616506,0.509958,0.616997 + ,0.484946,0.616506,0.478387,0.669764,0.515396,0.670240,0.509958,0.616997,0.551580,0.662565,0.515396,0.670240,0.509958,0.616997 + ,0.534626,0.611882,0.509958,0.616997,0.515396,0.670240,0.551580,0.662565,0.534626,0.611882,0.585139,0.647000,0.551580,0.662565 + ,0.534626,0.611882,0.557464,0.601158,0.534626,0.611882,0.551580,0.662565,0.585139,0.647000,0.557464,0.601158,0.614541,0.624251 + ,0.585139,0.647000,0.557464,0.601158,0.577339,0.585683,0.557464,0.601158,0.585139,0.647000,0.614541,0.624251,0.577339,0.585683 + ,0.638276,0.595376,0.614541,0.624251,0.577339,0.585683,0.593624,0.566165,0.577339,0.585683,0.614541,0.624251,0.638276,0.595376 + ,0.593624,0.566165,0.654953,0.561964,0.638276,0.595376,0.593624,0.566165,0.604343,0.543381,0.593624,0.566165,0.638276,0.595376 + ,0.654953,0.561964,0.604343,0.543381,0.663981,0.526072,0.654953,0.561964,0.604343,0.543381,0.610563,0.519357,0.604343,0.543381 + ,0.654953,0.561964,0.663981,0.526072,0.610563,0.519357,0.664657,0.489047,0.663981,0.526072,0.610563,0.519357,0.611592,0.493929 + ,0.610563,0.519357,0.663981,0.526072,0.664657,0.489047,0.611592,0.493929,0.657119,0.452587,0.664657,0.489047,0.611592,0.493929 + ,0.605793,0.469297,0.611592,0.493929,0.664657,0.489047,0.657119,0.452587,0.605793,0.469297,0.641759,0.418752,0.657119,0.452587 + ,0.605793,0.469297,0.595500,0.446568,0.605793,0.469297,0.657119,0.452587,0.641759,0.418752,0.595500,0.446568,0.619155,0.389039 + ,0.641759,0.418752,0.595500,0.446568,0.580214,0.426404,0.595500,0.446568,0.641759,0.418752,0.619155,0.389039,0.580214,0.426404 + ,0.590378,0.365004,0.619155,0.389039,0.580214,0.426404,0.560631,0.410248,0.580214,0.426404,0.619155,0.389039,0.590378,0.365004 + ,0.560631,0.410248,0.556731,0.347947,0.590378,0.365004,0.560631,0.410248,0.537967,0.398726,0.560631,0.410248,0.590378,0.365004 + ,0.556731,0.347947,0.537967,0.398726,0.520108,0.338718,0.556731,0.347947,0.537967,0.398726,0.513143,0.392789,0.537967,0.398726 + ,0.556731,0.347947,0.520108,0.338718,0.513143,0.392789,0.482282,0.337985,0.520108,0.338718,0.513143,0.392789,0.487756,0.392485 + ,0.513143,0.392789,0.520108,0.338718,0.482282,0.337985,0.487756,0.392485,0.445313,0.346385,0.482282,0.337985,0.487756,0.392485 + ,0.462848,0.397641,0.487756,0.392485,0.482282,0.337985,0.445313,0.346385,0.462848,0.397641,0.411197,0.362661,0.445313,0.346385 + ,0.462848,0.397641,0.439512,0.408429,0.462848,0.397641,0.445313,0.346385,0.411197,0.362661,0.439512,0.408429,0.382091,0.386135 + ,0.411197,0.362661,0.439512,0.408429,0.419927,0.424573,0.439512,0.408429,0.411197,0.362661,0.382091,0.386135,0.419927,0.424573 + ,0.217958,0.223935,0.287913,0.166442,0.299017,0.183863,0.232058,0.237821,0.299017,0.183863,0.287913,0.166442,0.217958,0.223935 + ,0.232058,0.237821,0.369024,0.294320,0.325007,0.328870,0.315059,0.318893,0.360562,0.280886,0.315059,0.318893,0.325007,0.328870 + ,0.369024,0.294320,0.360562,0.280886,0.161586,0.294673,0.217958,0.223935,0.232058,0.237821,0.179072,0.305354,0.232058,0.237821 + ,0.217958,0.223935,0.161586,0.294673,0.179072,0.305354,0.325007,0.328870,0.290582,0.373004,0.277195,0.364618,0.315059,0.318893 + ,0.277195,0.364618,0.290582,0.373004,0.325007,0.328870,0.315059,0.318893,0.290582,0.373004,0.266128,0.423577,0.252109,0.418642 + ,0.277195,0.364618,0.252109,0.418642,0.266128,0.423577,0.290582,0.373004,0.277195,0.364618,0.123871,0.376799,0.161586,0.294673 + ,0.179072,0.305354,0.142847,0.383081,0.179072,0.305354,0.161586,0.294673,0.123871,0.376799,0.142847,0.383081,0.106024,0.464000 + ,0.123871,0.376799,0.142847,0.383081,0.125667,0.465817,0.142847,0.383081,0.123871,0.376799,0.106024,0.464000,0.125667,0.465817 + ,0.266128,0.423577,0.254144,0.477593,0.239551,0.475914,0.252109,0.418642,0.239551,0.475914,0.254144,0.477593,0.266128,0.423577 + ,0.252109,0.418642,0.254144,0.477593,0.254471,0.532715,0.240033,0.534318,0.239551,0.475914,0.240033,0.534318,0.254471,0.532715 + ,0.254144,0.477593,0.239551,0.475914,0.107943,0.551892,0.106024,0.464000,0.125667,0.465817,0.127272,0.549396,0.125667,0.465817 + ,0.106024,0.464000,0.107943,0.551892,0.127272,0.549396,0.128715,0.636180,0.107943,0.551892,0.127272,0.549396,0.146615,0.629720 + ,0.127272,0.549396,0.107943,0.551892,0.128715,0.636180,0.146615,0.629720,0.254471,0.532715,0.266321,0.585724,0.253510,0.590228 + ,0.240033,0.534318,0.253510,0.590228,0.266321,0.585724,0.254471,0.532715,0.240033,0.534318,0.266321,0.585724,0.290159,0.634482 + ,0.277921,0.642265,0.253510,0.590228,0.277921,0.642265,0.290159,0.634482,0.266321,0.585724,0.253510,0.590228,0.166547,0.714180 + ,0.128715,0.636180,0.146615,0.629720,0.182960,0.703760,0.146615,0.629720,0.128715,0.636180,0.166547,0.714180,0.182960,0.703760 + ,0.221073,0.782739,0.166547,0.714180,0.182960,0.703760,0.234923,0.768834,0.182960,0.703760,0.166547,0.714180,0.221073,0.782739 + ,0.234923,0.768834,0.290159,0.634482,0.324237,0.677491,0.313845,0.687930,0.277921,0.642265,0.313845,0.687930,0.324237,0.677491 + ,0.290159,0.634482,0.277921,0.642265,0.324237,0.677491,0.367774,0.712086,0.359420,0.725322,0.313845,0.687930,0.359420,0.725322 + ,0.367774,0.712086,0.324237,0.677491,0.313845,0.687930,0.290079,0.837994,0.221073,0.782739,0.234923,0.768834,0.300695,0.821031 + ,0.234923,0.768834,0.221073,0.782739,0.290079,0.837994,0.300695,0.821031,0.369830,0.875824,0.290079,0.837994,0.300695,0.821031 + ,0.376285,0.857382,0.300695,0.821031,0.290079,0.837994,0.369830,0.875824,0.376285,0.857382,0.367774,0.712086,0.417526,0.736499 + ,0.412610,0.750213,0.359420,0.725322,0.412610,0.750213,0.417526,0.736499,0.367774,0.712086,0.359420,0.725322,0.417526,0.736499 + ,0.470089,0.749081,0.468441,0.762618,0.412610,0.750213,0.468441,0.762618,0.470089,0.749081,0.417526,0.736499,0.412610,0.750213 + ,0.454769,0.894639,0.369830,0.875824,0.376285,0.857382,0.456899,0.875709,0.376285,0.857382,0.369830,0.875824,0.454769,0.894639 + ,0.456899,0.875709,0.541489,0.894977,0.454769,0.894639,0.456899,0.875709,0.539370,0.875701,0.456899,0.875709,0.454769,0.894639 + ,0.541489,0.894977,0.539370,0.875701,0.470089,0.749081,0.524887,0.748731,0.526526,0.764027,0.468441,0.762618,0.526526,0.764027 + ,0.524887,0.748731,0.470089,0.749081,0.468441,0.762618,0.524887,0.748731,0.578483,0.737624,0.582911,0.750539,0.526526,0.764027 + ,0.582911,0.750539,0.578483,0.737624,0.524887,0.748731,0.526526,0.764027,0.626645,0.876231,0.541489,0.894977,0.539370,0.875701 + ,0.620380,0.857755,0.539370,0.875701,0.541489,0.894977,0.626645,0.876231,0.620380,0.857755,0.706436,0.839421,0.626645,0.876231 + ,0.620380,0.857755,0.695886,0.822365,0.620380,0.857755,0.626645,0.876231,0.706436,0.839421,0.695886,0.822365,0.578483,0.737624 + ,0.627382,0.714254,0.635051,0.726566,0.582911,0.750539,0.635051,0.726566,0.627382,0.714254,0.578483,0.737624,0.582911,0.750539 + ,0.627382,0.714254,0.670628,0.680454,0.680993,0.690934,0.635051,0.726566,0.680993,0.690934,0.670628,0.680454,0.627382,0.714254 + ,0.635051,0.726566,0.775565,0.784160,0.706436,0.839421,0.695886,0.822365,0.761718,0.770181,0.695886,0.822365,0.706436,0.839421 + ,0.775565,0.784160,0.761718,0.770181,0.831222,0.715341,0.775565,0.784160,0.761718,0.770181,0.814592,0.704812,0.761718,0.770181 + ,0.775565,0.784160,0.831222,0.715341,0.814592,0.704812,0.670628,0.680454,0.705540,0.637061,0.718739,0.645524,0.680993,0.690934 + ,0.718739,0.645524,0.705540,0.637061,0.670628,0.680454,0.680993,0.690934,0.705540,0.637061,0.730337,0.587333,0.744039,0.592354 + ,0.718739,0.645524,0.744039,0.592354,0.730337,0.587333,0.705540,0.637061,0.718739,0.645524,0.869282,0.636003,0.831222,0.715341 + ,0.814592,0.704812,0.850926,0.629520,0.814592,0.704812,0.831222,0.715341,0.869282,0.636003,0.850926,0.629520,0.888475,0.551515 + ,0.869282,0.636003,0.850926,0.629520,0.869660,0.549261,0.850926,0.629520,0.869282,0.636003,0.888475,0.551515,0.869660,0.549261 + ,0.730337,0.587333,0.743356,0.534775,0.756806,0.536489,0.744039,0.592354,0.756806,0.536489,0.743356,0.534775,0.730337,0.587333 + ,0.744039,0.592354,0.743356,0.534775,0.743788,0.480591,0.758209,0.479128,0.756806,0.536489,0.758209,0.479128,0.743788,0.480591 + ,0.743356,0.534775,0.756806,0.536489,0.889670,0.465359,0.888475,0.551515,0.869660,0.549261,0.870445,0.467232,0.869660,0.549261 + ,0.888475,0.551515,0.889670,0.465359,0.870445,0.467232,0.872659,0.379923,0.889670,0.465359,0.870445,0.467232,0.853744,0.386027 + ,0.870445,0.467232,0.889670,0.465359,0.872659,0.379923,0.853744,0.386027,0.743788,0.480591,0.732581,0.426842,0.746464,0.422189 + ,0.758209,0.479128,0.746464,0.422189,0.732581,0.426842,0.743788,0.480591,0.758209,0.479128,0.732581,0.426842,0.709789,0.376736 + ,0.722345,0.369106,0.746464,0.422189,0.722345,0.369106,0.709789,0.376736,0.732581,0.426842,0.746464,0.422189,0.836481,0.299986 + ,0.872659,0.379923,0.853744,0.386027,0.819564,0.309926,0.853744,0.386027,0.872659,0.379923,0.836481,0.299986,0.819564,0.309926 + ,0.783729,0.229178,0.836481,0.299986,0.819564,0.309926,0.769287,0.242711,0.819564,0.309926,0.836481,0.299986,0.783729,0.229178 + ,0.769287,0.242711,0.709789,0.376736,0.676378,0.332798,0.686976,0.322528,0.722345,0.369106,0.686976,0.322528,0.676378,0.332798 + ,0.709789,0.376736,0.722345,0.369106,0.676378,0.332798,0.633797,0.297269,0.641958,0.284760,0.686976,0.322528,0.641958,0.284760 + ,0.633797,0.297269,0.676378,0.332798,0.686976,0.322528,0.715779,0.171483,0.783729,0.229178,0.769287,0.242711,0.704874,0.187905 + ,0.769287,0.242711,0.783729,0.229178,0.715779,0.171483,0.704874,0.187905,0.635385,0.130033,0.715779,0.171483,0.704874,0.187905 + ,0.628197,0.149254,0.704874,0.187905,0.715779,0.171483,0.635385,0.130033,0.628197,0.149254,0.633797,0.297269,0.583302,0.272023 + ,0.588790,0.257183,0.641958,0.284760,0.588790,0.257183,0.583302,0.272023,0.633797,0.297269,0.641958,0.284760,0.583302,0.272023 + ,0.529255,0.257992,0.530994,0.244198,0.588790,0.257183,0.530994,0.244198,0.529255,0.257992,0.583302,0.272023,0.588790,0.257183 + ,0.547006,0.108017,0.635385,0.130033,0.628197,0.149254,0.544391,0.128060,0.628197,0.149254,0.635385,0.130033,0.547006,0.108017 + ,0.544391,0.128060,0.456971,0.107331,0.547006,0.108017,0.544391,0.128060,0.459073,0.126926,0.544391,0.128060,0.547006,0.108017 + ,0.456971,0.107331,0.459073,0.126926,0.529255,0.257992,0.474252,0.257593,0.472655,0.242973,0.530994,0.244198,0.472655,0.242973 + ,0.474252,0.257593,0.529255,0.257992,0.530994,0.244198,0.474252,0.257593,0.419923,0.269854,0.414958,0.255790,0.472655,0.242973 + ,0.414958,0.255790,0.419923,0.269854,0.474252,0.257593,0.472655,0.242973,0.369253,0.126619,0.456971,0.107331,0.459073,0.126926 + ,0.375916,0.145483,0.459073,0.126926,0.456971,0.107331,0.369253,0.126619,0.375916,0.145483,0.287913,0.166442,0.369253,0.126619 + ,0.375916,0.145483,0.299017,0.183863,0.375916,0.145483,0.369253,0.126619,0.287913,0.166442,0.299017,0.183863,0.419923,0.269854 + ,0.369024,0.294320,0.360562,0.280886,0.414958,0.255790,0.360562,0.280886,0.369024,0.294320,0.419923,0.269854,0.414958,0.255790 + ,0.179072,0.305354,0.232058,0.237821,0.315059,0.318893,0.277195,0.364618,0.315059,0.318893,0.232058,0.237821,0.179072,0.305354 + ,0.277195,0.364618,0.142847,0.383081,0.179072,0.305354,0.277195,0.364618,0.252109,0.418642,0.277195,0.364618,0.179072,0.305354 + ,0.142847,0.383081,0.252109,0.418642,0.125667,0.465817,0.142847,0.383081,0.252109,0.418642,0.239551,0.475914,0.252109,0.418642 + ,0.142847,0.383081,0.125667,0.465817,0.239551,0.475914,0.127272,0.549396,0.125667,0.465817,0.239551,0.475914,0.240033,0.534318 + ,0.239551,0.475914,0.125667,0.465817,0.127272,0.549396,0.240033,0.534318,0.146615,0.629720,0.127272,0.549396,0.240033,0.534318 + ,0.253510,0.590228,0.240033,0.534318,0.127272,0.549396,0.146615,0.629720,0.253510,0.590228,0.182960,0.703760,0.146615,0.629720 + ,0.253510,0.590228,0.277921,0.642265,0.253510,0.590228,0.146615,0.629720,0.182960,0.703760,0.277921,0.642265,0.234923,0.768834 + ,0.182960,0.703760,0.277921,0.642265,0.313845,0.687930,0.277921,0.642265,0.182960,0.703760,0.234923,0.768834,0.313845,0.687930 + ,0.300695,0.821031,0.234923,0.768834,0.313845,0.687930,0.359420,0.725322,0.313845,0.687930,0.234923,0.768834,0.300695,0.821031 + ,0.359420,0.725322,0.376285,0.857382,0.300695,0.821031,0.359420,0.725322,0.412610,0.750213,0.359420,0.725322,0.300695,0.821031 + ,0.376285,0.857382,0.412610,0.750213,0.456899,0.875709,0.376285,0.857382,0.412610,0.750213,0.468441,0.762618,0.412610,0.750213 + ,0.376285,0.857382,0.456899,0.875709,0.468441,0.762618,0.539370,0.875701,0.456899,0.875709,0.468441,0.762618,0.526526,0.764027 + ,0.468441,0.762618,0.456899,0.875709,0.539370,0.875701,0.526526,0.764027,0.620380,0.857755,0.539370,0.875701,0.526526,0.764027 + ,0.582911,0.750539,0.526526,0.764027,0.539370,0.875701,0.620380,0.857755,0.582911,0.750539,0.695886,0.822365,0.620380,0.857755 + ,0.582911,0.750539,0.635051,0.726566,0.582911,0.750539,0.620380,0.857755,0.695886,0.822365,0.635051,0.726566,0.761718,0.770181 + ,0.695886,0.822365,0.635051,0.726566,0.680993,0.690934,0.635051,0.726566,0.695886,0.822365,0.761718,0.770181,0.680993,0.690934 + ,0.814592,0.704812,0.761718,0.770181,0.680993,0.690934,0.718739,0.645524,0.680993,0.690934,0.761718,0.770181,0.814592,0.704812 + ,0.718739,0.645524,0.850926,0.629520,0.814592,0.704812,0.718739,0.645524,0.744039,0.592354,0.718739,0.645524,0.814592,0.704812 + ,0.850926,0.629520,0.744039,0.592354,0.869660,0.549261,0.850926,0.629520,0.744039,0.592354,0.756806,0.536489,0.744039,0.592354 + ,0.850926,0.629520,0.869660,0.549261,0.756806,0.536489,0.870445,0.467232,0.869660,0.549261,0.756806,0.536489,0.758209,0.479128 + ,0.756806,0.536489,0.869660,0.549261,0.870445,0.467232,0.758209,0.479128,0.853744,0.386027,0.870445,0.467232,0.758209,0.479128 + ,0.746464,0.422189,0.758209,0.479128,0.870445,0.467232,0.853744,0.386027,0.746464,0.422189,0.819564,0.309926,0.853744,0.386027 + ,0.746464,0.422189,0.722345,0.369106,0.746464,0.422189,0.853744,0.386027,0.819564,0.309926,0.722345,0.369106,0.769287,0.242711 + ,0.819564,0.309926,0.722345,0.369106,0.686976,0.322528,0.722345,0.369106,0.819564,0.309926,0.769287,0.242711,0.686976,0.322528 + ,0.704874,0.187905,0.769287,0.242711,0.686976,0.322528,0.641958,0.284760,0.686976,0.322528,0.769287,0.242711,0.704874,0.187905 + ,0.641958,0.284760,0.628197,0.149254,0.704874,0.187905,0.641958,0.284760,0.588790,0.257183,0.641958,0.284760,0.704874,0.187905 + ,0.628197,0.149254,0.588790,0.257183,0.544391,0.128060,0.628197,0.149254,0.588790,0.257183,0.530994,0.244198,0.588790,0.257183 + ,0.628197,0.149254,0.544391,0.128060,0.530994,0.244198,0.459073,0.126926,0.544391,0.128060,0.530994,0.244198,0.472655,0.242973 + ,0.530994,0.244198,0.544391,0.128060,0.459073,0.126926,0.472655,0.242973,0.375916,0.145483,0.459073,0.126926,0.472655,0.242973 + ,0.414958,0.255790,0.472655,0.242973,0.459073,0.126926,0.375916,0.145483,0.414958,0.255790,0.299017,0.183863,0.375916,0.145483 + ,0.414958,0.255790,0.360562,0.280886,0.414958,0.255790,0.375916,0.145483,0.299017,0.183863,0.360562,0.280886,0.232058,0.237821 + ,0.299017,0.183863,0.360562,0.280886,0.315059,0.318893,0.360562,0.280886,0.299017,0.183863,0.232058,0.237821,0.315059,0.318893 + ,0.462851,0.468208,0.471986,0.461054,0.475438,0.466706,0.467485,0.472933,0.475438,0.466706,0.471986,0.461054,0.462851,0.468208 + ,0.467485,0.472933,0.455580,0.477190,0.462851,0.468208,0.467485,0.472933,0.461138,0.480765,0.467485,0.472933,0.462851,0.468208 + ,0.455580,0.477190,0.461138,0.480765,0.450495,0.487579,0.455580,0.477190,0.461138,0.480765,0.456704,0.489812,0.461138,0.480765 + ,0.455580,0.477190,0.450495,0.487579,0.456704,0.489812,0.447865,0.498799,0.450495,0.487579,0.456704,0.489812,0.454402,0.499600 + ,0.456704,0.489812,0.450495,0.487579,0.447865,0.498799,0.454402,0.499600,0.447789,0.510318,0.447865,0.498799,0.454402,0.499600 + ,0.454335,0.509648,0.454402,0.499600,0.447865,0.498799,0.447789,0.510318,0.454335,0.509648,0.450271,0.521565,0.447789,0.510318 + ,0.454335,0.509648,0.456501,0.519459,0.454335,0.509648,0.447789,0.510318,0.450271,0.521565,0.456501,0.519459,0.455180,0.531976 + ,0.450271,0.521565,0.456501,0.519459,0.460788,0.528543,0.456501,0.519459,0.450271,0.521565,0.455180,0.531976,0.460788,0.528543 + ,0.462272,0.541045,0.455180,0.531976,0.460788,0.528543,0.466982,0.536451,0.460788,0.528543,0.455180,0.531976,0.462272,0.541045 + ,0.466982,0.536451,0.471207,0.548314,0.462272,0.541045,0.466982,0.536451,0.474781,0.542785,0.466982,0.536451,0.462272,0.541045 + ,0.471207,0.548314,0.474781,0.542785,0.481555,0.553413,0.471207,0.548314,0.474781,0.542785,0.483796,0.547227,0.474781,0.542785 + ,0.471207,0.548314,0.481555,0.553413,0.483796,0.547227,0.492739,0.556071,0.481555,0.553413,0.483796,0.547227,0.493555,0.549550 + ,0.483796,0.547227,0.481555,0.553413,0.492739,0.556071,0.493555,0.549550,0.504233,0.556183,0.492739,0.556071,0.493555,0.549550 + ,0.503583,0.549645,0.493555,0.549550,0.492739,0.556071,0.504233,0.556183,0.503583,0.549645,0.515469,0.553740,0.504233,0.556183 + ,0.503583,0.549645,0.513383,0.547512,0.503583,0.549645,0.504233,0.556183,0.515469,0.553740,0.513383,0.547512,0.525880,0.548867 + ,0.515469,0.553740,0.513383,0.547512,0.522465,0.543257,0.513383,0.547512,0.515469,0.553740,0.525880,0.548867,0.522465,0.543257 + ,0.534953,0.541811,0.525880,0.548867,0.522465,0.543257,0.530378,0.537096,0.522465,0.543257,0.525880,0.548867,0.534953,0.541811 + ,0.530378,0.537096,0.542233,0.532922,0.534953,0.541811,0.530378,0.537096,0.536726,0.529329,0.530378,0.537096,0.534953,0.541811 + ,0.542233,0.532922,0.536726,0.529329,0.547367,0.522617,0.542233,0.532922,0.536726,0.529329,0.541200,0.520340,0.536726,0.529329 + ,0.542233,0.532922,0.547367,0.522617,0.541200,0.520340,0.550109,0.511438,0.547367,0.522617,0.541200,0.520340,0.543580,0.510581 + ,0.541200,0.520340,0.547367,0.522617,0.550109,0.511438,0.543580,0.510581,0.550299,0.499904,0.550109,0.511438,0.543580,0.510581 + ,0.543727,0.500523,0.543580,0.510581,0.550109,0.511438,0.550299,0.499904,0.543727,0.500523,0.547877,0.488589,0.550299,0.499904 + ,0.543727,0.500523,0.541615,0.490675,0.543727,0.500523,0.550299,0.499904,0.547877,0.488589,0.541615,0.490675,0.543006,0.478134 + ,0.547877,0.488589,0.541615,0.490675,0.537365,0.481556,0.541615,0.490675,0.547877,0.488589,0.543006,0.478134,0.537365,0.481556 + ,0.535932,0.469025,0.543006,0.478134,0.537365,0.481556,0.531191,0.473611,0.537365,0.481556,0.543006,0.478134,0.535932,0.469025 + ,0.531191,0.473611,0.526995,0.461686,0.535932,0.469025,0.531191,0.473611,0.523392,0.467228,0.531191,0.473611,0.535932,0.469025 + ,0.526995,0.461686,0.523392,0.467228,0.516632,0.456544,0.526995,0.461686,0.523392,0.467228,0.514359,0.462750,0.523392,0.467228 + ,0.526995,0.461686,0.516632,0.456544,0.514359,0.462750,0.505391,0.453844,0.516632,0.456544,0.514359,0.462750,0.504554,0.460396 + ,0.514359,0.462750,0.516632,0.456544,0.505391,0.453844,0.504554,0.460396,0.493816,0.453693,0.505391,0.453844,0.504554,0.460396 + ,0.494459,0.460276,0.504554,0.460396,0.505391,0.453844,0.493816,0.453693,0.494459,0.460276,0.482477,0.456133,0.493816,0.453693 + ,0.494459,0.460276,0.484583,0.462412,0.494459,0.460276,0.493816,0.453693,0.482477,0.456133,0.484583,0.462412,0.471986,0.461054 + ,0.482477,0.456133,0.484583,0.462412,0.475438,0.466706,0.484583,0.462412,0.482477,0.456133,0.471986,0.461054,0.475438,0.466706 + ,0.461138,0.480765,0.467485,0.472933,0.498997,0.505014,0.498997,0.505014,0.467485,0.472933,0.461138,0.480765,0.456704,0.489812 + ,0.461138,0.480765,0.498997,0.505014,0.498997,0.505014,0.461138,0.480765,0.456704,0.489812,0.454402,0.499600,0.456704,0.489812 + ,0.498997,0.505014,0.498997,0.505014,0.456704,0.489812,0.454402,0.499600,0.454335,0.509648,0.454402,0.499600,0.498997,0.505014 + ,0.498997,0.505014,0.454402,0.499600,0.454335,0.509648,0.456501,0.519459,0.454335,0.509648,0.498997,0.505014,0.498997,0.505014 + ,0.454335,0.509648,0.456501,0.519459,0.460788,0.528543,0.456501,0.519459,0.498997,0.505014,0.498997,0.505014,0.456501,0.519459 + ,0.460788,0.528543,0.466982,0.536451,0.460788,0.528543,0.498997,0.505014,0.498997,0.505014,0.460788,0.528543,0.466982,0.536451 + ,0.474781,0.542785,0.466982,0.536451,0.498997,0.505014,0.498997,0.505014,0.466982,0.536451,0.474781,0.542785,0.483796,0.547227 + ,0.474781,0.542785,0.498997,0.505014,0.498997,0.505014,0.474781,0.542785,0.483796,0.547227,0.493555,0.549550,0.483796,0.547227 + ,0.498997,0.505014,0.498997,0.505014,0.483796,0.547227,0.493555,0.549550,0.503583,0.549645,0.493555,0.549550,0.498997,0.505014 + ,0.498997,0.505014,0.493555,0.549550,0.503583,0.549645,0.513383,0.547512,0.503583,0.549645,0.498997,0.505014,0.498997,0.505014 + ,0.503583,0.549645,0.513383,0.547512,0.522465,0.543257,0.513383,0.547512,0.498997,0.505014,0.498997,0.505014,0.513383,0.547512 + ,0.522465,0.543257,0.530378,0.537096,0.522465,0.543257,0.498997,0.505014,0.498997,0.505014,0.522465,0.543257,0.530378,0.537096 + ,0.536726,0.529329,0.530378,0.537096,0.498997,0.505014,0.498997,0.505014,0.530378,0.537096,0.536726,0.529329,0.541200,0.520340 + ,0.536726,0.529329,0.498997,0.505014,0.498997,0.505014,0.536726,0.529329,0.541200,0.520340,0.543580,0.510581,0.541200,0.520340 + ,0.498997,0.505014,0.498997,0.505014,0.541200,0.520340,0.543580,0.510581,0.543727,0.500523,0.543580,0.510581,0.498997,0.505014 + ,0.498997,0.505014,0.543580,0.510581,0.543727,0.500523,0.541615,0.490675,0.543727,0.500523,0.498997,0.505014,0.498997,0.505014 + ,0.543727,0.500523,0.541615,0.490675,0.537365,0.481556,0.541615,0.490675,0.498997,0.505014,0.498997,0.505014,0.541615,0.490675 + ,0.537365,0.481556,0.531191,0.473611,0.537365,0.481556,0.498997,0.505014,0.498997,0.505014,0.537365,0.481556,0.531191,0.473611 + ,0.523392,0.467228,0.531191,0.473611,0.498997,0.505014,0.498997,0.505014,0.531191,0.473611,0.523392,0.467228,0.514359,0.462750 + ,0.523392,0.467228,0.498997,0.505014,0.498997,0.505014,0.523392,0.467228,0.514359,0.462750,0.504554,0.460396,0.514359,0.462750 + ,0.498997,0.505014,0.498997,0.505014,0.514359,0.462750,0.504554,0.460396,0.494459,0.460276,0.504554,0.460396,0.498997,0.505014 + ,0.498997,0.505014,0.504554,0.460396,0.494459,0.460276,0.484583,0.462412,0.494459,0.460276,0.498997,0.505014,0.498997,0.505014 + ,0.494459,0.460276,0.484583,0.462412,0.475438,0.466706,0.484583,0.462412,0.498997,0.505014,0.498997,0.505014,0.484583,0.462412 + ,0.475438,0.466706,0.467485,0.472933,0.475438,0.466706,0.498997,0.505014,0.498997,0.505014,0.475438,0.466706,0.467485,0.472933 + ,0.095477,0.961773,0.100038,0.934534,0.090702,0.931847,0.080347,0.957720,0.081951,0.927066,0.066515,0.950625,0.080347,0.957720 + ,0.090702,0.931847,0.073897,0.920931,0.054384,0.940895,0.066515,0.950625,0.081951,0.927066,0.067386,0.913981,0.044623,0.928912 + ,0.054384,0.940895,0.073897,0.920931,0.062824,0.906040,0.037885,0.915277,0.044623,0.928912,0.067386,0.913981,0.060360,0.897509 + ,0.034499,0.900731,0.037885,0.915277,0.062824,0.906040,0.060040,0.888863,0.034531,0.886082,0.034499,0.900731,0.060360,0.897509 + ,0.061810,0.880590,0.037788,0.872090,0.034531,0.886082,0.060040,0.888863,0.065159,0.873547,0.043992,0.859339,0.037788,0.872090 + ,0.061810,0.880590,0.070353,0.867534,0.052797,0.848243,0.043992,0.859339,0.065159,0.873547,0.077655,0.861829,0.064252,0.838773 + ,0.052797,0.848243,0.070353,0.867534,0.086197,0.857889,0.077958,0.831907,0.064252,0.838773,0.077655,0.861829,0.095565,0.855946 + ,0.093223,0.828290,0.077958,0.831907,0.086197,0.857889,0.105289,0.856155,0.109133,0.828291,0.093223,0.828290,0.095565,0.855946 + ,0.114856,0.858398,0.124769,0.831983,0.109133,0.828291,0.105289,0.856155,0.123725,0.862704,0.139127,0.839186,0.124769,0.831983 + ,0.114856,0.858398,0.131445,0.868848,0.151351,0.849395,0.139127,0.839186,0.123725,0.862704,0.137649,0.876507,0.160818,0.861867 + ,0.151351,0.849395,0.131445,0.868848,0.142032,0.885341,0.167188,0.875510,0.160818,0.861867,0.137649,0.876507,0.144557,0.893152 + ,0.170514,0.889829,0.167188,0.875510,0.142032,0.885341,0.144923,0.901134,0.170667,0.904229,0.170514,0.889829,0.144557,0.893152 + ,0.143333,0.909553,0.167686,0.918456,0.170667,0.904229,0.144923,0.901134,0.139687,0.917432,0.161493,0.931826,0.167686,0.918456 + ,0.143333,0.909553,0.134163,0.924299,0.152232,0.943579,0.161493,0.931826,0.139687,0.917432,0.127038,0.929736,0.140300,0.952969 + ,0.152232,0.943579,0.134163,0.924299,0.118679,0.933401,0.126320,0.959370,0.140300,0.952969,0.127038,0.929736,0.109522,0.935045 + ,0.111087,0.962359,0.126320,0.959370,0.118679,0.933401,0.100038,0.934534,0.095477,0.961773,0.111087,0.962359,0.109522,0.935045 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 + ,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109 + ,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164 + ,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219 + ,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274 + ,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329 + ,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,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,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,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,540,541,542,543,544,545,546,547,548,549 + ,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,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,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,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769 + ,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824 + ,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879 + ,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934 + ,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989 + ,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044 + ,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099 + ,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154 + ,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209 + ,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264 + ,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319 + ,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374 + ,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429 + ,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484 + ,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539 + ,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594 + ,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649 + ,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704 + ,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759 + ,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814 + ,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869 + ,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924 + ,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979 + ,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034 + ,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089 + ,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144 + ,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199 + ,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254 + ,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309 + ,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364 + ,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419 + ,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474 + ,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529 + ,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584 + ,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639 + ,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694 + ,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: "Model::Producer Perspective", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,71.299999999999997,287.500000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",10.000000 + Property: "FarPlane", "double", "",4000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",0 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,71.300000,287.500000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Top", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Bottom", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,-4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,-4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Front", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Back", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,-4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,-4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Right", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Left", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: -4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Material: "Material::None__SplitMetalBall_png", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Phong" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",0.5000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",1.0000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "SpecularFactor", "double", "",0.2000 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",0.8,0.8,0.8 + Property: "Shininess", "double", "",20.0 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Video: "Video::SplitMetalBall_png", "Clip" { + Type: "Clip" + Properties60: { + Property: "FrameRate", "double", "",0 + Property: "LastFrame", "int", "",0 + Property: "Width", "int", "",0 + Property: "Height", "int", "",0 + Property: "Path", "charptr", "", "SplitMetalBall.png" + Property: "StartFrame", "int", "",0 + Property: "StopFrame", "int", "",0 + Property: "PlaySpeed", "double", "",1 + Property: "Offset", "KTime", "",0 + Property: "InterlaceMode", "enum", "",0 + Property: "FreeRunning", "bool", "",0 + Property: "Loop", "bool", "",0 + Property: "AccessMode", "enum", "",0 + } + UseMipMap: 0 + Filename: "SplitMetalBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\SplitMetalBall.png" + } + Texture: "Texture::SplitMetalBall_png", "TextureVideoClip" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::SplitMetalBall_png" + Properties60: { + Property: "Translation", "Vector", "A+",0,0,0 + Property: "Rotation", "Vector", "A+",0,0,0 + Property: "Scaling", "Vector", "A+",1,1,1 + Property: "Texture alpha", "Number", "A+",0 + Property: "TextureTypeUse", "enum", "",0 + Property: "CurrentTextureBlendMode", "enum", "",1 + Property: "UseMaterial", "bool", "",0 + Property: "UseMipMap", "bool", "",0 + Property: "CurrentMappingType", "enum", "",0 + Property: "UVSwap", "bool", "",0 + Property: "WrapModeU", "enum", "",0 + Property: "WrapModeV", "enum", "",0 + Property: "TextureRotationPivot", "Vector3D", "",0,0,0 + Property: "TextureScalingPivot", "Vector3D", "",0,0,0 + Property: "VideoProperty", "object", "" + } + Media: "Video::SplitMetalBall_png" + FileName: "SplitMetalBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\SplitMetalBall.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 2 + PoseNode: { + Node: "Model::blend_root" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::SplitMetalBall" + Matrix: 0.000000037748951,-0.500000000000000,0.000000021855694,0.000000000000000,-0.500000000000000,-0.000000037748951,-0.000000037748951,0.000000000000000,0.000000037748951,-0.000000021855691,-0.500000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",100 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::blend_root", "Null" { + } + Model: "Model::SplitMetalBall", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::None__SplitMetalBall_png", "" { + } + Texture: "Texture::SplitMetalBall_png", "TextureVideoClip" { + } + Video: "Video::SplitMetalBall_png", "Clip" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::blend_root", "Model::Scene" + Connect: "OO", "Model::SplitMetalBall", "Model::blend_root" + Connect: "OO", "Material::None__SplitMetalBall_png", "Model::SplitMetalBall" + Connect: "OO", "Texture::SplitMetalBall_png", "Model::SplitMetalBall" + Connect: "OO", "Video::SplitMetalBall_png", "Texture::SplitMetalBall_png" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" + Take: "Default Take" { + FileName: "Default_Take.tak" + LocalTime: 0,479181389250 + ReferenceTime: 0,479181389250 + + ;Models animation + ;---------------------------------------------------- + Model: "Model::SplitMetalBall" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -179.999991348319355 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-179.999991348319355,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000002504478065 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000002504478065,L + Color: 0,1,0 + } + Channel: "Z" { + Default: -89.999995674159678 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-89.999995674159678,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + } +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FlogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.1,0.1,0.1,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 479181389250 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/Assets/resources/Ball Pack/Models/SplitMetalBall.fbx.meta b/Assets/resources/Ball Pack/Models/SplitMetalBall.fbx.meta new file mode 100644 index 00000000..febacb19 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/SplitMetalBall.fbx.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 5ae1b6d4c894f9c449d33837a633a8ec +ModelImporter: + serializedVersion: 20200 + internalIDToNameTable: + - first: + 43: 4300000 + second: SplitMetalBall + - first: + 1001: 100100000 + second: DataTemplate __Singleton__ + - first: + 74: 1989289236423521904 + second: Default Take + externalObjects: {} + materials: + materialImportMode: 1 + materialName: 3 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 0 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + fileIdsGeneration: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + meshOptimizationFlags: -1 + indexFormat: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 0 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 1 + tangentImportMode: 4 + normalCalculationMode: 0 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 1 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Textures.meta b/Assets/resources/Ball Pack/Models/Textures.meta new file mode 100644 index 00000000..13cd211b --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b1476c38cf66b1f40a775e52bf32396d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Textures/BombBall.png b/Assets/resources/Ball Pack/Models/Textures/BombBall.png new file mode 100644 index 00000000..e489cae1 Binary files /dev/null and b/Assets/resources/Ball Pack/Models/Textures/BombBall.png differ diff --git a/Assets/resources/Ball Pack/Models/Textures/BombBall.png.meta b/Assets/resources/Ball Pack/Models/Textures/BombBall.png.meta new file mode 100644 index 00000000..81e48a51 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Textures/BombBall.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: 6baf704df9aa55046a9553124c407683 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Textures/EyeBall.png b/Assets/resources/Ball Pack/Models/Textures/EyeBall.png new file mode 100644 index 00000000..afe10f90 Binary files /dev/null and b/Assets/resources/Ball Pack/Models/Textures/EyeBall.png differ diff --git a/Assets/resources/Ball Pack/Models/Textures/EyeBall.png.meta b/Assets/resources/Ball Pack/Models/Textures/EyeBall.png.meta new file mode 100644 index 00000000..ec055ca9 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Textures/EyeBall.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: cd0ae13249cbc9c4dab2043eca83ae07 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Textures/SpikeBall.png b/Assets/resources/Ball Pack/Models/Textures/SpikeBall.png new file mode 100644 index 00000000..07b514c4 Binary files /dev/null and b/Assets/resources/Ball Pack/Models/Textures/SpikeBall.png differ diff --git a/Assets/resources/Ball Pack/Models/Textures/SpikeBall.png.meta b/Assets/resources/Ball Pack/Models/Textures/SpikeBall.png.meta new file mode 100644 index 00000000..1a54a490 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Textures/SpikeBall.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: a7620eecb715ccf409f41bda9e06f7cc +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Textures/SplitMetalBall.png b/Assets/resources/Ball Pack/Models/Textures/SplitMetalBall.png new file mode 100644 index 00000000..b9dbb219 Binary files /dev/null and b/Assets/resources/Ball Pack/Models/Textures/SplitMetalBall.png differ diff --git a/Assets/resources/Ball Pack/Models/Textures/SplitMetalBall.png.meta b/Assets/resources/Ball Pack/Models/Textures/SplitMetalBall.png.meta new file mode 100644 index 00000000..3900101f --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Textures/SplitMetalBall.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: 01b2c033f59bc0f40939edd7beba09b8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Textures/SplitMetalBallEmissive.png b/Assets/resources/Ball Pack/Models/Textures/SplitMetalBallEmissive.png new file mode 100644 index 00000000..9636091a Binary files /dev/null and b/Assets/resources/Ball Pack/Models/Textures/SplitMetalBallEmissive.png differ diff --git a/Assets/resources/Ball Pack/Models/Textures/SplitMetalBallEmissive.png.meta b/Assets/resources/Ball Pack/Models/Textures/SplitMetalBallEmissive.png.meta new file mode 100644 index 00000000..41cfea80 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Textures/SplitMetalBallEmissive.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: 8f3b327bfc1af974283b0cd9941ef840 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Textures/WheelBall.png b/Assets/resources/Ball Pack/Models/Textures/WheelBall.png new file mode 100644 index 00000000..d159a37c Binary files /dev/null and b/Assets/resources/Ball Pack/Models/Textures/WheelBall.png differ diff --git a/Assets/resources/Ball Pack/Models/Textures/WheelBall.png.meta b/Assets/resources/Ball Pack/Models/Textures/WheelBall.png.meta new file mode 100644 index 00000000..2740f36f --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Textures/WheelBall.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: d1e116197624a1e49b72f535c7c8037b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Textures/WheelBallEmissive.png b/Assets/resources/Ball Pack/Models/Textures/WheelBallEmissive.png new file mode 100644 index 00000000..f75584a6 Binary files /dev/null and b/Assets/resources/Ball Pack/Models/Textures/WheelBallEmissive.png differ diff --git a/Assets/resources/Ball Pack/Models/Textures/WheelBallEmissive.png.meta b/Assets/resources/Ball Pack/Models/Textures/WheelBallEmissive.png.meta new file mode 100644 index 00000000..c30b8e04 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Textures/WheelBallEmissive.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: ac57b13941dd0884ca6b37a1b44faa90 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/Textures/WoodenBall.png b/Assets/resources/Ball Pack/Models/Textures/WoodenBall.png new file mode 100644 index 00000000..bdd47be3 Binary files /dev/null and b/Assets/resources/Ball Pack/Models/Textures/WoodenBall.png differ diff --git a/Assets/resources/Ball Pack/Models/Textures/WoodenBall.png.meta b/Assets/resources/Ball Pack/Models/Textures/WoodenBall.png.meta new file mode 100644 index 00000000..c5d71bd1 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/Textures/WoodenBall.png.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: 650fa06661e92af4b956f6d247e8acc9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 1024 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 1 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/WheelBall.fbx b/Assets/resources/Ball Pack/Models/WheelBall.fbx new file mode 100644 index 00000000..fe421fe7 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/WheelBall.fbx @@ -0,0 +1,2001 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2011 + Month: 03 + Day: 16 + Hour: 12 + Minute: 46 + Second: 15 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2011-03-16 12:46:15:000" +Creator: "Blender version 2.56 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 14 + ObjectType: "Model" { + Count: 10 + } + ObjectType: "Geometry" { + Count: 1 + } + ObjectType: "Material" { + Count: 1 + } + ObjectType: "Texture" { + Count: 1 + } + ObjectType: "Video" { + Count: 1 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::Camera Switcher", "CameraSwitcher" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Camera Index", "Integer", "A+",100 + } + MultiLayer: 0 + MultiTake: 1 + Hidden: "True" + Shading: W + Culling: "CullingOff" + Version: 101 + Name: "Model::Camera Switcher" + CameraId: 0 + CameraName: 100 + CameraIndexName: + } + Model: "Model::blend_root", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::WheelBall", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-179.999991348319355,0.000004325711512,89.999988843970513 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.500000000000000,0.500000000000000,0.631377041339874 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.433884,0.000000,0.500000,0.433884,0.000000,-0.500000,0.623590,0.000000,0.623490,0.623590,0.000000,-0.623490,0.886173,0.000000,0.342908,0.886173,0.000000,-0.342908,0.974928,0.000000,0.000000 + ,0.941708,0.252330,0.000000,0.855977,0.229358,0.342908,0.855977,0.229358,-0.342908,0.602342,0.161397,0.623490,0.602342,0.161397,-0.623490,0.419100,0.112297,0.500000,0.419100,0.112297,-0.500000 + ,0.375754,0.216942,0.500000,0.375754,0.216942,-0.500000,0.540045,0.311795,0.623490,0.540045,0.311795,-0.623490,0.767448,0.443086,0.342908,0.767448,0.443086,-0.342908,0.844312,0.487464,0.000000 + ,0.689378,0.689378,0.000000,0.626619,0.626619,0.342908,0.626619,0.626619,-0.342908,0.440945,0.440945,0.623490,0.440945,0.440945,-0.623490,0.306802,0.306802,0.500000,0.306802,0.306802,-0.500000 + ,0.216942,0.375754,0.500000,0.216942,0.375754,-0.500000,0.311795,0.540045,0.623490,0.311795,0.540045,-0.623490,0.443086,0.767448,0.342908,0.443086,0.767448,-0.342908,0.487464,0.844312,0.000000 + ,0.252330,0.941708,0.000000,0.229358,0.855977,0.342908,0.229358,0.855977,-0.342908,0.161397,0.602342,0.623490,0.161397,0.602342,-0.623490,0.112297,0.419100,0.500000,0.112297,0.419100,-0.500000 + ,-0.000000,0.433884,0.500000,-0.000000,0.433884,-0.500000,-0.000000,0.623590,0.623490,-0.000000,0.623590,-0.623490,-0.000000,0.886173,0.342908,-0.000000,0.886173,-0.342908,-0.000000,0.974928,0.000000 + ,-0.252330,0.941708,0.000000,-0.229359,0.855977,0.342908,-0.229359,0.855977,-0.342908,-0.161397,0.602341,0.623490,-0.161397,0.602341,-0.623490,-0.112297,0.419099,0.500000,-0.112297,0.419099,-0.500000 + ,-0.216942,0.375754,0.500000,-0.216942,0.375754,-0.500000,-0.311795,0.540045,0.623490,-0.311795,0.540045,-0.623490,-0.443087,0.767448,0.342908,-0.443087,0.767448,-0.342908,-0.487464,0.844312,0.000000 + ,-0.689378,0.689378,0.000000,-0.626619,0.626619,0.342908,-0.626619,0.626619,-0.342908,-0.440945,0.440944,0.623490,-0.440945,0.440944,-0.623490,-0.306802,0.306802,0.500000,-0.306802,0.306802,-0.500000 + ,-0.375754,0.216942,0.500000,-0.375754,0.216942,-0.500000,-0.540045,0.311795,0.623490,-0.540045,0.311795,-0.623490,-0.767448,0.443086,0.342908,-0.767448,0.443086,-0.342908,-0.844313,0.487464,0.000000 + ,-0.941708,0.252330,0.000000,-0.855977,0.229358,0.342908,-0.855977,0.229358,-0.342908,-0.602342,0.161397,0.623490,-0.602342,0.161397,-0.623490,-0.419100,0.112297,0.500000,-0.419100,0.112297,-0.500000 + ,0.000000,-0.000000,0.500000,0.000000,-0.000000,-0.500000,-0.433884,-0.000000,0.500000,-0.433884,-0.000000,-0.500000,-0.623590,-0.000000,0.623490,-0.623590,-0.000000,-0.623490,-0.886173,-0.000000,0.342908 + ,-0.886173,-0.000000,-0.342908,-0.974928,-0.000000,0.000000,-0.941708,-0.252330,0.000000,-0.855977,-0.229359,0.342908,-0.855977,-0.229359,-0.342908,-0.602341,-0.161397,0.623490,-0.602341,-0.161397,-0.623490 + ,-0.419099,-0.112298,0.500000,-0.419099,-0.112298,-0.500000,-0.375754,-0.216942,0.500000,-0.375754,-0.216942,-0.500000,-0.540044,-0.311795,0.623490,-0.540044,-0.311795,-0.623490,-0.767448,-0.443087,0.342908 + ,-0.767448,-0.443087,-0.342908,-0.844312,-0.487464,0.000000,-0.689378,-0.689379,0.000000,-0.626619,-0.626619,0.342908,-0.626619,-0.626619,-0.342908,-0.440944,-0.440945,0.623490,-0.440944,-0.440945,-0.623490 + ,-0.306802,-0.306802,0.500000,-0.306802,-0.306802,-0.500000,-0.216942,-0.375754,0.500000,-0.216942,-0.375754,-0.500000,-0.311794,-0.540045,0.623490,-0.311794,-0.540045,-0.623490,-0.443086,-0.767449,0.342908 + ,-0.443086,-0.767449,-0.342908,-0.487463,-0.844313,0.000000,-0.252329,-0.941708,0.000000,-0.229358,-0.855977,0.342908,-0.229358,-0.855977,-0.342908,-0.161396,-0.602342,0.623490,-0.161396,-0.602342,-0.623490 + ,-0.112297,-0.419100,0.500000,-0.112297,-0.419100,-0.500000,0.000000,-0.433884,0.500000,0.000000,-0.433884,-0.500000,0.000000,-0.623590,0.623490,0.000000,-0.623590,-0.623490,0.000001,-0.886173,0.342908 + ,0.000001,-0.886173,-0.342908,0.000001,-0.974928,0.000000,0.252331,-0.941708,0.000000,0.229359,-0.855977,0.342908,0.229359,-0.855977,-0.342908,0.161397,-0.602341,0.623490,0.161397,-0.602341,-0.623490 + ,0.112298,-0.419099,0.500000,0.112298,-0.419099,-0.500000,0.216942,-0.375754,0.500000,0.216942,-0.375754,-0.500000,0.311795,-0.540044,0.623490,0.311795,-0.540044,-0.623490,0.443087,-0.767448,0.342908 + ,0.443087,-0.767448,-0.342908,0.487465,-0.844312,0.000000,0.689379,-0.689378,0.000000,0.626619,-0.626618,0.342908,0.626619,-0.626618,-0.342908,0.440945,-0.440944,0.623490,0.440945,-0.440944,-0.623490 + ,0.306802,-0.306802,0.500000,0.306802,-0.306802,-0.500000,0.375754,-0.216942,0.500000,0.375754,-0.216942,-0.500000,0.540045,-0.311794,0.623490,0.540045,-0.311794,-0.623490,0.767449,-0.443086,0.342908 + ,0.767449,-0.443086,-0.342908,0.844313,-0.487463,0.000000,0.941708,-0.252329,0.000000,0.855978,-0.229358,0.342908,0.855978,-0.229358,-0.342908,0.602342,-0.161396,0.623490,0.602342,-0.161396,-0.623490 + ,0.419100,-0.112297,0.500000,0.419100,-0.112297,-0.500000 + PolygonVertexIndex: 6,7,8,-5,9,7,6,-6,4,8,10,-3,11,9,5,-4,12,0,2,-11,3,1,13,-12,0,12,-85,85,13,-2,12,14,-85,85,15,-14,10,16,14,-13,15,17,11,-14,8,18,16,-11 + ,17,19,9,-12,7,20,18,-9,19,20,7,-10,20,21,22,-19,23,21,20,-20,18,22,24,-17,25,23,19,-18,16,24,26,-15,27,25,17,-16,14,26,-85,85,27,-16,26,28,-85,85,29,-28 + ,24,30,28,-27,29,31,25,-28,22,32,30,-25,31,33,23,-26,21,34,32,-23,33,34,21,-24,34,35,36,-33,37,35,34,-34,32,36,38,-31,39,37,33,-32,30,38,40,-29,41,39,31,-30,28,40,-85 + ,85,41,-30,40,42,-85,85,43,-42,38,44,42,-41,43,45,39,-42,36,46,44,-39,45,47,37,-40,35,48,46,-37,47,48,35,-38,48,49,50,-47,51,49,48,-48,46,50,52,-45,53,51,47,-46 + ,44,52,54,-43,55,53,45,-44,42,54,-85,85,55,-44,54,56,-85,85,57,-56,52,58,56,-55,57,59,53,-56,50,60,58,-53,59,61,51,-54,49,62,60,-51,61,62,49,-52,62,63,64,-61 + ,65,63,62,-62,60,64,66,-59,67,65,61,-60,58,66,68,-57,69,67,59,-58,56,68,-85,85,69,-58,68,70,-85,85,71,-70,66,72,70,-69,71,73,67,-70,64,74,72,-67,73,75,65,-68 + ,63,76,74,-65,75,76,63,-66,76,77,78,-75,79,77,76,-76,74,78,80,-73,81,79,75,-74,72,80,82,-71,83,81,73,-72,70,82,-85,85,83,-72,82,86,-85,85,87,-84,80,88,86,-83 + ,87,89,81,-84,78,90,88,-81,89,91,79,-82,77,92,90,-79,91,92,77,-80,92,93,94,-91,95,93,92,-92,90,94,96,-89,97,95,91,-90,88,96,98,-87,99,97,89,-88,86,98,-85,85,99,-88 + ,98,100,-85,85,101,-100,96,102,100,-99,101,103,97,-100,94,104,102,-97,103,105,95,-98,93,106,104,-95,105,106,93,-96,106,107,108,-105,109,107,106,-106,104,108,110,-103,111,109,105,-104,102,110,112,-101 + ,113,111,103,-102,100,112,-85,85,113,-102,112,114,-85,85,115,-114,110,116,114,-113,115,117,111,-114,108,118,116,-111,117,119,109,-112,107,120,118,-109,119,120,107,-110,120,121,122,-119,123,121,120,-120 + ,118,122,124,-117,125,123,119,-118,116,124,126,-115,127,125,117,-116,114,126,-85,85,127,-116,126,128,-85,85,129,-128,124,130,128,-127,129,131,125,-128,122,132,130,-125,131,133,123,-126,121,134,132,-123 + ,133,134,121,-124,134,135,136,-133,137,135,134,-134,132,136,138,-131,139,137,133,-132,130,138,140,-129,141,139,131,-130,128,140,-85,85,141,-130,140,142,-85,85,143,-142,138,144,142,-141,143,145,139,-142 + ,136,146,144,-139,145,147,137,-140,135,148,146,-137,147,148,135,-138,148,149,150,-147,151,149,148,-148,146,150,152,-145,153,151,147,-146,144,152,154,-143,155,153,145,-144,142,154,-85,85,155,-144,154,156,-85 + ,85,157,-156,152,158,156,-155,157,159,153,-156,150,160,158,-153,159,161,151,-154,149,162,160,-151,161,162,149,-152,162,163,164,-161,165,163,162,-162,160,164,166,-159,167,165,161,-160,158,166,168,-157,169,167,159,-158 + ,156,168,-85,85,169,-158,168,0,-85,85,1,-170,0,168,166,-3,167,169,1,-4,164,4,2,-167,3,5,165,-168,163,6,4,-165,5,6,163,-166 + Edges: 0,2,1,3,2,4,3,5,4,6,5,6,6,7,4,8,5,9,7,8,7,9,2,10,3,11 + ,8,10,9,11,0,12,1,13,10,12,11,13,12,14,13,15,14,16,15,17,10,16,11,17,16,18 + ,17,19,8,18,9,19,18,20,19,20,7,20,20,21,18,22,19,23,21,22,21,23,16,24,17,25 + ,22,24,23,25,14,26,15,27,24,26,25,27,26,28,27,29,28,30,29,31,24,30,25,31,30,32 + ,31,33,22,32,23,33,32,34,33,34,21,34,34,35,32,36,33,37,35,36,35,37,30,38,31,39 + ,36,38,37,39,28,40,29,41,38,40,39,41,40,42,41,43,42,44,43,45,38,44,39,45,44,46 + ,45,47,36,46,37,47,46,48,47,48,35,48,48,49,46,50,47,51,49,50,49,51,44,52,45,53 + ,50,52,51,53,42,54,43,55,52,54,53,55,54,56,55,57,56,58,57,59,52,58,53,59,58,60 + ,59,61,50,60,51,61,60,62,61,62,49,62,62,63,60,64,61,65,63,64,63,65,58,66,59,67 + ,64,66,65,67,56,68,57,69,66,68,67,69,68,70,69,71,70,72,71,73,66,72,67,73,72,74 + ,73,75,64,74,65,75,74,76,75,76,63,76,76,77,74,78,75,79,77,78,77,79,72,80,73,81 + ,78,80,79,81,70,82,71,83,80,82,81,83,84,86,85,87,82,86,83,87,86,88,87,89,80,88 + ,81,89,88,90,89,91,78,90,79,91,90,92,91,92,77,92,92,93,90,94,91,95,93,94,93,95 + ,88,96,89,97,94,96,95,97,86,98,87,99,96,98,97,99,98,100,99,101,100,102,101,103,96,102 + ,97,103,102,104,103,105,94,104,95,105,104,106,105,106,93,106,106,107,104,108,105,109,107,108,107,109 + ,102,110,103,111,108,110,109,111,100,112,101,113,110,112,111,113,112,114,113,115,114,116,115,117,110,116 + ,111,117,116,118,117,119,108,118,109,119,118,120,119,120,107,120,120,121,118,122,119,123,121,122,121,123 + ,116,124,117,125,122,124,123,125,114,126,115,127,124,126,125,127,126,128,127,129,128,130,129,131,124,130 + ,125,131,130,132,131,133,122,132,123,133,132,134,133,134,121,134,134,135,132,136,133,137,135,136,135,137 + ,130,138,131,139,136,138,137,139,128,140,129,141,138,140,139,141,140,142,141,143,142,144,143,145,138,144 + ,139,145,144,146,145,147,136,146,137,147,146,148,147,148,135,148,148,149,146,150,147,151,149,150,149,151 + ,144,152,145,153,150,152,151,153,142,154,143,155,152,154,153,155,154,156,155,157,156,158,157,159,152,158 + ,153,159,158,160,159,161,150,160,151,161,160,162,161,162,149,162,162,163,160,164,161,165,163,164,163,165 + ,158,166,159,167,164,166,165,167,156,168,157,169,166,168,167,169,6,163,4,164,5,165,2,166,3,167 + ,0,168,1,169,0,84,1,85,84,168,85,169,84,156,85,157,84,154,85,155,84,142,85,143,84,140 + ,85,141,84,128,85,129,84,126,85,127,84,114,85,115,84,112,85,113,84,100,85,101,84,98,85,99 + ,82,84,83,85,70,84,71,85,68,84,69,85,56,84,57,85,54,84,55,85,42,84,43,85,40,84 + ,41,85,28,84,29,85,26,84,27,85,14,84,15,85,12,84,13,85 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: -0.284157842397690,0.000000000000000,0.958769500255585,-0.284157842397690,0.000000000000000,-0.958769500255585 + ,0.119602039456367,0.000000000000000,0.992797613143921,0.119602039456367,0.000000000000000,-0.992797613143921 + ,0.876033842563629,0.000000000000000,0.482222974300385,0.876033842563629,0.000000000000000,-0.482222974300385 + ,1.000000000000000,0.000000000000000,0.000000000000000,0.965910851955414,0.258796960115433,0.000000000000000 + ,0.846186697483063,0.226722002029419,0.482222974300385,0.846186697483063,0.226722002029419,-0.482222974300385 + ,0.115512557327747,0.030945768579841,0.992797613143921,0.115512557327747,0.030945768579841,-0.992797613143921 + ,-0.274483472108841,-0.073519088327885,0.958769500255585,-0.274483472108841,-0.073519088327885,-0.958769500255585 + ,-0.246070742607117,-0.142063662409782,0.958769500255585,-0.246070742607117,-0.142063662409782,-0.958769500255585 + ,0.103549301624298,0.059785760939121,0.992797613143921,0.103549301624298,0.059785760939121,-0.992797613143921 + ,0.758659601211548,0.438001632690430,0.482222974300385,0.758659601211548,0.438001632690430,-0.482222974300385 + ,0.866023719310760,0.499984741210938,0.000000000000000,0.707083344459534,0.707083344459534,0.000000000000000 + ,0.619434177875519,0.619434177875519,0.482222974300385,0.619434177875519,0.619434177875519,-0.482222974300385 + ,0.084566786885262,0.084566786885262,0.992797613143921,0.084566786885262,0.084566786885262,-0.992797613143921 + ,-0.200933873653412,-0.200933873653412,0.958769500255585,-0.200933873653412,-0.200933873653412,-0.958769500255585 + ,-0.142063662409782,-0.246070742607117,0.958769500255585,-0.142063662409782,-0.246070742607117,-0.958769500255585 + ,0.059785760939121,0.103549301624298,0.992797613143921,0.059785760939121,0.103549301624298,-0.992797613143921 + ,0.438001632690430,0.758659601211548,0.482222974300385,0.438001632690430,0.758659601211548,-0.482222974300385 + ,0.499984741210938,0.866023719310760,0.000000000000000,0.258796960115433,0.965910851955414,0.000000000000000 + ,0.226722002029419,0.846186697483063,0.482222974300385,0.226722002029419,0.846186697483063,-0.482222974300385 + ,0.030945768579841,0.115512557327747,0.992797613143921,0.030945768579841,0.115512557327747,-0.992797613143921 + ,-0.073519088327885,-0.274483472108841,0.958769500255585,-0.073519088327885,-0.274483472108841,-0.958769500255585 + ,0.000000000000000,-0.284157842397690,0.958769500255585,0.000000000000000,-0.284157842397690,-0.958769500255585 + ,0.000000000000000,0.119602039456367,0.992797613143921,0.000000000000000,0.119602039456367,-0.992797613143921 + ,0.000000000000000,0.876033842563629,0.482222974300385,0.000000000000000,0.876033842563629,-0.482222974300385 + ,0.000000000000000,1.000000000000000,0.000000000000000,-0.258796960115433,0.965910851955414,0.000000000000000 + ,-0.226722002029419,0.846186697483063,0.482222974300385,-0.226722002029419,0.846186697483063,-0.482222974300385 + ,-0.030945768579841,0.115512557327747,0.992797613143921,-0.030945768579841,0.115512557327747,-0.992797613143921 + ,0.073519088327885,-0.274483472108841,0.958769500255585,0.073519088327885,-0.274483472108841,-0.958769500255585 + ,0.142063662409782,-0.246070742607117,0.958769500255585,0.142063662409782,-0.246070742607117,-0.958769500255585 + ,-0.059785760939121,0.103549301624298,0.992797613143921,-0.059785760939121,0.103549301624298,-0.992797613143921 + ,-0.438001632690430,0.758659601211548,0.482222974300385,-0.438001632690430,0.758659601211548,-0.482222974300385 + ,-0.499984741210938,0.866023719310760,0.000000000000000,-0.707083344459534,0.707083344459534,0.000000000000000 + ,-0.619434177875519,0.619434177875519,0.482222974300385,-0.619434177875519,0.619434177875519,-0.482222974300385 + ,-0.084566786885262,0.084566786885262,0.992797613143921,-0.084566786885262,0.084566786885262,-0.992797613143921 + ,0.200933873653412,-0.200933873653412,0.958769500255585,0.200933873653412,-0.200933873653412,-0.958769500255585 + ,0.246070742607117,-0.142063662409782,0.958769500255585,0.246070742607117,-0.142063662409782,-0.958769500255585 + ,-0.103549301624298,0.059785760939121,0.992797613143921,-0.103549301624298,0.059785760939121,-0.992797613143921 + ,-0.758659601211548,0.438001632690430,0.482222974300385,-0.758659601211548,0.438001632690430,-0.482222974300385 + ,-0.866023719310760,0.499984741210938,0.000000000000000,-0.965910851955414,0.258796960115433,0.000000000000000 + ,-0.846186697483063,0.226722002029419,0.482222974300385,-0.846186697483063,0.226722002029419,-0.482222974300385 + ,-0.115512557327747,0.030945768579841,0.992797613143921,-0.115512557327747,0.030945768579841,-0.992797613143921 + ,0.274483472108841,-0.073519088327885,0.958769500255585,0.274483472108841,-0.073519088327885,-0.958769500255585 + ,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000 + ,0.284157842397690,0.000000000000000,0.958769500255585,0.284157842397690,0.000000000000000,-0.958769500255585 + ,-0.119602039456367,0.000000000000000,0.992797613143921,-0.119602039456367,0.000000000000000,-0.992797613143921 + ,-0.876033842563629,0.000000000000000,0.482222974300385,-0.876033842563629,0.000000000000000,-0.482222974300385 + ,-1.000000000000000,0.000000000000000,0.000000000000000,-0.965910851955414,-0.258796960115433,0.000000000000000 + ,-0.846186697483063,-0.226722002029419,0.482222974300385,-0.846186697483063,-0.226722002029419,-0.482222974300385 + ,-0.115512557327747,-0.030945768579841,0.992797613143921,-0.115512557327747,-0.030945768579841,-0.992797613143921 + ,0.274483472108841,0.073519088327885,0.958769500255585,0.274483472108841,0.073519088327885,-0.958769500255585 + ,0.246070742607117,0.142063662409782,0.958769500255585,0.246070742607117,0.142063662409782,-0.958769500255585 + ,-0.103549301624298,-0.059785760939121,0.992797613143921,-0.103549301624298,-0.059785760939121,-0.992797613143921 + ,-0.758659601211548,-0.438001632690430,0.482222974300385,-0.758659601211548,-0.438001632690430,-0.482222974300385 + ,-0.866023719310760,-0.499984741210938,0.000000000000000,-0.707083344459534,-0.707083344459534,0.000000000000000 + ,-0.619434177875519,-0.619434177875519,0.482222974300385,-0.619434177875519,-0.619434177875519,-0.482222974300385 + ,-0.084566786885262,-0.084566786885262,0.992797613143921,-0.084566786885262,-0.084566786885262,-0.992797613143921 + ,0.200933873653412,0.200933873653412,0.958769500255585,0.200933873653412,0.200933873653412,-0.958769500255585 + ,0.142063662409782,0.246070742607117,0.958769500255585,0.142063662409782,0.246070742607117,-0.958769500255585 + ,-0.059785760939121,-0.103549301624298,0.992797613143921,-0.059785760939121,-0.103549301624298,-0.992797613143921 + ,-0.438001632690430,-0.758659601211548,0.482222974300385,-0.438001632690430,-0.758659601211548,-0.482222974300385 + ,-0.499984741210938,-0.866023719310760,0.000000000000000,-0.258796960115433,-0.965910851955414,0.000000000000000 + ,-0.226722002029419,-0.846186697483063,0.482222974300385,-0.226722002029419,-0.846186697483063,-0.482222974300385 + ,-0.030945768579841,-0.115512557327747,0.992797613143921,-0.030945768579841,-0.115512557327747,-0.992797613143921 + ,0.073519088327885,0.274483472108841,0.958769500255585,0.073519088327885,0.274483472108841,-0.958769500255585 + ,0.000000000000000,0.284157842397690,0.958769500255585,0.000000000000000,0.284157842397690,-0.958769500255585 + ,0.000000000000000,-0.119602039456367,0.992797613143921,0.000000000000000,-0.119602039456367,-0.992797613143921 + ,0.000000000000000,-0.876033842563629,0.482222974300385,0.000000000000000,-0.876033842563629,-0.482222974300385 + ,0.000000000000000,-1.000000000000000,0.000000000000000,0.258796960115433,-0.965910851955414,0.000000000000000 + ,0.226722002029419,-0.846186697483063,0.482222974300385,0.226722002029419,-0.846186697483063,-0.482222974300385 + ,0.030945768579841,-0.115512557327747,0.992797613143921,0.030945768579841,-0.115512557327747,-0.992797613143921 + ,-0.073519088327885,0.274483472108841,0.958769500255585,-0.073519088327885,0.274483472108841,-0.958769500255585 + ,-0.142063662409782,0.246070742607117,0.958769500255585,-0.142063662409782,0.246070742607117,-0.958769500255585 + ,0.059785760939121,-0.103549301624298,0.992797613143921,0.059785760939121,-0.103549301624298,-0.992797613143921 + ,0.438001632690430,-0.758659601211548,0.482222974300385,0.438001632690430,-0.758659601211548,-0.482222974300385 + ,0.499984741210938,-0.866023719310760,0.000000000000000,0.707083344459534,-0.707083344459534,0.000000000000000 + ,0.619434177875519,-0.619434177875519,0.482222974300385,0.619434177875519,-0.619434177875519,-0.482222974300385 + ,0.084566786885262,-0.084566786885262,0.992797613143921,0.084566786885262,-0.084566786885262,-0.992797613143921 + ,-0.200933873653412,0.200933873653412,0.958769500255585,-0.200933873653412,0.200933873653412,-0.958769500255585 + ,-0.246070742607117,0.142063662409782,0.958769500255585,-0.246070742607117,0.142063662409782,-0.958769500255585 + ,0.103549301624298,-0.059785760939121,0.992797613143921,0.103549301624298,-0.059785760939121,-0.992797613143921 + ,0.758659601211548,-0.438001632690430,0.482222974300385,0.758659601211548,-0.438001632690430,-0.482222974300385 + ,0.866023719310760,-0.499984741210938,0.000000000000000,0.965910851955414,-0.258796960115433,0.000000000000000 + ,0.846186697483063,-0.226722002029419,0.482222974300385,0.846186697483063,-0.226722002029419,-0.482222974300385 + ,0.115512557327747,-0.030945768579841,0.992797613143921,0.115512557327747,-0.030945768579841,-0.992797613143921 + ,-0.274483472108841,0.073519088327885,0.958769500255585,-0.274483472108841,0.073519088327885,-0.958769500255585 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1 + ,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1 + ,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1 + ,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.360526,0.361660,0.439834,0.383357,0.404035,0.470707,0.350017,0.458389,0.404035,0.470707,0.439834,0.383357,0.360526,0.361660 + ,0.350017,0.458389,0.350017,0.458389,0.404035,0.470707,0.371091,0.552514,0.339607,0.544977,0.371091,0.552514,0.404035,0.470707 + ,0.350017,0.458389,0.339607,0.544977,0.866061,0.351743,0.885529,0.317987,0.958949,0.347932,0.929812,0.399580,0.958949,0.347932 + ,0.885529,0.317987,0.866061,0.351743,0.929812,0.399580,0.885529,0.317987,0.866061,0.351743,0.747103,0.261237,0.747103,0.261237 + ,0.866061,0.351743,0.885529,0.317987,0.866061,0.351743,0.838574,0.379389,0.747103,0.261237,0.747103,0.261237,0.838574,0.379389 + ,0.866061,0.351743,0.929812,0.399580,0.888119,0.442292,0.838574,0.379389,0.866061,0.351743,0.838574,0.379389,0.888119,0.442292 + ,0.929812,0.399580,0.866061,0.351743,0.404035,0.470707,0.452705,0.497050,0.399862,0.568200,0.371091,0.552514,0.399862,0.568200 + ,0.452705,0.497050,0.404035,0.470707,0.371091,0.552514,0.439834,0.383357,0.508752,0.423595,0.452705,0.497050,0.404035,0.470707 + ,0.452705,0.497050,0.508752,0.423595,0.439834,0.383357,0.404035,0.470707,0.508752,0.423595,0.564321,0.478674,0.493128,0.535343 + ,0.452705,0.497050,0.493128,0.535343,0.564321,0.478674,0.508752,0.423595,0.452705,0.497050,0.452705,0.497050,0.493128,0.535343 + ,0.423335,0.590954,0.399862,0.568200,0.423335,0.590954,0.493128,0.535343,0.452705,0.497050,0.399862,0.568200,0.888119,0.442292 + ,0.836481,0.472954,0.804840,0.398987,0.838574,0.379389,0.804840,0.398987,0.836481,0.472954,0.888119,0.442292,0.838574,0.379389 + ,0.838574,0.379389,0.804840,0.398987,0.747103,0.261237,0.747103,0.261237,0.804840,0.398987,0.838574,0.379389,0.804840,0.398987 + ,0.767134,0.409073,0.747103,0.261237,0.747103,0.261237,0.767134,0.409073,0.804840,0.398987,0.836481,0.472954,0.778216,0.489213 + ,0.767134,0.409073,0.804840,0.398987,0.767134,0.409073,0.778216,0.489213,0.836481,0.472954,0.804840,0.398987,0.493128,0.535343 + ,0.520297,0.584151,0.439762,0.618826,0.423335,0.590954,0.439762,0.618826,0.520297,0.584151,0.493128,0.535343,0.423335,0.590954 + ,0.564321,0.478674,0.609307,0.546243,0.520297,0.584151,0.493128,0.535343,0.520297,0.584151,0.609307,0.546243,0.564321,0.478674 + ,0.493128,0.535343,0.609307,0.546243,0.630355,0.625817,0.536175,0.637704,0.520297,0.584151,0.536175,0.637704,0.630355,0.625817 + ,0.609307,0.546243,0.520297,0.584151,0.520297,0.584151,0.536175,0.637704,0.448844,0.650180,0.439762,0.618826,0.448844,0.650180 + ,0.536175,0.637704,0.520297,0.584151,0.439762,0.618826,0.778216,0.489213,0.717719,0.489417,0.728077,0.409564,0.767134,0.409073 + ,0.728077,0.409564,0.717719,0.489417,0.778216,0.489213,0.767134,0.409073,0.767134,0.409073,0.728077,0.409564,0.747103,0.261237 + ,0.747103,0.261237,0.728077,0.409564,0.767134,0.409073,0.728077,0.409564,0.690212,0.399812,0.747103,0.261237,0.747103,0.261237 + ,0.690212,0.399812,0.728077,0.409564,0.717719,0.489417,0.659642,0.473994,0.690212,0.399812,0.728077,0.409564,0.690212,0.399812 + ,0.659642,0.473994,0.717719,0.489417,0.728077,0.409564,0.536175,0.637704,0.536812,0.693682,0.448883,0.682634,0.448844,0.650180 + ,0.448883,0.682634,0.536812,0.693682,0.536175,0.637704,0.448844,0.650180,0.630355,0.625817,0.629730,0.706808,0.536812,0.693682 + ,0.536175,0.637704,0.536812,0.693682,0.629730,0.706808,0.630355,0.625817,0.536175,0.637704,0.629730,0.706808,0.608378,0.783984 + ,0.522960,0.747902,0.536812,0.693682,0.522960,0.747902,0.608378,0.783984,0.629730,0.706808,0.536812,0.693682,0.536812,0.693682 + ,0.522960,0.747902,0.440997,0.714285,0.448883,0.682634,0.440997,0.714285,0.522960,0.747902,0.536812,0.693682,0.448883,0.682634 + ,0.659642,0.473994,0.607248,0.444140,0.656484,0.380022,0.690212,0.399812,0.656484,0.380022,0.607248,0.444140,0.659642,0.473994 + ,0.690212,0.399812,0.690212,0.399812,0.656484,0.380022,0.747103,0.261237,0.747103,0.261237,0.656484,0.380022,0.690212,0.399812 + ,0.656484,0.380022,0.628667,0.352570,0.747103,0.261237,0.747103,0.261237,0.628667,0.352570,0.656484,0.380022,0.607248,0.444140 + ,0.564480,0.401369,0.628667,0.352570,0.656484,0.380022,0.628667,0.352570,0.564480,0.401369,0.607248,0.444140,0.656484,0.380022 + ,0.522960,0.747902,0.495857,0.796490,0.425131,0.742913,0.440997,0.714285,0.425131,0.742913,0.495857,0.796490,0.522960,0.747902 + ,0.440997,0.714285,0.608378,0.783984,0.568463,0.852177,0.495857,0.796490,0.522960,0.747902,0.495857,0.796490,0.568463,0.852177 + ,0.608378,0.783984,0.522960,0.747902,0.568463,0.852177,0.513575,0.907242,0.457554,0.836699,0.495857,0.796490,0.457554,0.836699 + ,0.513575,0.907242,0.568463,0.852177,0.495857,0.796490,0.495857,0.796490,0.457554,0.836699,0.402544,0.766569,0.425131,0.742913 + ,0.402544,0.766569,0.457554,0.836699,0.495857,0.796490,0.425131,0.742913,0.564480,0.401369,0.534433,0.349109,0.608999,0.318792 + ,0.628667,0.352570,0.608999,0.318792,0.534433,0.349109,0.564480,0.401369,0.628667,0.352570,0.628667,0.352570,0.608999,0.318792 + ,0.747103,0.261237,0.747103,0.261237,0.608999,0.318792,0.628667,0.352570,0.608999,0.318792,0.598803,0.281065,0.747103,0.261237 + ,0.747103,0.261237,0.598803,0.281065,0.608999,0.318792,0.534433,0.349109,0.519012,0.290957,0.598803,0.281065,0.608999,0.318792 + ,0.598803,0.281065,0.519012,0.290957,0.534433,0.349109,0.608999,0.318792,0.457554,0.836699,0.409258,0.863569,0.374680,0.783579 + ,0.402544,0.766569,0.374680,0.783579,0.409258,0.863569,0.457554,0.836699,0.402544,0.766569,0.513575,0.907242,0.446677,0.951430 + ,0.409258,0.863569,0.457554,0.836699,0.409258,0.863569,0.446677,0.951430,0.513575,0.907242,0.457554,0.836699,0.446677,0.951430 + ,0.368164,0.971964,0.356423,0.879102,0.409258,0.863569,0.356423,0.879102,0.368164,0.971964,0.446677,0.951430,0.409258,0.863569 + ,0.409258,0.863569,0.356423,0.879102,0.343250,0.792390,0.374680,0.783579,0.343250,0.792390,0.356423,0.879102,0.409258,0.863569 + ,0.374680,0.783579,0.519012,0.290957,0.519188,0.230871,0.598750,0.241997,0.598803,0.281065,0.598750,0.241997,0.519188,0.230871 + ,0.519012,0.290957,0.598803,0.281065,0.598803,0.281065,0.598750,0.241997,0.747103,0.261237,0.747103,0.261237,0.598750,0.241997 + ,0.598803,0.281065,0.598750,0.241997,0.608823,0.204265,0.747103,0.261237,0.747103,0.261237,0.608823,0.204265,0.598750,0.241997 + ,0.519188,0.230871,0.534905,0.172928,0.608823,0.204265,0.598750,0.241997,0.608823,0.204265,0.534905,0.172928,0.519188,0.230871 + ,0.598750,0.241997,0.356423,0.879102,0.301249,0.879910,0.310868,0.792825,0.343250,0.792390,0.310868,0.792825,0.301249,0.879910 + ,0.356423,0.879102,0.343250,0.792390,0.368164,0.971964,0.288498,0.971334,0.301249,0.879910,0.356423,0.879102,0.301249,0.879910 + ,0.288498,0.971334,0.368164,0.971964,0.356423,0.879102,0.288498,0.971334,0.212650,0.950551,0.247725,0.866341,0.301249,0.879910 + ,0.247725,0.866341,0.212650,0.950551,0.288498,0.971334,0.301249,0.879910,0.301249,0.879910,0.247725,0.866341,0.279617,0.784943 + ,0.310868,0.792825,0.279617,0.784943,0.247725,0.866341,0.301249,0.879910,0.310868,0.792825,0.534905,0.172928,0.565066,0.121061 + ,0.628317,0.170441,0.608823,0.204265,0.628317,0.170441,0.565066,0.121061,0.534905,0.172928,0.608823,0.204265,0.608823,0.204265 + ,0.628317,0.170441,0.747103,0.261237,0.747103,0.261237,0.628317,0.170441,0.608823,0.204265,0.628317,0.170441,0.655893,0.142829 + ,0.747103,0.261237,0.747103,0.261237,0.655893,0.142829,0.628317,0.170441,0.565066,0.121061,0.607601,0.078789,0.655893,0.142829 + ,0.628317,0.170441,0.655893,0.142829,0.607601,0.078789,0.565066,0.121061,0.628317,0.170441,0.247725,0.866341,0.199488,0.840082 + ,0.251198,0.769159,0.279617,0.784943,0.251198,0.769159,0.199488,0.840082,0.247725,0.866341,0.279617,0.784943,0.212650,0.950551 + ,0.145487,0.911804,0.199488,0.840082,0.247725,0.866341,0.199488,0.840082,0.145487,0.911804,0.212650,0.950551,0.247725,0.866341 + ,0.145487,0.911804,0.091036,0.858562,0.159283,0.802566,0.199488,0.840082,0.159283,0.802566,0.091036,0.858562,0.145487,0.911804 + ,0.199488,0.840082,0.199488,0.840082,0.159283,0.802566,0.227911,0.746415,0.251198,0.769159,0.227911,0.746415,0.159283,0.802566 + ,0.199488,0.840082,0.251198,0.769159,0.607601,0.078789,0.659603,0.048979,0.689664,0.123301,0.655893,0.142829,0.689664,0.123301 + ,0.659603,0.048979,0.607601,0.078789,0.655893,0.142829,0.655893,0.142829,0.689664,0.123301,0.747103,0.261237,0.747103,0.261237 + ,0.689664,0.123301,0.655893,0.142829,0.689664,0.123301,0.727324,0.113183,0.747103,0.261237,0.747103,0.261237,0.727324,0.113183 + ,0.689664,0.123301,0.659603,0.048979,0.717522,0.033649,0.727324,0.113183,0.689664,0.123301,0.727324,0.113183,0.717522,0.033649 + ,0.659603,0.048979,0.689664,0.123301,0.159283,0.802566,0.131218,0.754891,0.211440,0.718488,0.227911,0.746415,0.211440,0.718488 + ,0.131218,0.754891,0.159283,0.802566,0.227911,0.746415,0.091036,0.858562,0.047158,0.794161,0.131218,0.754891,0.159283,0.802566 + ,0.131218,0.754891,0.047158,0.794161,0.091036,0.858562,0.159283,0.802566,0.047158,0.794161,0.020040,0.716415,0.116665,0.701376 + ,0.131218,0.754891,0.116665,0.701376,0.020040,0.716415,0.047158,0.794161,0.131218,0.754891,0.131218,0.754891,0.116665,0.701376 + ,0.202749,0.687218,0.211440,0.718488,0.202749,0.687218,0.116665,0.701376,0.131218,0.754891,0.211440,0.718488,0.717522,0.033649 + ,0.777406,0.033829,0.766305,0.113152,0.727324,0.113183,0.766305,0.113152,0.777406,0.033829,0.717522,0.033649,0.727324,0.113183 + ,0.727324,0.113183,0.766305,0.113152,0.747103,0.261237,0.747103,0.261237,0.766305,0.113152,0.727324,0.113183,0.766305,0.113152 + ,0.803955,0.123202,0.747103,0.261237,0.747103,0.261237,0.803955,0.123202,0.766305,0.113152,0.777406,0.033829,0.835174,0.049489 + ,0.803955,0.123202,0.766305,0.113152,0.803955,0.123202,0.835174,0.049489,0.777406,0.033829,0.766305,0.113152,0.116665,0.701376 + ,0.114631,0.645653,0.202403,0.654635,0.202749,0.687218,0.202403,0.654635,0.114631,0.645653,0.116665,0.701376,0.202749,0.687218 + ,0.020040,0.716415,0.020040,0.633322,0.114631,0.645653,0.116665,0.701376,0.114631,0.645653,0.020040,0.633322,0.020040,0.716415 + ,0.116665,0.701376,0.020040,0.633322,0.041562,0.555044,0.127964,0.591449,0.114631,0.645653,0.127964,0.591449,0.041562,0.555044 + ,0.020040,0.633322,0.114631,0.645653,0.114631,0.645653,0.127964,0.591449,0.210499,0.623096,0.202403,0.654635,0.210499,0.623096 + ,0.127964,0.591449,0.114631,0.645653,0.202403,0.654635,0.835174,0.049489,0.886890,0.079541,0.837713,0.142639,0.803955,0.123202 + ,0.837713,0.142639,0.886890,0.079541,0.835174,0.049489,0.803955,0.123202,0.803955,0.123202,0.837713,0.142639,0.747103,0.261237 + ,0.747103,0.261237,0.837713,0.142639,0.803955,0.123202,0.837713,0.142639,0.865293,0.170129,0.747103,0.261237,0.747103,0.261237 + ,0.865293,0.170129,0.837713,0.142639,0.886890,0.079541,0.929041,0.121909,0.865293,0.170129,0.837713,0.142639,0.865293,0.170129 + ,0.929041,0.121909,0.886890,0.079541,0.837713,0.142639,0.127964,0.591449,0.155040,0.542772,0.226460,0.594793,0.210499,0.623096 + ,0.226460,0.594793,0.155040,0.542772,0.127964,0.591449,0.210499,0.623096,0.041562,0.555044,0.082019,0.486189,0.155040,0.542772 + ,0.127964,0.591449,0.155040,0.542772,0.082019,0.486189,0.041562,0.555044,0.127964,0.591449,0.082019,0.486189,0.137890,0.430848 + ,0.193653,0.502638,0.155040,0.542772,0.193653,0.502638,0.137890,0.430848,0.082019,0.486189,0.155040,0.542772,0.155040,0.542772 + ,0.193653,0.502638,0.249139,0.571633,0.226460,0.594793,0.249139,0.571633,0.193653,0.502638,0.155040,0.542772,0.226460,0.594793 + ,0.929041,0.121909,0.958774,0.173671,0.884838,0.203796,0.865293,0.170129,0.884838,0.203796,0.958774,0.173671,0.929041,0.121909 + ,0.865293,0.170129,0.865293,0.170129,0.884838,0.203796,0.747103,0.261237,0.747103,0.261237,0.884838,0.203796,0.865293,0.170129 + ,0.884838,0.203796,0.895047,0.241355,0.747103,0.261237,0.747103,0.261237,0.895047,0.241355,0.884838,0.203796,0.958774,0.173671 + ,0.974116,0.231256,0.895047,0.241355,0.884838,0.203796,0.895047,0.241355,0.974116,0.231256,0.958774,0.173671,0.884838,0.203796 + ,0.193653,0.502638,0.240677,0.473106,0.276514,0.554429,0.249139,0.571633,0.276514,0.554429,0.240677,0.473106,0.193653,0.502638 + ,0.249139,0.571633,0.137890,0.430848,0.204451,0.392037,0.240677,0.473106,0.193653,0.502638,0.240677,0.473106,0.204451,0.392037 + ,0.137890,0.430848,0.193653,0.502638,0.204451,0.392037,0.278624,0.366925,0.294377,0.458508,0.240677,0.473106,0.294377,0.458508 + ,0.278624,0.366925,0.204451,0.392037,0.240677,0.473106,0.240677,0.473106,0.294377,0.458508,0.307636,0.545828,0.276514,0.554429 + ,0.307636,0.545828,0.294377,0.458508,0.240677,0.473106,0.276514,0.554429,0.974116,0.231256,0.974116,0.290698,0.895267,0.280278 + ,0.895047,0.241355,0.895267,0.280278,0.974116,0.290698,0.974116,0.231256,0.895047,0.241355,0.895047,0.241355,0.895267,0.280278 + ,0.747103,0.261237,0.747103,0.261237,0.895267,0.280278,0.895047,0.241355,0.895267,0.280278,0.885529,0.317987,0.747103,0.261237 + ,0.747103,0.261237,0.885529,0.317987,0.895267,0.280278,0.885529,0.317987,0.895267,0.280278,0.974116,0.290698,0.958949,0.347932 + ,0.974116,0.290698,0.895267,0.280278,0.885529,0.317987,0.958949,0.347932,0.294377,0.458508,0.350017,0.458389,0.339607,0.544977 + ,0.307636,0.545828,0.339607,0.544977,0.350017,0.458389,0.294377,0.458508,0.307636,0.545828,0.278624,0.366925,0.360526,0.361660 + ,0.350017,0.458389,0.294377,0.458508,0.350017,0.458389,0.360526,0.361660,0.278624,0.366925,0.294377,0.458508 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 + ,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109 + ,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164 + ,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219 + ,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274 + ,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329 + ,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,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,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,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,540,541,542,543,544,545,546,547,548,549 + ,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,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,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714 + ,715,716,717,718,719 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: "Model::Producer Perspective", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,71.299999999999997,287.500000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",10.000000 + Property: "FarPlane", "double", "",4000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",0 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,71.300000,287.500000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Top", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Bottom", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,-4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,-4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Front", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Back", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,-4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,-4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Right", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Left", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: -4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Material: "Material::None__WheelBall_png", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Phong" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",0.5000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",1.0000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "SpecularFactor", "double", "",0.2000 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",0.8,0.8,0.8 + Property: "Shininess", "double", "",20.0 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Video: "Video::WheelBall_png", "Clip" { + Type: "Clip" + Properties60: { + Property: "FrameRate", "double", "",0 + Property: "LastFrame", "int", "",0 + Property: "Width", "int", "",0 + Property: "Height", "int", "",0 + Property: "Path", "charptr", "", "WheelBall.png" + Property: "StartFrame", "int", "",0 + Property: "StopFrame", "int", "",0 + Property: "PlaySpeed", "double", "",1 + Property: "Offset", "KTime", "",0 + Property: "InterlaceMode", "enum", "",0 + Property: "FreeRunning", "bool", "",0 + Property: "Loop", "bool", "",0 + Property: "AccessMode", "enum", "",0 + } + UseMipMap: 0 + Filename: "WheelBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\WheelBall.png" + } + Texture: "Texture::WheelBall_png", "TextureVideoClip" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::WheelBall_png" + Properties60: { + Property: "Translation", "Vector", "A+",0,0,0 + Property: "Rotation", "Vector", "A+",0,0,0 + Property: "Scaling", "Vector", "A+",1,1,1 + Property: "Texture alpha", "Number", "A+",0 + Property: "TextureTypeUse", "enum", "",0 + Property: "CurrentTextureBlendMode", "enum", "",1 + Property: "UseMaterial", "bool", "",0 + Property: "UseMipMap", "bool", "",0 + Property: "CurrentMappingType", "enum", "",0 + Property: "UVSwap", "bool", "",0 + Property: "WrapModeU", "enum", "",0 + Property: "WrapModeV", "enum", "",0 + Property: "TextureRotationPivot", "Vector3D", "",0,0,0 + Property: "TextureScalingPivot", "Vector3D", "",0,0,0 + Property: "VideoProperty", "object", "" + } + Media: "Video::WheelBall_png" + FileName: "WheelBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\WheelBall.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 2 + PoseNode: { + Node: "Model::blend_root" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::WheelBall" + Matrix: 0.000000037748951,0.500000000000000,-0.000000021855694,0.000000000000000,0.500000000000000,-0.000000037748951,-0.000000037748951,0.000000000000000,-0.000000047667641,-0.000000027598363,-0.631377041339874,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",100 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::blend_root", "Null" { + } + Model: "Model::WheelBall", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::None__WheelBall_png", "" { + } + Texture: "Texture::WheelBall_png", "TextureVideoClip" { + } + Video: "Video::WheelBall_png", "Clip" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::blend_root", "Model::Scene" + Connect: "OO", "Model::WheelBall", "Model::blend_root" + Connect: "OO", "Material::None__WheelBall_png", "Model::WheelBall" + Connect: "OO", "Texture::WheelBall_png", "Model::WheelBall" + Connect: "OO", "Video::WheelBall_png", "Texture::WheelBall_png" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" + Take: "Default Take" { + FileName: "Default_Take.tak" + LocalTime: 0,479181389250 + ReferenceTime: 0,479181389250 + + ;Models animation + ;---------------------------------------------------- + Model: "Model::WheelBall" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -179.999991348319355 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-179.999991348319355,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000002504478065 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000002504478065,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 89.999995674159678 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,89.999995674159678,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.631377041339874 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.631377041339874,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + } +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FlogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.1,0.1,0.1,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 479181389250 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/Assets/resources/Ball Pack/Models/WheelBall.fbx.meta b/Assets/resources/Ball Pack/Models/WheelBall.fbx.meta new file mode 100644 index 00000000..71f731cb --- /dev/null +++ b/Assets/resources/Ball Pack/Models/WheelBall.fbx.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 74cbada03bcd41d49acec56746acf71e +ModelImporter: + serializedVersion: 20200 + internalIDToNameTable: + - first: + 43: 4300000 + second: WheelBall + - first: + 1001: 100100000 + second: DataTemplate __Singleton__ + - first: + 74: 1989289236423521904 + second: Default Take + externalObjects: {} + materials: + materialImportMode: 1 + materialName: 3 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 0 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + fileIdsGeneration: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + meshOptimizationFlags: -1 + indexFormat: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 0 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 4 + normalCalculationMode: 0 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 1 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Models/WoodenBall.fbx b/Assets/resources/Ball Pack/Models/WoodenBall.fbx new file mode 100644 index 00000000..c36d9fde --- /dev/null +++ b/Assets/resources/Ball Pack/Models/WoodenBall.fbx @@ -0,0 +1,2283 @@ +; FBX 6.1.0 project file +; Created by Blender FBX Exporter +; for support mail: ideasman42@gmail.com +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 6100 + CreationTimeStamp: { + Version: 1000 + Year: 2011 + Month: 03 + Day: 16 + Hour: 12 + Minute: 46 + Second: 29 + Millisecond: 0 + } + Creator: "FBX SDK/FBX Plugins build 20070228" + OtherFlags: { + FlagPLE: 0 + } +} +CreationTime: "2011-03-16 12:46:29:000" +Creator: "Blender version 2.56 (sub 0)" + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 14 + ObjectType: "Model" { + Count: 10 + } + ObjectType: "Geometry" { + Count: 1 + } + ObjectType: "Material" { + Count: 1 + } + ObjectType: "Texture" { + Count: 1 + } + ObjectType: "Video" { + Count: 1 + } + ObjectType: "Pose" { + Count: 1 + } + ObjectType: "GlobalSettings" { + Count: 1 + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: "Model::Camera Switcher", "CameraSwitcher" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Camera Index", "Integer", "A+",100 + } + MultiLayer: 0 + MultiTake: 1 + Hidden: "True" + Shading: W + Culling: "CullingOff" + Version: 101 + Name: "Model::Camera Switcher" + CameraId: 0 + CameraName: 100 + CameraIndexName: + } + Model: "Model::blend_root", "Null" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + TypeFlags: "Null" + } + Model: "Model::WoodenBall", "Mesh" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000009334538021,-0.000010017913890,0.000000000000576 + Property: "Lcl Scaling", "Lcl Scaling", "A+",0.500000000000000,0.500000000000000,0.500000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Size", "double", "",100 + Property: "Look", "enum", "",1 + } + MultiLayer: 0 + MultiTake: 1 + Shading: Y + Culling: "CullingOff" + Vertices: 0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,0.000000,-0.202000,0.980786,0.000000,-0.202000,-0.980786,0.000000,0.202000,0.980786,0.000000,0.202000,-0.980786,0.000000,-0.382683,0.923880 + ,0.000000,-0.382683,-0.923880,0.000000,0.382683,0.923880,0.000000,0.382683,-0.923880,0.000000,-0.555570,0.831470,0.000000,-0.555570,-0.831470,0.000000,0.555570,0.831470,0.000000,0.555570,-0.831470 + ,0.000000,-0.707106,0.707107,0.000000,-0.707106,-0.707107,0.000000,0.707106,0.707107,0.000000,0.707106,-0.707107,0.000000,-0.831469,0.555571,0.000000,-0.831469,-0.555571,0.000000,0.831469,0.555571 + ,0.000000,0.831469,-0.555571,0.000000,-0.923879,0.382684,0.000000,-0.923879,-0.382684,0.000000,0.923879,0.382684,0.000000,0.923879,-0.382684,0.000000,-0.980785,0.195091,0.000000,-0.980785,-0.195091 + ,0.000000,0.980785,0.195091,0.000000,0.980785,-0.195091,0.000000,-1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,-0.900000,0.000000,0.000000,0.900000,0.000000,0.000000,-0.882707,0.175582 + ,0.000000,-0.882707,-0.175582,0.000000,0.882707,0.175582,0.000000,0.882707,-0.175582,0.000000,-0.831491,0.344416,0.000000,-0.831491,-0.344416,0.000000,0.831491,0.344416,0.000000,0.831491,-0.344416 + ,0.000000,-0.748322,0.500014,0.000000,-0.748322,-0.500014,0.000000,0.748322,0.500014,0.000000,0.748322,-0.500014,0.000000,-0.636396,0.636397,0.000000,-0.636396,-0.636397,0.000000,0.636396,0.636397 + ,0.000000,0.636396,-0.636397,0.000000,-0.500013,0.748323,0.000000,-0.500013,-0.748323,0.000000,0.500013,0.748323,0.000000,0.500013,-0.748323,0.000000,-0.344414,0.831492,0.000000,-0.344414,-0.831492 + ,0.000000,0.344414,0.831492,0.000000,0.344414,-0.831492,0.000000,-0.202843,0.882707,0.000000,-0.202843,-0.882707,0.000000,0.202843,0.882707,0.000000,0.202843,-0.882707,0.000000,0.000000,0.900000 + ,-0.200000,-0.855012,0.000000,-0.200000,0.855012,0.000000,0.200000,-0.855012,0.000000,0.200000,0.855012,0.000000,-0.200000,-0.837719,0.138788,-0.200000,-0.837719,-0.138788,-0.200000,0.837719,0.138788 + ,-0.200000,0.837719,-0.138788,0.200000,-0.837719,0.138788,0.200000,-0.837719,-0.138788,0.200000,0.837719,0.138788,0.200000,0.837719,-0.138788,-0.200000,-0.786503,0.307621,-0.200000,-0.786503,-0.307621 + ,-0.200000,0.786503,0.307621,-0.200000,0.786503,-0.307621,0.200000,-0.786503,0.307621,0.200000,-0.786503,-0.307621,0.200000,0.786503,0.307621,0.200000,0.786503,-0.307621,-0.200000,-0.703334,0.463220 + ,-0.200000,-0.703334,-0.463220,-0.200000,0.703334,0.463220,-0.200000,0.703334,-0.463220,0.200000,-0.703334,0.463220,0.200000,-0.703334,-0.463220,0.200000,0.703334,0.463220,0.200000,0.703334,-0.463220 + ,-0.200000,-0.591408,0.599602,-0.200000,-0.591408,-0.599602,-0.200000,0.591408,0.599602,-0.200000,0.591408,-0.599602,0.200000,-0.591408,0.599602,0.200000,-0.591408,-0.599602,0.200000,0.591408,0.599602 + ,0.200000,0.591408,-0.599602,-0.200000,-0.455025,0.711529,-0.200000,-0.455025,-0.711529,-0.200000,0.455025,0.711529,-0.200000,0.455025,-0.711529,0.200000,-0.455025,0.711529,0.200000,-0.455025,-0.711529 + ,0.200000,0.455025,0.711529,0.200000,0.455025,-0.711529,-0.200000,-0.299426,0.794698,-0.200000,-0.299426,-0.794698,-0.200000,0.299426,0.794698,-0.200000,0.299426,-0.794698,0.200000,-0.299426,0.794698 + ,0.200000,-0.299426,-0.794698,0.200000,0.299426,0.794698,0.200000,0.299426,-0.794698,-0.200000,-0.199609,0.846206,-0.200000,0.199609,0.846206,-0.200000,0.199609,-0.846206,0.200000,0.199609,-0.846206 + ,-0.200000,0.199000,0.944000,-0.200000,0.199000,-0.944000,-0.200000,-0.337695,0.887086,-0.200000,-0.337695,-0.887086,-0.200000,0.337695,0.887086,-0.200000,0.337695,-0.887086,0.200000,-0.337695,0.887086 + ,0.200000,-0.337695,-0.887086,0.200000,0.337695,0.887086,0.200000,0.337695,-0.887086,-0.200000,-0.510582,0.794676,-0.200000,-0.510582,-0.794676,-0.200000,0.510582,0.794676,-0.200000,0.510582,-0.794676 + ,0.200000,-0.510582,0.794676,0.200000,-0.510582,-0.794676,0.200000,0.510582,0.794676,0.200000,0.510582,-0.794676,-0.200000,-0.662118,0.670313,-0.200000,-0.662118,-0.670313,-0.200000,0.662118,0.670313 + ,-0.200000,0.662118,-0.670313,0.200000,-0.662118,0.670313,0.200000,-0.662118,-0.670313,0.200000,0.662118,0.670313,0.200000,0.662118,-0.670313,-0.200000,-0.786481,0.518777,-0.200000,-0.786481,-0.518777 + ,-0.200000,0.786481,0.518777,-0.200000,0.786481,-0.518777,0.200000,-0.786481,0.518777,0.200000,-0.786481,-0.518777,0.200000,0.786481,0.518777,0.200000,0.786481,-0.518777,-0.200000,-0.878891,0.345890 + ,-0.200000,-0.878891,-0.345890,-0.200000,0.878891,0.345890,-0.200000,0.878891,-0.345890,0.200000,-0.878891,0.345890,0.200000,-0.878891,-0.345890,0.200000,0.878891,0.345890,0.200000,0.878891,-0.345890 + ,-0.200000,-0.935797,0.158297,-0.200000,-0.935797,-0.158297,-0.200000,0.935797,0.158297,-0.200000,0.935797,-0.158297,0.200000,-0.935797,0.158297,0.200000,-0.935797,-0.158297,0.200000,0.935797,0.158297 + ,0.200000,0.935797,-0.158297,-0.200000,-0.955012,0.000000,-0.200000,0.955012,0.000000,0.200000,-0.955012,0.000000,0.200000,0.955012,0.000000,0.955012,-0.200000,0.000000,-0.955012,-0.200000,0.000000 + ,0.955012,0.200000,0.000000,-0.955012,0.200000,0.000000,0.935797,-0.200000,-0.158297,0.935797,-0.200000,0.158297,-0.935797,-0.200000,-0.158297,-0.935797,-0.200000,0.158297,0.935797,0.200000,-0.158297 + ,0.935797,0.200000,0.158297,-0.935797,0.200000,-0.158297,-0.935797,0.200000,0.158297,0.878891,-0.200000,-0.345890,0.878891,-0.200000,0.345890,-0.878891,-0.200000,-0.345890,-0.878891,-0.200000,0.345890 + ,0.878891,0.200000,-0.345890,0.878891,0.200000,0.345890,-0.878891,0.200000,-0.345890,-0.878891,0.200000,0.345890,0.786481,-0.200000,-0.518777,0.786481,-0.200000,0.518777,-0.786481,-0.200000,-0.518777 + ,-0.786481,-0.200000,0.518777,0.786481,0.200000,-0.518777,0.786481,0.200000,0.518777,-0.786481,0.200000,-0.518777,-0.786481,0.200000,0.518777,0.662118,-0.200000,-0.670313,0.662118,-0.200000,0.670313 + ,-0.662118,-0.200000,-0.670313,-0.662118,-0.200000,0.670313,0.662118,0.200000,-0.670313,0.662118,0.200000,0.670313,-0.662118,0.200000,-0.670313,-0.662118,0.200000,0.670313,0.510582,-0.200000,-0.794676 + ,0.510582,-0.200000,0.794676,-0.510582,-0.200000,-0.794676,-0.510582,-0.200000,0.794676,0.510582,0.200000,-0.794676,0.510582,0.200000,0.794676,-0.510582,0.200000,-0.794676,-0.510582,0.200000,0.794676 + ,0.337695,-0.200000,-0.887086,0.337695,-0.200000,0.887086,-0.337695,-0.200000,-0.887086,-0.337695,-0.200000,0.887086,0.337695,0.200000,-0.887086,0.337695,0.200000,0.887086,-0.337695,0.200000,-0.887086 + ,-0.337695,0.200000,0.887086,0.199000,-0.200000,-0.944000,0.199000,-0.200000,0.944000,-0.199000,-0.200000,-0.944000,-0.199000,-0.200000,0.944000,0.199000,0.200000,-0.944000,0.199000,0.200000,0.944000 + ,0.199609,-0.200000,-0.846206,0.199609,-0.200000,0.846206,-0.199609,-0.200000,-0.846206,0.199609,0.200000,0.846206,0.299426,-0.200000,-0.794698,0.299426,-0.200000,0.794698,-0.299426,-0.200000,-0.794698 + ,-0.299426,-0.200000,0.794698,0.299426,0.200000,-0.794698,0.299426,0.200000,0.794698,-0.299426,0.200000,-0.794698,-0.299426,0.200000,0.794698,0.455025,-0.200000,-0.711529,0.455025,-0.200000,0.711529 + ,-0.455025,-0.200000,-0.711529,-0.455025,-0.200000,0.711529,0.455025,0.200000,-0.711529,0.455025,0.200000,0.711529,-0.455025,0.200000,-0.711529,-0.455025,0.200000,0.711529,0.591408,-0.200000,-0.599602 + ,0.591408,-0.200000,0.599602,-0.591408,-0.200000,-0.599602,-0.591408,-0.200000,0.599602,0.591408,0.200000,-0.599602,0.591408,0.200000,0.599602,-0.591408,0.200000,-0.599602,-0.591408,0.200000,0.599602 + ,0.703334,-0.200000,-0.463220,0.703334,-0.200000,0.463220,-0.703334,-0.200000,-0.463220,-0.703334,-0.200000,0.463220,0.703334,0.200000,-0.463220,0.703334,0.200000,0.463220,-0.703334,0.200000,-0.463220 + ,-0.703334,0.200000,0.463220,0.786503,-0.200000,-0.307621,0.786503,-0.200000,0.307621,-0.786503,-0.200000,-0.307621,-0.786503,-0.200000,0.307621,0.786503,0.200000,-0.307621,0.786503,0.200000,0.307621 + ,-0.786503,0.200000,-0.307621,-0.786503,0.200000,0.307621,0.837719,-0.200000,-0.138788,0.837719,-0.200000,0.138788,-0.837719,-0.200000,-0.138788,-0.837719,-0.200000,0.138788,0.837719,0.200000,-0.138788 + ,0.837719,0.200000,0.138788,-0.837719,0.200000,-0.138788,-0.837719,0.200000,0.138788,0.855012,-0.200000,0.000000,-0.855012,-0.200000,0.000000,0.855012,0.200000,0.000000,-0.855012,0.200000,0.000000 + ,-0.000000,-0.000000,-0.900000,0.202843,0.000000,-0.882707,0.202843,0.000000,0.882707,-0.202843,-0.000000,-0.882707,-0.202843,-0.000000,0.882707,0.344414,0.000000,-0.831492,0.344414,0.000000,0.831492 + ,-0.344414,-0.000000,-0.831492,-0.344414,-0.000000,0.831492,0.500013,0.000000,-0.748323,0.500013,0.000000,0.748323,-0.500013,-0.000000,-0.748323,-0.500013,-0.000000,0.748323,0.636396,0.000000,-0.636397 + ,0.636396,0.000000,0.636397,-0.636396,-0.000000,-0.636397,-0.636396,-0.000000,0.636397,0.748322,0.000000,-0.500014,0.748322,0.000000,0.500014,-0.748322,-0.000000,-0.500014,-0.748322,-0.000000,0.500014 + ,0.831491,0.000000,-0.344416,0.831491,0.000000,0.344416,-0.831491,-0.000000,-0.344416,-0.831491,-0.000000,0.344416,0.882707,0.000000,-0.175582,0.882707,0.000000,0.175582,-0.882707,-0.000000,-0.175582 + ,-0.882707,-0.000000,0.175582,0.900000,0.000000,0.000000,-0.900000,-0.000000,0.000000,1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,0.980785,0.000000,-0.195091,0.980785,0.000000,0.195091 + ,-0.980785,-0.000000,-0.195091,-0.980785,-0.000000,0.195091,0.923879,0.000000,-0.382684,0.923879,0.000000,0.382684,-0.923879,-0.000000,-0.382684,-0.923879,-0.000000,0.382684,0.831469,0.000000,-0.555571 + ,0.831469,0.000000,0.555571,-0.831469,-0.000000,-0.555571,-0.831469,-0.000000,0.555571,0.707106,0.000000,-0.707107,0.707106,0.000000,0.707107,-0.707106,-0.000000,-0.707107,-0.707106,-0.000000,0.707107 + ,0.555570,0.000000,-0.831470,0.555570,0.000000,0.831470,-0.555570,-0.000000,-0.831470,-0.555570,-0.000000,0.831470,0.382683,0.000000,-0.923880,0.382683,0.000000,0.923880,-0.382683,-0.000000,-0.923880 + ,-0.382683,-0.000000,0.923880,0.202000,0.000000,-0.980786,0.202000,0.000000,0.980786,-0.202000,-0.000000,-0.980786,-0.202000,-0.000000,0.980786 + PolygonVertexIndex: 2,0,-229,227,1,-4,119,0,-5,5,1,-121,226,0,-3,3,1,-226,4,0,-231,229,1,-6,121,6,2,-229,3,7,122,-228,4,8,123,-120,124,9,5,-121,2,6,125,-227 + ,126,7,3,-226,127,8,4,-231,5,9,128,-230,129,10,6,-122,7,11,130,-123,8,12,131,-124,132,13,9,-125,6,10,133,-126,134,11,7,-127,135,12,8,-128,9,13,136,-129,137,14,10,-130,11,15,138,-131 + ,12,16,139,-132,140,17,13,-133,10,14,141,-134,142,15,11,-135,143,16,12,-136,13,17,144,-137,145,18,14,-138,15,19,146,-139,16,20,147,-140,148,21,17,-141,14,18,149,-142,150,19,15,-143,151,20,16,-144 + ,17,21,152,-145,153,22,18,-146,19,23,154,-147,20,24,155,-148,156,25,21,-149,18,22,157,-150,158,23,19,-151,159,24,20,-152,21,25,160,-153,161,26,22,-154,23,27,162,-155,24,28,163,-156,164,29,25,-157 + ,22,26,165,-158,166,27,23,-159,167,28,24,-160,25,29,168,-161,169,30,26,-162,27,30,169,-163,28,31,170,-164,170,31,29,-165,26,30,171,-166,171,30,27,-167,172,31,28,-168,29,31,172,-169,62,58,-116 + ,233,59,-288,116,60,-63,287,61,-118,232,58,-63,287,59,-232,62,60,-235,118,61,-288,58,54,107,-116,108,55,59,-234,109,56,60,-117,61,57,110,-118,111,54,58,-233,59,55,112,-232 + ,60,56,113,-235,114,57,61,-119,54,50,99,-108,100,51,55,-109,101,52,56,-110,57,53,102,-111,103,50,54,-112,55,51,104,-113,56,52,105,-114,106,53,57,-115,50,46,91,-100,92,47,51,-101,93,48,52,-102 + ,53,49,94,-103,95,46,50,-104,51,47,96,-105,52,48,97,-106,98,49,53,-107,46,42,83,-92,84,43,47,-93,85,44,48,-94,49,45,86,-95,87,42,46,-96,47,43,88,-97,48,44,89,-98,90,45,49,-99 + ,42,38,75,-84,76,39,43,-85,77,40,44,-86,45,41,78,-87,79,38,42,-88,43,39,80,-89,44,40,81,-90,82,41,45,-91,38,34,67,-76,68,35,39,-77,69,36,40,-78,41,37,70,-79,71,34,38,-80 + ,39,35,72,-81,40,36,73,-82,74,37,41,-83,34,32,63,-68,63,32,35,-69,64,33,36,-70,37,33,64,-71,65,32,34,-72,35,32,65,-73,36,33,66,-74,66,33,37,-75,169,161,67,-64,68,162,169,-64 + ,69,163,170,-65,170,164,70,-65,71,165,171,-66,171,166,72,-66,172,167,73,-67,74,168,172,-67,161,153,75,-68,76,154,162,-69,77,155,163,-70,164,156,78,-71,79,157,165,-72,166,158,80,-73,167,159,81,-74 + ,82,160,168,-75,153,145,83,-76,84,146,154,-77,85,147,155,-78,156,148,86,-79,87,149,157,-80,158,150,88,-81,159,151,89,-82,90,152,160,-83,145,137,91,-84,92,138,146,-85,93,139,147,-86,148,140,94,-87 + ,95,141,149,-88,150,142,96,-89,151,143,97,-90,98,144,152,-91,137,129,99,-92,100,130,138,-93,101,131,139,-94,140,132,102,-95,103,133,141,-96,142,134,104,-97,143,135,105,-98,106,136,144,-99,129,121,107,-100 + ,108,122,130,-101,109,123,131,-102,132,124,110,-103,111,125,133,-104,134,126,112,-105,135,127,113,-106,114,128,136,-107,121,228,115,-108,233,227,122,-109,116,119,123,-110,124,120,117,-111,232,226,125,-112,126,225,231,-113 + ,127,230,234,-114,118,229,128,-115,231,225,217,-236,218,226,232,-237,219,227,233,-238,115,228,220,-239,221,229,118,-240,234,230,222,-241,117,120,223,-242,224,119,116,-243,235,217,209,-244,210,218,236,-245,211,219,237,-246 + ,238,220,212,-247,213,221,239,-248,240,222,214,-249,241,223,215,-250,216,224,242,-251,243,209,201,-252,202,210,244,-253,203,211,245,-254,246,212,204,-255,205,213,247,-256,248,214,206,-257,249,215,207,-258,208,216,250,-259 + ,251,201,193,-260,194,202,252,-261,195,203,253,-262,254,204,196,-263,197,205,255,-264,256,206,198,-265,257,207,199,-266,200,208,258,-267,259,193,185,-268,186,194,260,-269,187,195,261,-270,262,196,188,-271,189,197,263,-272 + ,264,198,190,-273,265,199,191,-274,192,200,266,-275,267,185,177,-276,178,186,268,-277,179,187,269,-278,270,188,180,-279,181,189,271,-280,272,190,182,-281,273,191,183,-282,184,192,274,-283,275,177,173,-284,173,178,276,-284 + ,174,179,277,-285,278,180,174,-285,175,181,279,-286,280,182,175,-286,281,183,176,-287,176,184,282,-287,283,316,312,-276,313,316,283,-277,314,317,284,-278,284,317,315,-279,312,316,285,-280,285,316,313,-281,286,317,314,-282 + ,315,317,286,-283,275,312,308,-268,309,313,276,-269,310,314,277,-270,278,315,311,-271,308,312,279,-272,280,313,309,-273,281,314,310,-274,311,315,282,-275,267,308,304,-260,305,309,268,-261,306,310,269,-262,270,311,307,-263 + ,304,308,271,-264,272,309,305,-265,273,310,306,-266,307,311,274,-267,259,304,300,-252,301,305,260,-253,302,306,261,-254,262,307,303,-255,300,304,263,-256,264,305,301,-257,265,306,302,-258,303,307,266,-259,251,300,296,-244 + ,297,301,252,-245,298,302,253,-246,254,303,299,-247,296,300,255,-248,256,301,297,-249,257,302,298,-250,299,303,258,-251,243,296,292,-236,293,297,244,-237,294,298,245,-238,246,299,295,-239,292,296,247,-240,248,297,293,-241 + ,249,298,294,-242,295,299,250,-243,235,292,288,-232,289,293,236,-233,290,294,237,-234,238,295,291,-116,288,292,239,-119,240,293,289,-235,241,294,290,-118,291,295,242,-117,231,288,-288,62,289,-233,287,290,-234 + ,115,291,-63,287,288,-119,234,289,-63,117,290,-288,62,291,-117,320,318,173,-178,173,318,321,-179,174,319,322,-180,323,319,174,-181,175,318,320,-182,321,318,175,-183,322,319,176,-184,176,319,323,-185 + ,324,320,177,-186,178,321,325,-187,179,322,326,-188,327,323,180,-189,181,320,324,-190,325,321,182,-191,326,322,183,-192,184,323,327,-193,328,324,185,-194,186,325,329,-195,187,326,330,-196,331,327,188,-197,189,324,328,-198 + ,329,325,190,-199,330,326,191,-200,192,327,331,-201,332,328,193,-202,194,329,333,-203,195,330,334,-204,335,331,196,-205,197,328,332,-206,333,329,198,-207,334,330,199,-208,200,331,335,-209,336,332,201,-210,202,333,337,-211 + ,203,334,338,-212,339,335,204,-213,205,332,336,-214,337,333,206,-215,338,334,207,-216,208,335,339,-217,340,336,209,-218,210,337,341,-219,211,338,342,-220,343,339,212,-221,213,336,340,-222,341,337,214,-223,342,338,215,-224 + ,216,339,343,-225,344,340,217,-226,218,341,345,-227,219,342,346,-228,347,343,220,-229,221,340,344,-230,345,341,222,-231,346,342,223,-121,224,343,347,-120,225,1,-345,345,0,-227,346,1,-228,228,0,-348 + ,344,1,-230,230,0,-346,120,1,-347,347,0,-120 + Edges: 0,2,1,3,0,4,1,5,2,6,3,7,4,8,5,9,6,10,7,11,8,12,9,13,10,14 + ,11,15,12,16,13,17,14,18,15,19,16,20,17,21,18,22,19,23,20,24,21,25,22,26,23,27 + ,24,28,25,29,26,30,27,30,28,31,29,31,32,34,32,35,33,36,33,37,34,38,35,39,36,40 + ,37,41,38,42,39,43,40,44,41,45,42,46,43,47,44,48,45,49,46,50,47,51,48,52,49,53 + ,50,54,51,55,52,56,53,57,54,58,55,59,56,60,57,61,58,62,60,62,63,169,64,170,65,171 + ,66,172,63,67,63,68,64,69,64,70,65,71,65,72,66,73,66,74,67,161,68,162,69,163,70,164 + ,71,165,72,166,73,167,74,168,67,75,68,76,69,77,70,78,71,79,72,80,73,81,74,82,75,153 + ,76,154,77,155,78,156,79,157,80,158,81,159,82,160,75,83,76,84,77,85,78,86,79,87,80,88 + ,81,89,82,90,83,145,84,146,85,147,86,148,87,149,88,150,89,151,90,152,83,91,84,92,85,93 + ,86,94,87,95,88,96,89,97,90,98,91,137,92,138,93,139,94,140,95,141,96,142,97,143,98,144 + ,91,99,92,100,93,101,94,102,95,103,96,104,97,105,98,106,99,129,100,130,101,131,102,132,103,133 + ,104,134,105,135,106,136,99,107,100,108,101,109,102,110,103,111,104,112,105,113,106,114,107,121,108,122 + ,109,123,110,124,111,125,112,126,113,127,114,128,107,115,109,116,110,117,114,118,116,119,117,120,119,123 + ,120,124,121,129,122,130,123,131,124,132,125,133,126,134,127,135,128,136,129,137,130,138,131,139,132,140 + ,133,141,134,142,135,143,136,144,137,145,138,146,139,147,140,148,141,149,142,150,143,151,144,152,145,153 + ,146,154,147,155,148,156,149,157,150,158,151,159,152,160,153,161,154,162,155,163,156,164,157,165,158,166 + ,159,167,160,168,161,169,162,169,163,170,164,170,165,171,166,171,167,172,168,172,18,145,19,146,20,147 + ,21,148,18,149,19,150,20,151,21,152,14,137,15,138,16,139,17,140,14,141,15,142,16,143,17,144 + ,10,129,11,130,12,131,13,132,10,133,11,134,12,135,13,136,6,121,7,122,8,123,9,124,6,125 + ,7,126,8,127,9,128,0,119,1,120,4,119,5,120,58,115,60,116,61,117,61,118,62,115,62,116 + ,54,107,55,108,56,109,57,110,54,111,55,112,56,113,57,114,50,99,51,100,52,101,53,102,50,103 + ,51,104,52,105,53,106,46,91,47,92,48,93,49,94,46,95,47,96,48,97,49,98,38,75,39,76 + ,40,77,41,78,38,79,39,80,40,81,41,82,34,67,35,68,36,69,37,70,34,71,35,72,36,73 + ,37,74,22,153,23,154,24,155,25,156,22,157,23,158,24,159,25,160,26,161,27,162,28,163,29,164 + ,26,165,27,166,28,167,29,168,30,169,31,170,30,171,31,172,32,63,33,64,32,65,33,66,42,83 + ,43,84,44,85,45,86,42,87,43,88,44,89,45,90,259,304,260,305,261,306,262,307,263,304,264,305 + ,265,306,266,307,283,316,284,317,285,316,286,317,173,318,174,319,175,318,176,319,177,320,178,321,179,322 + ,180,323,181,320,182,321,183,322,184,323,185,324,186,325,187,326,188,327,189,324,190,325,191,326,192,327 + ,275,312,276,313,277,314,278,315,279,312,280,313,281,314,282,315,267,308,268,309,269,310,270,311,271,308 + ,272,309,273,310,274,311,251,300,252,301,253,302,254,303,255,300,256,301,257,302,258,303,243,296,244,297 + ,245,298,246,299,247,296,248,297,249,298,250,299,235,292,236,293,237,294,238,295,239,292,240,293,241,294 + ,242,295,231,287,233,287,231,288,232,289,233,290,234,289,225,344,226,345,227,346,228,347,229,344,230,345 + ,217,340,218,341,219,342,220,343,221,340,222,341,223,342,224,343,209,336,210,337,211,338,212,339,213,336 + ,214,337,215,338,216,339,201,332,202,333,203,334,204,335,205,332,206,333,207,334,208,335,193,328,194,329 + ,195,330,196,331,197,328,198,329,199,330,200,331,173,177,173,178,174,179,174,180,175,181,175,182,176,183 + ,176,184,177,185,178,186,179,187,180,188,181,189,182,190,183,191,184,192,185,193,186,194,187,195,188,196 + ,189,197,190,198,191,199,192,200,193,201,194,202,195,203,196,204,197,205,198,206,199,207,200,208,201,209 + ,202,210,203,211,204,212,205,213,206,214,207,215,208,216,209,217,210,218,211,219,212,220,213,221,214,222 + ,215,223,216,224,217,225,218,226,219,227,220,228,221,229,222,230,225,231,226,232,227,233,230,234,231,235 + ,232,236,233,237,234,240,217,235,218,236,219,237,220,238,221,239,222,240,223,241,224,242,235,243,236,244 + ,237,245,238,246,239,247,240,248,241,249,242,250,209,243,210,244,211,245,212,246,213,247,214,248,215,249 + ,216,250,243,251,244,252,245,253,246,254,247,255,248,256,249,257,250,258,201,251,202,252,203,253,204,254 + ,205,255,206,256,207,257,208,258,251,259,252,260,253,261,254,262,255,263,256,264,257,265,258,266,193,259 + ,194,260,195,261,196,262,197,263,198,264,199,265,200,266,259,267,260,268,261,269,262,270,263,271,264,272 + ,265,273,266,274,185,267,186,268,187,269,188,270,189,271,190,272,191,273,192,274,267,275,268,276,269,277 + ,270,278,271,279,272,280,273,281,274,282,177,275,178,276,179,277,180,278,181,279,182,280,183,281,184,282 + ,275,283,276,283,277,284,278,284,279,285,280,285,281,286,282,286,173,283,174,284,175,285,176,286,287,288 + ,287,290,288,292,289,293,290,294,291,295,292,296,293,297,294,298,295,299,296,300,297,301,298,302,299,303 + ,300,304,301,305,302,306,303,307,304,308,305,309,306,310,307,311,308,312,309,313,310,314,311,315,312,316 + ,313,316,314,317,315,317,318,320,318,321,319,322,319,323,320,324,321,325,322,326,323,327,324,328,325,329 + ,326,330,327,331,328,332,329,333,330,334,331,335,332,336,333,337,334,338,335,339,336,340,337,341,338,342 + ,339,343,340,344,341,345,342,346,343,347,0,347,1,346,0,345,1,344,62,291,62,289,116,242,117,241 + ,118,239,115,238,118,229,115,228,119,224,120,223,0,230,1,229,0,228,1,227,0,226,1,225,119,347 + ,120,346,116,291,117,290,118,288,115,291,117,287,62,234,118,287,62,232,60,234,59,231,58,232,59,233 + ,5,229,4,230,3,225,2,226,3,227,2,228,128,229,127,230,126,225,125,226,122,227,121,228,113,234 + ,112,231,111,232,108,233,61,287,59,287 + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: 0.000030518509448,0.000030518509448,1.000000000000000,0.000030518509448,0.000030518509448,-1.000000000000000 + ,0.000000000000000,-0.216681420803070,0.976226091384888,0.000000000000000,-0.216681420803070,-0.976226091384888 + ,0.000030518509448,0.216589868068695,0.976256608963013,0.000030518509448,0.216589868068695,-0.976256608963013 + ,0.000000000000000,-0.404400765895844,0.914578676223755,0.000000000000000,-0.404400765895844,-0.914578676223755 + ,-0.000061037018895,0.404309213161469,0.914609193801880,-0.000061037018895,0.404309213161469,-0.914609193801880 + ,0.000000000000000,-0.555375814437866,0.831568360328674,0.000000000000000,-0.555375814437866,-0.831568360328674 + ,0.000000000000000,0.555375814437866,0.831568360328674,0.000000000000000,0.555375814437866,-0.831568360328674 + ,0.000000000000000,-0.707052826881409,0.707144379615784,0.000000000000000,-0.707052826881409,-0.707144379615784 + ,0.000000000000000,0.707052826881409,0.707144379615784,0.000000000000000,0.707052826881409,-0.707144379615784 + ,0.000000000000000,-0.831507325172424,0.555497884750366,0.000000000000000,-0.831507325172424,-0.555497884750366 + ,0.000000000000000,0.831507325172424,0.555497884750366,0.000000000000000,0.831507325172424,-0.555497884750366 + ,0.000000000000000,-0.923947870731354,0.382488489151001,0.000000000000000,-0.923947870731354,-0.382488489151001 + ,0.000000000000000,0.923947870731354,0.382488489151001,0.000000000000000,0.923947870731354,-0.382488489151001 + ,0.000000000000000,-0.979857802391052,0.199682608246803,0.000000000000000,-0.979857802391052,-0.199682608246803 + ,0.000000000000000,0.979857802391052,0.199682608246803,0.000000000000000,0.979857802391052,-0.199682608246803 + ,0.000000000000000,-0.999969482421875,0.000000000000000,0.000000000000000,0.999969482421875,0.000000000000000 + ,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000 + ,0.000000000000000,0.979705214500427,-0.200292974710464,0.000000000000000,0.979705214500427,0.200292974710464 + ,0.000000000000000,-0.979705214500427,-0.200292974710464,0.000000000000000,-0.979705214500427,0.200292974710464 + ,0.000000000000000,0.923947870731354,-0.382488489151001,0.000000000000000,0.923947870731354,0.382488489151001 + ,0.000000000000000,-0.923947870731354,-0.382488489151001,0.000000000000000,-0.923947870731354,0.382488489151001 + ,0.000000000000000,0.831507325172424,-0.555497884750366,0.000000000000000,0.831507325172424,0.555497884750366 + ,0.000000000000000,-0.831507325172424,-0.555497884750366,0.000000000000000,-0.831507325172424,0.555497884750366 + ,0.000000000000000,0.707052826881409,-0.707144379615784,0.000000000000000,0.707052826881409,0.707144379615784 + ,0.000000000000000,-0.707052826881409,-0.707144379615784,0.000000000000000,-0.707052826881409,0.707144379615784 + ,0.000000000000000,0.555375814437866,-0.831568360328674,0.000000000000000,0.555375814437866,0.831568360328674 + ,0.000000000000000,-0.555375814437866,-0.831568360328674,0.000000000000000,-0.555375814437866,0.831568360328674 + ,0.000030518509448,0.431714832782745,-0.901974558830261,0.000000000000000,0.431775867938995,0.901974558830261 + ,0.000030518509448,-0.431714832782745,-0.901974558830261,0.000000000000000,-0.431653797626495,0.902005076408386 + ,0.000000000000000,0.240852072834969,-0.970549643039703,0.000000000000000,0.240913107991219,0.970519125461578 + ,0.000000000000000,-0.240852072834969,-0.970549643039703,0.000000000000000,-0.240791037678719,0.970549643039703 + ,-0.000030518509448,0.000000000000000,-1.000000000000000,-0.623767793178558,0.781579017639160,0.000000000000000 + ,-0.623767793178558,-0.781579017639160,0.000000000000000,0.623767793178558,0.781579017639160,0.000000000000000 + ,0.623767793178558,-0.781579017639160,0.000000000000000,-0.616687536239624,0.771202743053436,-0.157658621668816 + ,-0.616687536239624,0.771202743053436,0.157658621668816,-0.616687536239624,-0.771202743053436,-0.157658621668816 + ,-0.616687536239624,-0.771202743053436,0.157658621668816,0.616687536239624,0.771202743053436,-0.157658621668816 + ,0.616687536239624,0.771202743053436,0.157658621668816,0.616687536239624,-0.771202743053436,-0.157658621668816 + ,0.616687536239624,-0.771202743053436,0.157658621668816,-0.607318341732025,0.734031200408936,-0.303842276334763 + ,-0.607318341732025,0.734031200408936,0.303842276334763,-0.607318341732025,-0.734031200408936,-0.303842276334763 + ,-0.607318341732025,-0.734031200408936,0.303842276334763,0.607318341732025,0.734031200408936,-0.303842276334763 + ,0.607318341732025,0.734031200408936,0.303842276334763,0.607318341732025,-0.734031200408936,-0.303842276334763 + ,0.607318341732025,-0.734031200408936,0.303842276334763,-0.603259384632111,0.663136720657349,-0.443037211894989 + ,-0.603259384632111,0.663136720657349,0.443037211894989,-0.603259384632111,-0.663136720657349,-0.443037211894989 + ,-0.603259384632111,-0.663136720657349,0.443037211894989,0.603259384632111,0.663136720657349,-0.443037211894989 + ,0.603259384632111,0.663136720657349,0.443037211894989,0.603259384632111,-0.663136720657349,-0.443037211894989 + ,0.603259384632111,-0.663136720657349,0.443037211894989,-0.603289902210236,0.563859999179840,-0.563951551914215 + ,-0.603289902210236,0.563859999179840,0.563951551914215,-0.603289902210236,-0.563859999179840,-0.563951551914215 + ,-0.603289902210236,-0.563859999179840,0.563951551914215,0.603289902210236,0.563859999179840,-0.563951551914215 + ,0.603289902210236,0.563859999179840,0.563951551914215,0.603289902210236,-0.563859999179840,-0.563951551914215 + ,0.603289902210236,-0.563859999179840,0.563951551914215,-0.607409894466400,0.441175580024719,-0.660573124885559 + ,-0.607409894466400,0.441175580024719,0.660573124885559,-0.607409894466400,-0.441175580024719,-0.660573124885559 + ,-0.607409894466400,-0.441175580024719,0.660573124885559,0.607409894466400,0.441175580024719,-0.660573124885559 + ,0.607409894466400,0.441175580024719,0.660573124885559,0.607409894466400,-0.441175580024719,-0.660573124885559 + ,0.607409894466400,-0.441175580024719,0.660573124885559,-0.619769871234894,0.340159296989441,-0.707174897193909 + ,-0.619342625141144,0.340952783823013,0.707205414772034,-0.618945896625519,-0.339030116796494,-0.708456695079803 + ,-0.618945896625519,-0.339030116796494,0.708456695079803,0.619342625141144,0.340952783823013,-0.707205414772034 + ,0.619342625141144,0.340952783823013,0.707205414772034,0.619342625141144,-0.340952783823013,-0.707205414772034 + ,0.619769871234894,-0.340159296989441,0.707174897193909,-0.037202063947916,-0.037446212023497,-0.998596131801605 + ,-0.036744285374880,0.037873469293118,-0.998596131801605,-0.036744285374880,0.037873469293118,0.998596131801605 + ,0.037202063947916,0.037446212023497,0.998596131801605,-0.394299149513245,0.395153671503067,0.829676210880280 + ,-0.394299149513245,0.395153671503067,-0.829676210880280,-0.785668492317200,-0.249061554670334,0.566240429878235 + ,-0.786034703254700,-0.248420670628548,-0.566026806831360,-0.786400973796844,0.249671921133995,0.564958631992340 + ,-0.786400973796844,0.249671921133995,-0.564958631992340,0.786034703254700,-0.248420670628548,0.566026806831360 + ,0.786034703254700,-0.248420670628548,-0.566026806831360,0.786034703254700,0.248420670628548,0.566026806831360 + ,0.785668492317200,0.249061554670334,-0.566240429878235,-0.797204494476318,-0.335276335477829,0.502029478549957 + ,-0.797204494476318,-0.335276335477829,-0.502029478549957,-0.797204494476318,0.335276335477829,0.502029478549957 + ,-0.797204494476318,0.335276335477829,-0.502029478549957,0.797204494476318,-0.335276335477829,0.502029478549957 + ,0.797204494476318,-0.335276335477829,-0.502029478549957,0.797204494476318,0.335276335477829,0.502029478549957 + ,0.797204494476318,0.335276335477829,-0.502029478549957,-0.800286889076233,-0.423932611942291,0.423993647098541 + ,-0.800286889076233,-0.423932611942291,-0.423993647098541,-0.800286889076233,0.423932611942291,0.423993647098541 + ,-0.800286889076233,0.423932611942291,-0.423993647098541,0.800286889076233,-0.423932611942291,0.423993647098541 + ,0.800286889076233,-0.423932611942291,-0.423993647098541,0.800286889076233,0.423932611942291,0.423993647098541 + ,0.800286889076233,0.423932611942291,-0.423993647098541,-0.800317406654358,-0.498519837856293,0.333048492670059 + ,-0.800317406654358,-0.498519837856293,-0.333048492670059,-0.800317406654358,0.498519837856293,0.333048492670059 + ,-0.800317406654358,0.498519837856293,-0.333048492670059,0.800317406654358,-0.498519837856293,0.333048492670059 + ,0.800317406654358,-0.498519837856293,-0.333048492670059,0.800317406654358,0.498519837856293,0.333048492670059 + ,0.800317406654358,0.498519837856293,-0.333048492670059,-0.797265529632568,-0.557695269584656,0.230872526764870 + ,-0.797265529632568,-0.557695269584656,-0.230872526764870,-0.797265529632568,0.557695269584656,0.230872526764870 + ,-0.797265529632568,0.557695269584656,-0.230872526764870,0.797265529632568,-0.557695269584656,0.230872526764870 + ,0.797265529632568,-0.557695269584656,-0.230872526764870,0.797265529632568,0.557695269584656,0.230872526764870 + ,0.797265529632568,0.557695269584656,-0.230872526764870,-0.789819002151489,-0.600970506668091,0.122470781207085 + ,-0.789819002151489,-0.600970506668091,-0.122470781207085,-0.789819002151489,0.600970506668091,0.122470781207085 + ,-0.789819002151489,0.600970506668091,-0.122470781207085,0.789819002151489,-0.600970506668091,0.122470781207085 + ,0.789819002151489,-0.600970506668091,-0.122470781207085,0.789819002151489,0.600970506668091,0.122470781207085 + ,0.789819002151489,0.600970506668091,-0.122470781207085,-0.785149693489075,-0.619251072406769,0.000000000000000 + ,-0.785149693489075,0.619251072406769,0.000000000000000,0.785149693489075,-0.619251072406769,0.000000000000000 + ,0.785149693489075,0.619251072406769,0.000000000000000,0.619251072406769,-0.785149693489075,0.000000000000000 + ,-0.619251072406769,-0.785149693489075,0.000000000000000,0.619251072406769,0.785149693489075,0.000000000000000 + ,-0.619251072406769,0.785149693489075,0.000000000000000,0.600970506668091,-0.789819002151489,-0.122470781207085 + ,0.600970506668091,-0.789819002151489,0.122470781207085,-0.600970506668091,-0.789819002151489,-0.122470781207085 + ,-0.600970506668091,-0.789819002151489,0.122470781207085,0.600970506668091,0.789819002151489,-0.122470781207085 + ,0.600970506668091,0.789819002151489,0.122470781207085,-0.600970506668091,0.789819002151489,-0.122470781207085 + ,-0.600970506668091,0.789819002151489,0.122470781207085,0.557695269584656,-0.797265529632568,-0.230872526764870 + ,0.557695269584656,-0.797265529632568,0.230872526764870,-0.557695269584656,-0.797265529632568,-0.230872526764870 + ,-0.557695269584656,-0.797265529632568,0.230872526764870,0.557695269584656,0.797265529632568,-0.230872526764870 + ,0.557695269584656,0.797265529632568,0.230872526764870,-0.557695269584656,0.797265529632568,-0.230872526764870 + ,-0.557695269584656,0.797265529632568,0.230872526764870,0.498519837856293,-0.800317406654358,-0.333048492670059 + ,0.498519837856293,-0.800317406654358,0.333048492670059,-0.498519837856293,-0.800317406654358,-0.333048492670059 + ,-0.498519837856293,-0.800317406654358,0.333048492670059,0.498519837856293,0.800317406654358,-0.333048492670059 + ,0.498519837856293,0.800317406654358,0.333048492670059,-0.498519837856293,0.800317406654358,-0.333048492670059 + ,-0.498519837856293,0.800317406654358,0.333048492670059,0.423932611942291,-0.800286889076233,-0.423993647098541 + ,0.423932611942291,-0.800286889076233,0.423993647098541,-0.423932611942291,-0.800286889076233,-0.423993647098541 + ,-0.423932611942291,-0.800286889076233,0.423993647098541,0.423932611942291,0.800286889076233,-0.423993647098541 + ,0.423932611942291,0.800286889076233,0.423993647098541,-0.423932611942291,0.800286889076233,-0.423993647098541 + ,-0.423932611942291,0.800286889076233,0.423993647098541,0.335276335477829,-0.797204494476318,-0.502029478549957 + ,0.335276335477829,-0.797204494476318,0.502029478549957,-0.335276335477829,-0.797204494476318,-0.502029478549957 + ,-0.335276335477829,-0.797204494476318,0.502029478549957,0.335276335477829,0.797204494476318,-0.502029478549957 + ,0.335276335477829,0.797204494476318,0.502029478549957,-0.335276335477829,0.797204494476318,-0.502029478549957 + ,-0.335276335477829,0.797204494476318,0.502029478549957,0.249671921133995,-0.786400973796844,-0.564958631992340 + ,0.249671921133995,-0.786400973796844,0.564958631992340,-0.249671921133995,-0.786400973796844,-0.564958631992340 + ,-0.249031037092209,-0.786767184734344,0.564714491367340,0.249031037092209,0.786767184734344,-0.564714491367340 + ,0.249671921133995,0.786400973796844,0.564958631992340,-0.248420670628548,0.786034703254700,-0.566026806831360 + ,-0.248420670628548,0.786034703254700,0.566026806831360,0.395153671503067,-0.394299149513245,-0.829676210880280 + ,0.395153671503067,-0.394299149513245,0.829676210880280,-0.395153671503067,-0.394299149513245,-0.829676210880280 + ,-0.394634842872620,-0.394817948341370,0.829676210880280,0.394634842872620,0.394817948341370,-0.829676210880280 + ,0.395153671503067,0.394299149513245,0.829676210880280,0.037873469293118,-0.036744285374880,0.998596131801605 + ,0.037873469293118,-0.036744285374880,-0.998596131801605,-0.037873469293118,-0.036744285374880,0.998596131801605 + ,0.037873469293118,0.036744285374880,-0.998596131801605,-0.339030116796494,-0.618945896625519,0.708456695079803 + ,-0.339030116796494,-0.618945896625519,-0.708456695079803,0.339030116796494,-0.618945896625519,0.708456695079803 + ,0.339793086051941,-0.618488132953644,-0.708487212657928,-0.339793086051941,0.618488132953644,0.708487212657928 + ,-0.339030116796494,0.618945896625519,-0.708456695079803,0.340952783823013,0.619342625141144,0.707205414772034 + ,0.340952783823013,0.619342625141144,-0.707205414772034,-0.441175580024719,-0.607409894466400,0.660573124885559 + ,-0.441175580024719,-0.607409894466400,-0.660573124885559,0.441175580024719,-0.607409894466400,0.660573124885559 + ,0.441175580024719,-0.607409894466400,-0.660573124885559,-0.441175580024719,0.607409894466400,0.660573124885559 + ,-0.441175580024719,0.607409894466400,-0.660573124885559,0.441175580024719,0.607409894466400,0.660573124885559 + ,0.441175580024719,0.607409894466400,-0.660573124885559,-0.563859999179840,-0.603289902210236,0.563951551914215 + ,-0.563859999179840,-0.603289902210236,-0.563951551914215,0.563859999179840,-0.603289902210236,0.563951551914215 + ,0.563859999179840,-0.603289902210236,-0.563951551914215,-0.563859999179840,0.603289902210236,0.563951551914215 + ,-0.563859999179840,0.603289902210236,-0.563951551914215,0.563859999179840,0.603289902210236,0.563951551914215 + ,0.563859999179840,0.603289902210236,-0.563951551914215,-0.663136720657349,-0.603259384632111,0.443037211894989 + ,-0.663136720657349,-0.603259384632111,-0.443037211894989,0.663136720657349,-0.603259384632111,0.443037211894989 + ,0.663136720657349,-0.603259384632111,-0.443037211894989,-0.663136720657349,0.603259384632111,0.443037211894989 + ,-0.663136720657349,0.603259384632111,-0.443037211894989,0.663136720657349,0.603259384632111,0.443037211894989 + ,0.663136720657349,0.603259384632111,-0.443037211894989,-0.734031200408936,-0.607318341732025,0.303842276334763 + ,-0.734031200408936,-0.607318341732025,-0.303842276334763,0.734031200408936,-0.607318341732025,0.303842276334763 + ,0.734031200408936,-0.607318341732025,-0.303842276334763,-0.734031200408936,0.607318341732025,0.303842276334763 + ,-0.734031200408936,0.607318341732025,-0.303842276334763,0.734031200408936,0.607318341732025,0.303842276334763 + ,0.734031200408936,0.607318341732025,-0.303842276334763,-0.771202743053436,-0.616687536239624,0.157658621668816 + ,-0.771202743053436,-0.616687536239624,-0.157658621668816,0.771202743053436,-0.616687536239624,0.157658621668816 + ,0.771202743053436,-0.616687536239624,-0.157658621668816,-0.771202743053436,0.616687536239624,0.157658621668816 + ,-0.771202743053436,0.616687536239624,-0.157658621668816,0.771202743053436,0.616687536239624,0.157658621668816 + ,0.771202743053436,0.616687536239624,-0.157658621668816,-0.781579017639160,-0.623767793178558,0.000000000000000 + ,0.781579017639160,-0.623767793178558,0.000000000000000,-0.781579017639160,0.623767793178558,0.000000000000000 + ,0.781579017639160,0.623767793178558,0.000000000000000,0.000000000000000,-0.000030518509448,1.000000000000000 + ,-0.240852072834969,0.000000000000000,0.970549643039703,-0.240791037678719,0.000000000000000,-0.970549643039703 + ,0.240852072834969,0.000000000000000,0.970549643039703,0.240913107991219,0.000000000000000,-0.970519125461578 + ,-0.431714832782745,0.000030518509448,0.901974558830261,-0.431653797626495,0.000000000000000,-0.902005076408386 + ,0.431714832782745,0.000030518509448,0.901974558830261,0.431775867938995,0.000000000000000,-0.901974558830261 + ,-0.555375814437866,0.000000000000000,0.831568360328674,-0.555375814437866,0.000000000000000,-0.831568360328674 + ,0.555375814437866,0.000000000000000,0.831568360328674,0.555375814437866,0.000000000000000,-0.831568360328674 + ,-0.707052826881409,0.000000000000000,0.707144379615784,-0.707052826881409,0.000000000000000,-0.707144379615784 + ,0.707052826881409,0.000000000000000,0.707144379615784,0.707052826881409,0.000000000000000,-0.707144379615784 + ,-0.831507325172424,0.000000000000000,0.555497884750366,-0.831507325172424,0.000000000000000,-0.555497884750366 + ,0.831507325172424,0.000000000000000,0.555497884750366,0.831507325172424,0.000000000000000,-0.555497884750366 + ,-0.923947870731354,0.000000000000000,0.382488489151001,-0.923947870731354,0.000000000000000,-0.382488489151001 + ,0.923947870731354,0.000000000000000,0.382488489151001,0.923947870731354,0.000000000000000,-0.382488489151001 + ,-0.979705214500427,0.000000000000000,0.200292974710464,-0.979705214500427,0.000000000000000,-0.200292974710464 + ,0.979705214500427,0.000000000000000,0.200292974710464,0.979705214500427,0.000000000000000,-0.200292974710464 + ,-1.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000 + ,0.999969482421875,0.000000000000000,0.000000000000000,-0.999969482421875,0.000000000000000,0.000000000000000 + ,0.979857802391052,0.000000000000000,-0.199682608246803,0.979857802391052,0.000000000000000,0.199682608246803 + ,-0.979857802391052,0.000000000000000,-0.199682608246803,-0.979857802391052,0.000000000000000,0.199682608246803 + ,0.923947870731354,0.000000000000000,-0.382488489151001,0.923947870731354,0.000000000000000,0.382488489151001 + ,-0.923947870731354,0.000000000000000,-0.382488489151001,-0.923947870731354,0.000000000000000,0.382488489151001 + ,0.831507325172424,0.000000000000000,-0.555497884750366,0.831507325172424,0.000000000000000,0.555497884750366 + ,-0.831507325172424,0.000000000000000,-0.555497884750366,-0.831507325172424,0.000000000000000,0.555497884750366 + ,0.707052826881409,0.000000000000000,-0.707144379615784,0.707052826881409,0.000000000000000,0.707144379615784 + ,-0.707052826881409,0.000000000000000,-0.707144379615784,-0.707052826881409,0.000000000000000,0.707144379615784 + ,0.555375814437866,0.000000000000000,-0.831568360328674,0.555375814437866,0.000000000000000,0.831568360328674 + ,-0.555375814437866,0.000000000000000,-0.831568360328674,-0.555375814437866,0.000000000000000,0.831568360328674 + ,0.404217660427094,0.000000000000000,-0.914639711380005,0.404217660427094,0.000000000000000,0.914639711380005 + ,-0.404309213161469,-0.000061037018895,-0.914609193801880,-0.404309213161469,-0.000061037018895,0.914609193801880 + ,0.216498300433159,0.000000000000000,-0.976256608963013,0.216498300433159,0.000000000000000,0.976256608963013 + ,-0.216589868068695,0.000030518509448,-0.976256608963013,-0.216589868068695,0.000030518509448,0.976256608963013 + } + LayerElementSmoothing: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "Direct" + Smoothing: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + ,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,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 + } + LayerElementSmoothing: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByEdge" + ReferenceInformationType: "Direct" + Smoothing: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + ,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + LayerElementUV: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: 0.785983,0.661977,0.785983,0.945875,0.189798,0.661977,0.189798,0.661977,0.785983,0.945875,0.785983,0.661977,0.189798,0.661977 + ,0.785983,0.945875,0.785983,0.661977,0.785983,0.661977,0.785983,0.945875,0.189798,0.661977,0.189798,0.661977,0.785983,0.945875 + ,0.785983,0.661977,0.785983,0.661977,0.785983,0.945875,0.189798,0.661977,0.785983,0.661977,0.785983,0.945875,0.189798,0.661977 + ,0.189798,0.661977,0.785983,0.945875,0.785983,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.189798,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.189798,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.945875,0.785983,0.661977,0.189798,0.661977,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.945875,0.189798,0.661977,0.785983,0.661977,0.785983,0.945875,0.785983,0.945875,0.785983,0.661977 + ,0.189798,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.945875,0.785983,0.945875,0.785983,0.661977,0.189798,0.661977 + ,0.785983,0.945875,0.785983,0.661977,0.189798,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.945875,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.780420,0.071118 + ,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118 + ,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696 + ,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696 + ,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696 + ,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696 + ,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696 + ,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118 + ,0.780420,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696 + ,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696 + ,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118 + ,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696 + ,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118 + ,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118 + ,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118 + ,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118 + ,0.780420,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.214404,0.071118 + ,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696 + ,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696 + ,0.214404,0.313696,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696 + ,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118 + ,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118 + ,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696 + ,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.313696,0.780420,0.071118 + ,0.214404,0.071118,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118 + ,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696 + ,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118 + ,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118 + ,0.780420,0.313696,0.214404,0.313696,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696 + ,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118 + ,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118 + ,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696 + ,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696 + ,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118 + ,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118 + ,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696 + ,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118 + ,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696 + ,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118 + ,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118 + ,0.214404,0.071118,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118 + ,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696 + ,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696 + ,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696 + ,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696 + ,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118 + ,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696 + ,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118 + ,0.214404,0.071118,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.780420,0.313696 + ,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696 + ,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118 + ,0.214404,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696 + ,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.313696 + ,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118 + ,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118 + ,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.214404,0.071118,0.780420,0.071118 + ,0.780420,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696 + ,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696 + ,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696 + ,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118 + ,0.214404,0.071118,0.214404,0.313696,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118 + ,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118 + ,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696 + ,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696,0.780420,0.071118,0.214404,0.071118,0.214404,0.313696,0.780420,0.313696 + ,0.780420,0.071118,0.214404,0.071118,0.780420,0.071118,0.780420,0.313696,0.214404,0.313696,0.214404,0.071118,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.189798,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.189798,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.945875,0.785983,0.945875,0.785983,0.661977,0.189798,0.661977,0.785983,0.945875,0.785983,0.661977 + ,0.189798,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.945875,0.785983,0.945875,0.785983,0.661977,0.189798,0.661977 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.945875,0.189798,0.661977,0.785983,0.661977,0.785983,0.945875,0.785983,0.945875 + ,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977 + ,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977 + ,0.189798,0.661977,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977 + ,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977 + ,0.189798,0.406469,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.785983,0.661977,0.785983,0.406469 + ,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.189798,0.406469 + ,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977 + ,0.189798,0.406469,0.785983,0.406469,0.785983,0.661977,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.406469,0.189798,0.406469,0.189798,0.661977,0.189798,0.406469,0.785983,0.406469 + ,0.785983,0.661977,0.189798,0.661977,0.189798,0.661977,0.785983,0.945875,0.785983,0.661977,0.785983,0.661977,0.785983,0.945875 + ,0.189798,0.661977,0.785983,0.661977,0.785983,0.945875,0.189798,0.661977,0.189798,0.661977,0.785983,0.945875,0.785983,0.661977 + ,0.785983,0.661977,0.785983,0.945875,0.189798,0.661977,0.189798,0.661977,0.785983,0.945875,0.785983,0.661977,0.189798,0.661977 + ,0.785983,0.945875,0.785983,0.661977,0.785983,0.661977,0.785983,0.945875,0.189798,0.661977 + UVIndex: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54 + ,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109 + ,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164 + ,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219 + ,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274 + ,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329 + ,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,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,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,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,540,541,542,543,544,545,546,547,548,549 + ,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,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,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,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769 + ,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824 + ,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879 + ,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934 + ,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989 + ,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044 + ,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099 + ,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154 + ,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209 + ,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264 + ,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319 + ,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374 + ,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429 + ,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439 + } + LayerElementTexture: 0 { + Version: 101 + Name: "UVTex" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + BlendMode: "Translucent" + TextureAlpha: 1 + TextureId: 0 + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: 0 + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: "Model::Producer Perspective", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,71.299999999999997,287.500000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",10.000000 + Property: "FarPlane", "double", "",4000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",0 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,71.300000,287.500000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Top", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Bottom", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,-4000.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,-4000.000000,0.000000 + Up: 0,0,-1 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Front", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Back", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,-4000.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 0.000000,0.000000,-4000.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Right", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: 4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Model: "Model::Producer Left", "Camera" { + Version: 232 + Properties60: { + Property: "QuaternionInterpolate", "bool", "",0 + Property: "Visibility", "Visibility", "A+",1 + Property: "Lcl Translation", "Lcl Translation", "A+",-4000.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Rotation", "Lcl Rotation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 + Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 + Property: "RotationOffset", "Vector3D", "",0,0,0 + Property: "RotationPivot", "Vector3D", "",0,0,0 + Property: "ScalingOffset", "Vector3D", "",0,0,0 + Property: "ScalingPivot", "Vector3D", "",0,0,0 + Property: "TranslationActive", "bool", "",0 + Property: "TranslationMin", "Vector3D", "",0,0,0 + Property: "TranslationMax", "Vector3D", "",0,0,0 + Property: "TranslationMinX", "bool", "",0 + Property: "TranslationMinY", "bool", "",0 + Property: "TranslationMinZ", "bool", "",0 + Property: "TranslationMaxX", "bool", "",0 + Property: "TranslationMaxY", "bool", "",0 + Property: "TranslationMaxZ", "bool", "",0 + Property: "RotationOrder", "enum", "",0 + Property: "RotationSpaceForLimitOnly", "bool", "",0 + Property: "AxisLen", "double", "",10 + Property: "PreRotation", "Vector3D", "",0,0,0 + Property: "PostRotation", "Vector3D", "",0,0,0 + Property: "RotationActive", "bool", "",0 + Property: "RotationMin", "Vector3D", "",0,0,0 + Property: "RotationMax", "Vector3D", "",0,0,0 + Property: "RotationMinX", "bool", "",0 + Property: "RotationMinY", "bool", "",0 + Property: "RotationMinZ", "bool", "",0 + Property: "RotationMaxX", "bool", "",0 + Property: "RotationMaxY", "bool", "",0 + Property: "RotationMaxZ", "bool", "",0 + Property: "RotationStiffnessX", "double", "",0 + Property: "RotationStiffnessY", "double", "",0 + Property: "RotationStiffnessZ", "double", "",0 + Property: "MinDampRangeX", "double", "",0 + Property: "MinDampRangeY", "double", "",0 + Property: "MinDampRangeZ", "double", "",0 + Property: "MaxDampRangeX", "double", "",0 + Property: "MaxDampRangeY", "double", "",0 + Property: "MaxDampRangeZ", "double", "",0 + Property: "MinDampStrengthX", "double", "",0 + Property: "MinDampStrengthY", "double", "",0 + Property: "MinDampStrengthZ", "double", "",0 + Property: "MaxDampStrengthX", "double", "",0 + Property: "MaxDampStrengthY", "double", "",0 + Property: "MaxDampStrengthZ", "double", "",0 + Property: "PreferedAngleX", "double", "",0 + Property: "PreferedAngleY", "double", "",0 + Property: "PreferedAngleZ", "double", "",0 + Property: "InheritType", "enum", "",0 + Property: "ScalingActive", "bool", "",0 + Property: "ScalingMin", "Vector3D", "",1,1,1 + Property: "ScalingMax", "Vector3D", "",1,1,1 + Property: "ScalingMinX", "bool", "",0 + Property: "ScalingMinY", "bool", "",0 + Property: "ScalingMinZ", "bool", "",0 + Property: "ScalingMaxX", "bool", "",0 + Property: "ScalingMaxY", "bool", "",0 + Property: "ScalingMaxZ", "bool", "",0 + Property: "GeometricTranslation", "Vector3D", "",0,0,0 + Property: "GeometricRotation", "Vector3D", "",0,0,0 + Property: "GeometricScaling", "Vector3D", "",1,1,1 + Property: "LookAtProperty", "object", "" + Property: "UpVectorProperty", "object", "" + Property: "Show", "bool", "",1 + Property: "NegativePercentShapeSupport", "bool", "",1 + Property: "DefaultAttributeIndex", "int", "",0 + Property: "Color", "Color", "A",0.8,0.8,0.8 + Property: "Roll", "Roll", "A+",0 + Property: "FieldOfView", "FieldOfView", "A+",40 + Property: "FieldOfViewX", "FieldOfView", "A+",1 + Property: "FieldOfViewY", "FieldOfView", "A+",1 + Property: "OpticalCenterX", "Real", "A+",0 + Property: "OpticalCenterY", "Real", "A+",0 + Property: "BackgroundColor", "Color", "A+",0.63,0.63,0.63 + Property: "TurnTable", "Real", "A+",0 + Property: "DisplayTurnTableIcon", "bool", "",1 + Property: "Motion Blur Intensity", "Real", "A+",1 + Property: "UseMotionBlur", "bool", "",0 + Property: "UseRealTimeMotionBlur", "bool", "",1 + Property: "ResolutionMode", "enum", "",0 + Property: "ApertureMode", "enum", "",2 + Property: "GateFit", "enum", "",0 + Property: "FocalLength", "Real", "A+",21.3544940948486 + Property: "CameraFormat", "enum", "",0 + Property: "AspectW", "double", "",320 + Property: "AspectH", "double", "",200 + Property: "PixelAspectRatio", "double", "",1 + Property: "UseFrameColor", "bool", "",0 + Property: "FrameColor", "ColorRGB", "",0.3,0.3,0.3 + Property: "ShowName", "bool", "",1 + Property: "ShowGrid", "bool", "",1 + Property: "ShowOpticalCenter", "bool", "",0 + Property: "ShowAzimut", "bool", "",1 + Property: "ShowTimeCode", "bool", "",0 + Property: "NearPlane", "double", "",1.000000 + Property: "FarPlane", "double", "",30000.000000 + Property: "FilmWidth", "double", "",0.816 + Property: "FilmHeight", "double", "",0.612 + Property: "FilmAspectRatio", "double", "",1.33333333333333 + Property: "FilmSqueezeRatio", "double", "",1 + Property: "FilmFormatIndex", "enum", "",4 + Property: "ViewFrustum", "bool", "",1 + Property: "ViewFrustumNearFarPlane", "bool", "",0 + Property: "ViewFrustumBackPlaneMode", "enum", "",2 + Property: "BackPlaneDistance", "double", "",100 + Property: "BackPlaneDistanceMode", "enum", "",0 + Property: "ViewCameraToLookAt", "bool", "",1 + Property: "LockMode", "bool", "",0 + Property: "LockInterestNavigation", "bool", "",0 + Property: "FitImage", "bool", "",0 + Property: "Crop", "bool", "",0 + Property: "Center", "bool", "",1 + Property: "KeepRatio", "bool", "",1 + Property: "BackgroundMode", "enum", "",0 + Property: "BackgroundAlphaTreshold", "double", "",0.5 + Property: "ForegroundTransparent", "bool", "",1 + Property: "DisplaySafeArea", "bool", "",0 + Property: "SafeAreaDisplayStyle", "enum", "",1 + Property: "SafeAreaAspectRatio", "double", "",1.33333333333333 + Property: "Use2DMagnifierZoom", "bool", "",0 + Property: "2D Magnifier Zoom", "Real", "A+",100 + Property: "2D Magnifier X", "Real", "A+",50 + Property: "2D Magnifier Y", "Real", "A+",50 + Property: "CameraProjectionType", "enum", "",1 + Property: "UseRealTimeDOFAndAA", "bool", "",0 + Property: "UseDepthOfField", "bool", "",0 + Property: "FocusSource", "enum", "",0 + Property: "FocusAngle", "double", "",3.5 + Property: "FocusDistance", "double", "",200 + Property: "UseAntialiasing", "bool", "",0 + Property: "AntialiasingIntensity", "double", "",0.77777 + Property: "UseAccumulationBuffer", "bool", "",0 + Property: "FrameSamplingCount", "int", "",7 + } + MultiLayer: 0 + MultiTake: 0 + Hidden: "True" + Shading: Y + Culling: "CullingOff" + TypeFlags: "Camera" + GeometryVersion: 124 + Position: -4000.000000,0.000000,0.000000 + Up: 0,1,0 + LookAt: 0,0,0 + ShowInfoOnMoving: 1 + ShowAudio: 0 + AudioColor: 0,1,0 + CameraOrthoZoom: 1 + } + Material: "Material::None__WoodenBall_png", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties60: { + Property: "ShadingModel", "KString", "", "Phong" + Property: "MultiLayer", "bool", "",0 + Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "EmissiveFactor", "double", "",0.0000 + Property: "AmbientColor", "ColorRGB", "",0.0000,0.0000,0.0000 + Property: "AmbientFactor", "double", "",0.5000 + Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "DiffuseFactor", "double", "",1.0000 + Property: "Bump", "Vector3D", "",0,0,0 + Property: "TransparentColor", "ColorRGB", "",1,1,1 + Property: "TransparencyFactor", "double", "",0.0000 + Property: "SpecularColor", "ColorRGB", "",0.8000,0.8000,0.8000 + Property: "SpecularFactor", "double", "",0.2000 + Property: "ShininessExponent", "double", "",80.0 + Property: "ReflectionColor", "ColorRGB", "",0,0,0 + Property: "ReflectionFactor", "double", "",1 + Property: "Emissive", "ColorRGB", "",0,0,0 + Property: "Ambient", "ColorRGB", "",0.0,0.0,0.0 + Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 + Property: "Specular", "ColorRGB", "",0.8,0.8,0.8 + Property: "Shininess", "double", "",20.0 + Property: "Opacity", "double", "",1.0 + Property: "Reflectivity", "double", "",0 + } + } + Video: "Video::WoodenBall_png", "Clip" { + Type: "Clip" + Properties60: { + Property: "FrameRate", "double", "",0 + Property: "LastFrame", "int", "",0 + Property: "Width", "int", "",0 + Property: "Height", "int", "",0 + Property: "Path", "charptr", "", "WoodenBall.png" + Property: "StartFrame", "int", "",0 + Property: "StopFrame", "int", "",0 + Property: "PlaySpeed", "double", "",1 + Property: "Offset", "KTime", "",0 + Property: "InterlaceMode", "enum", "",0 + Property: "FreeRunning", "bool", "",0 + Property: "Loop", "bool", "",0 + Property: "AccessMode", "enum", "",0 + } + UseMipMap: 0 + Filename: "WoodenBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\WoodenBall.png" + } + Texture: "Texture::WoodenBall_png", "TextureVideoClip" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::WoodenBall_png" + Properties60: { + Property: "Translation", "Vector", "A+",0,0,0 + Property: "Rotation", "Vector", "A+",0,0,0 + Property: "Scaling", "Vector", "A+",1,1,1 + Property: "Texture alpha", "Number", "A+",0 + Property: "TextureTypeUse", "enum", "",0 + Property: "CurrentTextureBlendMode", "enum", "",1 + Property: "UseMaterial", "bool", "",0 + Property: "UseMipMap", "bool", "",0 + Property: "CurrentMappingType", "enum", "",0 + Property: "UVSwap", "bool", "",0 + Property: "WrapModeU", "enum", "",0 + Property: "WrapModeV", "enum", "",0 + Property: "TextureRotationPivot", "Vector3D", "",0,0,0 + Property: "TextureScalingPivot", "Vector3D", "",0,0,0 + Property: "VideoProperty", "object", "" + } + Media: "Video::WoodenBall_png" + FileName: "WoodenBall.png" + RelativeFilename: "C:\Users\Steve\Dropbox\Shared Unity3D Projects\Ball Pack\Assets\Ball Pack\Blender\Materials\WoodenBall.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Pose: "Pose::BIND_POSES", "BindPose" { + Type: "BindPose" + Version: 100 + Properties60: { + } + NbPoseNodes: 2 + PoseNode: { + Node: "Model::blend_root" + Matrix: 1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + PoseNode: { + Node: "Model::WoodenBall" + Matrix: 0.500000000000000,0.000000000000004,0.000000087422777,0.000000000000000,0.000000087422777,-0.000000021855694,-0.500000000000000,0.000000000000000,0.000000000000000,0.500000000000000,-0.000000021855694,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 + } + } + GlobalSettings: { + Version: 1000 + Properties60: { + Property: "UpAxis", "int", "",1 + Property: "UpAxisSign", "int", "",1 + Property: "FrontAxis", "int", "",2 + Property: "FrontAxisSign", "int", "",1 + Property: "CoordAxis", "int", "",0 + Property: "CoordAxisSign", "int", "",1 + Property: "UnitScaleFactor", "double", "",100 + } + } +} + +; Object relations +;------------------------------------------------------------------ + +Relations: { + Model: "Model::blend_root", "Null" { + } + Model: "Model::WoodenBall", "Mesh" { + } + Model: "Model::Producer Perspective", "Camera" { + } + Model: "Model::Producer Top", "Camera" { + } + Model: "Model::Producer Bottom", "Camera" { + } + Model: "Model::Producer Front", "Camera" { + } + Model: "Model::Producer Back", "Camera" { + } + Model: "Model::Producer Right", "Camera" { + } + Model: "Model::Producer Left", "Camera" { + } + Model: "Model::Camera Switcher", "CameraSwitcher" { + } + Material: "Material::None__WoodenBall_png", "" { + } + Texture: "Texture::WoodenBall_png", "TextureVideoClip" { + } + Video: "Video::WoodenBall_png", "Clip" { + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + Connect: "OO", "Model::blend_root", "Model::Scene" + Connect: "OO", "Model::WoodenBall", "Model::blend_root" + Connect: "OO", "Material::None__WoodenBall_png", "Model::WoodenBall" + Connect: "OO", "Texture::WoodenBall_png", "Model::WoodenBall" + Connect: "OO", "Video::WoodenBall_png", "Texture::WoodenBall_png" +} +;Takes and animation section +;---------------------------------------------------- + +Takes: { + Current: "Default Take" + Take: "Default Take" { + FileName: "Default_Take.tak" + LocalTime: 0,479181389250 + ReferenceTime: 0,479181389250 + + ;Models animation + ;---------------------------------------------------- + Model: "Model::WoodenBall" { + Version: 1.1 + Channel: "Transform" { + Channel: "T" { + Channel: "X" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000000,L + Color: 0,0,1 + } + LayerType: 1 + } + Channel: "R" { + Channel: "X" { + Default: -90.000002504348856 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-90.000002504348856,L + Color: 1,0,0 + } + Channel: "Y" { + Default: -0.000010017912262 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,-0.000010017912262,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.000000000000438 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.000000000000438,L + Color: 0,0,1 + } + LayerType: 2 + } + Channel: "S" { + Channel: "X" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 1,0,0 + } + Channel: "Y" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,1,0 + } + Channel: "Z" { + Default: 0.500000000000000 + KeyVer: 4005 + KeyCount: 1 + Key: + 1924423250,0.500000000000000,L + Color: 0,0,1 + } + LayerType: 3 + } + } + } + } +} +;Version 5 settings +;------------------------------------------------------------------ + +Version5: { + AmbientRenderSettings: { + Version: 101 + AmbientLightColor: 0.0,0.0,0.0,0 + } + FogOptions: { + FlogEnable: 0 + FogMode: 0 + FogDensity: 0.000 + FogStart: 5.000 + FogEnd: 25.000 + FogColor: 0.1,0.1,0.1,1 + } + Settings: { + FrameRate: "24" + TimeFormat: 1 + SnapOnFrames: 0 + ReferenceTimeIndex: -1 + TimeLineStartTime: 0 + TimeLineStopTime: 479181389250 + } + RendererSetting: { + DefaultCamera: "Producer Perspective" + DefaultViewingMode: 0 + } +} diff --git a/Assets/resources/Ball Pack/Models/WoodenBall.fbx.meta b/Assets/resources/Ball Pack/Models/WoodenBall.fbx.meta new file mode 100644 index 00000000..d0ba7e31 --- /dev/null +++ b/Assets/resources/Ball Pack/Models/WoodenBall.fbx.meta @@ -0,0 +1,111 @@ +fileFormatVersion: 2 +guid: 61566139d5c1f844aaa682fa50106e58 +ModelImporter: + serializedVersion: 20200 + internalIDToNameTable: + - first: + 43: 4300000 + second: WoodenBall + - first: + 1001: 100100000 + second: DataTemplate __Singleton__ + - first: + 74: 1989289236423521904 + second: Default Take + externalObjects: {} + materials: + materialImportMode: 1 + materialName: 3 + materialSearch: 1 + materialLocation: 0 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + rigImportErrors: + rigImportWarnings: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + importAnimatedCustomProperties: 0 + importConstraints: 0 + animationCompression: 1 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + extraUserProperties: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + useSRGBMaterialColor: 1 + sortHierarchyByName: 1 + importVisibility: 0 + importBlendShapes: 1 + importCameras: 0 + importLights: 0 + fileIdsGeneration: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + keepQuads: 0 + weldVertices: 1 + bakeAxisConversion: 0 + preserveHierarchy: 0 + skinWeightsMode: 0 + maxBonesPerVertex: 4 + minBoneWeight: 0.001 + meshOptimizationFlags: -1 + indexFormat: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVMarginMethod: 0 + secondaryUVMinLightmapResolution: 40 + secondaryUVMinObjectScale: 1 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 4 + normalCalculationMode: 0 + legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 1 + blendShapeNormalImportMode: 1 + normalSmoothingSource: 0 + referencedClips: [] + importAnimation: 1 + humanDescription: + serializedVersion: 3 + human: [] + skeleton: [] + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + globalScale: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 1 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/Showcase.unity b/Assets/resources/Ball Pack/Showcase.unity new file mode 100644 index 00000000..acd666c2 --- /dev/null +++ b/Assets/resources/Ball Pack/Showcase.unity @@ -0,0 +1,460 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_AmbientEquatorColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_AmbientGroundColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!196 &3 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!157 &4 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 1 + m_BakeResolution: 50 + m_AtlasSize: 1024 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 0 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 1 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 512 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 0 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 0 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 0} + m_LightingSettings: {fileID: 4890085278179872738, guid: 2b6f2162fa823714385ebab891659bc1, type: 2} +--- !u!1 &25 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 48} + m_Layer: 0 + m_Name: Balls + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &26 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 49} + - component: {fileID: 78} + m_Layer: 0 + m_Name: Directional light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!1 &27 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 50} + - component: {fileID: 51} + - component: {fileID: 79} + - component: {fileID: 76} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &48 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 25} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 95} + - {fileID: 94} + - {fileID: 93} + - {fileID: 92} + - {fileID: 91} + - {fileID: 90} + - {fileID: 89} + - {fileID: 88} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &49 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 26} + m_LocalRotation: {x: 0.41219863, y: 0.3490998, z: -0.12488488, w: 0.83224124} + m_LocalPosition: {x: 0, y: 3.605245, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &50 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 27} + m_LocalRotation: {x: 0.18444622, y: 0, z: 0, w: 0.9828427} + m_LocalPosition: {x: 0, y: 2.2157001, z: -3.926672} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &51 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 27} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0.019607844} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 100 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!81 &76 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 27} + m_Enabled: 1 +--- !u!108 &78 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 26} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 1 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!124 &79 +Behaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 27} + m_Enabled: 1 +--- !u!1001 &80 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 48} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4a1142b17f64bbc40871f76529421f77, type: 3} +--- !u!1001 &81 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 48} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 38972d9a807375f4fbdbf2e076aa183f, type: 3} +--- !u!1001 &82 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 48} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: a97bdcf094fff104d9f67b004b505dd0, type: 3} +--- !u!1001 &83 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 48} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5f603b8c73c81724b9bdc1c65764eb4c, type: 3} +--- !u!1001 &84 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 48} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c455996f6e6b49d418895f41b5216202, type: 3} +--- !u!1001 &85 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 48} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5ae1b6d4c894f9c449d33837a633a8ec, type: 3} +--- !u!1001 &86 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 48} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 61566139d5c1f844aaa682fa50106e58, type: 3} +--- !u!1001 &87 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 48} + m_Modifications: [] + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 74cbada03bcd41d49acec56746acf71e, type: 3} +--- !u!4 &88 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -4216859302048453862, guid: 74cbada03bcd41d49acec56746acf71e, type: 3} + m_PrefabInstance: {fileID: 87} + m_PrefabAsset: {fileID: 0} +--- !u!4 &89 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -4216859302048453862, guid: 61566139d5c1f844aaa682fa50106e58, type: 3} + m_PrefabInstance: {fileID: 86} + m_PrefabAsset: {fileID: 0} +--- !u!4 &90 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -4216859302048453862, guid: 5ae1b6d4c894f9c449d33837a633a8ec, type: 3} + m_PrefabInstance: {fileID: 85} + m_PrefabAsset: {fileID: 0} +--- !u!4 &91 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -4216859302048453862, guid: c455996f6e6b49d418895f41b5216202, type: 3} + m_PrefabInstance: {fileID: 84} + m_PrefabAsset: {fileID: 0} +--- !u!4 &92 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -4216859302048453862, guid: 5f603b8c73c81724b9bdc1c65764eb4c, type: 3} + m_PrefabInstance: {fileID: 83} + m_PrefabAsset: {fileID: 0} +--- !u!4 &93 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -4216859302048453862, guid: a97bdcf094fff104d9f67b004b505dd0, type: 3} + m_PrefabInstance: {fileID: 82} + m_PrefabAsset: {fileID: 0} +--- !u!4 &94 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -4216859302048453862, guid: 38972d9a807375f4fbdbf2e076aa183f, type: 3} + m_PrefabInstance: {fileID: 81} + m_PrefabAsset: {fileID: 0} +--- !u!4 &95 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -4216859302048453862, guid: 4a1142b17f64bbc40871f76529421f77, type: 3} + m_PrefabInstance: {fileID: 80} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/resources/Ball Pack/Showcase.unity.meta b/Assets/resources/Ball Pack/Showcase.unity.meta new file mode 100644 index 00000000..2b143090 --- /dev/null +++ b/Assets/resources/Ball Pack/Showcase.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b0fafae756170fc4da9b2c0583673d75 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Ball Pack/ShowcaseSettings.lighting b/Assets/resources/Ball Pack/ShowcaseSettings.lighting new file mode 100644 index 00000000..6973f3aa --- /dev/null +++ b/Assets/resources/Ball Pack/ShowcaseSettings.lighting @@ -0,0 +1,63 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!850595691 &4890085278179872738 +LightingSettings: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: ShowcaseSettings + serializedVersion: 3 + m_GIWorkflowMode: 1 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_RealtimeEnvironmentLighting: 1 + m_BounceScale: 1 + m_AlbedoBoost: 1 + m_IndirectOutputScale: 1 + m_UsingShadowmask: 0 + m_BakeBackend: 0 + m_LightmapMaxSize: 1024 + m_BakeResolution: 50 + m_Padding: 2 + m_TextureCompression: 0 + m_AO: 1 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAO: 0 + m_MixedBakeMode: 1 + m_LightmapsBakeMode: 1 + m_FilterMode: 1 + m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_RealtimeResolution: 1 + m_ForceWhiteAlbedo: 0 + m_ForceUpdates: 0 + m_FinalGather: 0 + m_FinalGatherRayCount: 256 + m_FinalGatherFiltering: 1 + m_PVRCulling: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVREnvironmentSampleCount: 512 + m_PVREnvironmentReferencePointCount: 2048 + m_LightProbeSampleCountMultiplier: 4 + m_PVRBounces: 2 + m_PVRMinBounces: 2 + m_PVREnvironmentMIS: 0 + m_PVRFilteringMode: 0 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 diff --git a/Assets/resources/Ball Pack/ShowcaseSettings.lighting.meta b/Assets/resources/Ball Pack/ShowcaseSettings.lighting.meta new file mode 100644 index 00000000..44c27aa3 --- /dev/null +++ b/Assets/resources/Ball Pack/ShowcaseSettings.lighting.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2b6f2162fa823714385ebab891659bc1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 4890085278179872738 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Game Asset Pack.meta b/Assets/resources/Game Asset Pack.meta new file mode 100644 index 00000000..1eaa3332 --- /dev/null +++ b/Assets/resources/Game Asset Pack.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3d184d24ae880bb41b5fc0e496f65fa8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Game Asset Pack/Handpainted mystic hammer.meta b/Assets/resources/Game Asset Pack/Handpainted mystic hammer.meta new file mode 100644 index 00000000..6ca29878 --- /dev/null +++ b/Assets/resources/Game Asset Pack/Handpainted mystic hammer.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1411fd61fb0421142933373f0aac6e90 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Materials.meta b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Materials.meta new file mode 100644 index 00000000..b8050126 --- /dev/null +++ b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Materials.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 371355f463a712e4fb929860620b9558 +folderAsset: yes +timeCreated: 1434182354 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Materials/Mystic_hammer.mat b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Materials/Mystic_hammer.mat new file mode 100644 index 00000000..214357dc --- /dev/null +++ b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Materials/Mystic_hammer.mat @@ -0,0 +1,80 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Mystic_hammer + m_Shader: {fileID: 4800000, guid: 48dca5b99d113b8d11006bab44295342, type: 3} + m_ShaderKeywords: + m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 2800000, guid: 36eabefa8e1db734f976c731a5045029, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Ramp: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _EmissionScaleUI: 0 + - _Glossiness: 0.5 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 0.8, g: 0.8, b: 0.8, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _EmissionColorUI: {r: 1, g: 1, b: 1, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Materials/Mystic_hammer.mat.meta b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Materials/Mystic_hammer.mat.meta new file mode 100644 index 00000000..280226ae --- /dev/null +++ b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Materials/Mystic_hammer.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2a1affdcfbdf5d14d8fdfab7c6f4c517 +timeCreated: 1434182354 +licenseType: Store +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh.meta b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh.meta new file mode 100644 index 00000000..63c746c7 --- /dev/null +++ b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: def8c7002e95ac944adc25f2fda9f576 +folderAsset: yes +timeCreated: 1434182538 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh/Mystic_hammer.fbm.meta b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh/Mystic_hammer.fbm.meta new file mode 100644 index 00000000..18d3da0e --- /dev/null +++ b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh/Mystic_hammer.fbm.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d014be8fb7016cb46a0d87f20c4edfd9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh/Mystic_hammer.fbx b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh/Mystic_hammer.fbx new file mode 100644 index 00000000..71731570 Binary files /dev/null and b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh/Mystic_hammer.fbx differ diff --git a/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh/Mystic_hammer.fbx.meta b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh/Mystic_hammer.fbx.meta new file mode 100644 index 00000000..b63c21d2 --- /dev/null +++ b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Mesh/Mystic_hammer.fbx.meta @@ -0,0 +1,70 @@ +fileFormatVersion: 2 +guid: 323d16512ab93f243b2a4606e1011381 +timeCreated: 1434182354 +licenseType: Store +ModelImporter: + serializedVersion: 18 + fileIDToRecycleName: + 100000: //RootNode + 400000: //RootNode + 2300000: //RootNode + 3300000: //RootNode + 4300000: Mystic_hammer + materials: + importMaterials: 1 + materialName: 0 + materialSearch: 1 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + optimizeGameObjects: 0 + motionNodeName: + animationCompression: 1 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 1 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 1 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: [] + skeleton: [] + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Textures.meta b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Textures.meta new file mode 100644 index 00000000..36b64550 --- /dev/null +++ b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Textures.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 3f5b6fa60a425db4991a1a78ce66f9a9 +folderAsset: yes +timeCreated: 1434182533 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Textures/Mystic_hammer.png b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Textures/Mystic_hammer.png new file mode 100644 index 00000000..0652705b Binary files /dev/null and b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Textures/Mystic_hammer.png differ diff --git a/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Textures/Mystic_hammer.png.meta b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Textures/Mystic_hammer.png.meta new file mode 100644 index 00000000..241a442b --- /dev/null +++ b/Assets/resources/Game Asset Pack/Handpainted mystic hammer/Textures/Mystic_hammer.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 36eabefa8e1db734f976c731a5045029 +timeCreated: 1434182354 +licenseType: Store +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 0 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 8 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/scripts.meta b/Assets/scripts.meta new file mode 100644 index 00000000..85875bdd --- /dev/null +++ b/Assets/scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1405159db1e16e04e91d68f74d8dfbaf +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/scripts/CollidableBall.cs b/Assets/scripts/CollidableBall.cs new file mode 100644 index 00000000..a15d5ed1 --- /dev/null +++ b/Assets/scripts/CollidableBall.cs @@ -0,0 +1,39 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class CollidableBall : MonoBehaviour +{ + private int score = 0; + private float rotationSpeed = 10f; + private Vector3 revolutionRotateVector = new Vector3(0, 0, 1); + public GameObject centerBall; + + // Start is called before the first frame update + void Start() + { + centerBall = GameObject.FindGameObjectWithTag("CenterBall"); + } + + // Update is called once per frame + void Update() + { + rotateSelf(); + revolution(); + } + + // �����ϴ� �Լ� + private void rotateSelf() + { + transform.Rotate(new Vector3(0, rotationSpeed, 0) * Time.deltaTime); + } + + private void revolution() + { + transform.RotateAround(centerBall.transform.position, revolutionRotateVector, Time.deltaTime * rotationSpeed); + } + public int getScore() + { + return score; + } +} diff --git a/Assets/scripts/CollidableBall.cs.meta b/Assets/scripts/CollidableBall.cs.meta new file mode 100644 index 00000000..a2dadb5a --- /dev/null +++ b/Assets/scripts/CollidableBall.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 82709d4f5089aa9499b5c235a4bdb678 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/scripts/PlayerMovement.cs b/Assets/scripts/PlayerMovement.cs new file mode 100644 index 00000000..7a4b1ec6 --- /dev/null +++ b/Assets/scripts/PlayerMovement.cs @@ -0,0 +1,88 @@ +using System.Collections; +using System.Threading; +using System.Collections.Generic; +using UnityEngine.InputSystem; +using UnityEngine; + +public class PlayerMovement : MonoBehaviour +{ + + private InputActions inputActions; + private Rigidbody rigidBody; + private float ROTATION_VALUE = (float) 0.2; + private Vector3 leftRotateVector = new Vector3((float) 2, 0, (float) 2); + private Vector3 rightRotateVector = new Vector3((float) -2, 0, (float) -2); + private string rotationMode = "left"; + + private int totalScore = 0; + [SerializeField] private float speed = 1000f; + + // Start is called before the first frame update + void Awake() + { + inputActions = new InputActions(); + rigidBody = GetComponent(); + } + + // Update is called once per frame + void FixedUpdate() + { + + Vector2 moveInput = inputActions.Newactionmap.Movement.ReadValue(); + rigidBody.velocity = moveInput * speed; + + } + + private void Update() + { + Debug.Log(transform.rotation); + + if(transform.rotation.x > ROTATION_VALUE && rotationMode == "left") + { + rotationMode = "right"; + } + + if(transform.rotation.x < -1 * ROTATION_VALUE && rotationMode == "right") + { + rotationMode = "leftToOrigin"; + } + + if(Mathf.Abs(transform.rotation.x) < 0.1 && rotationMode == "leftToOrigin") + { + rotationMode = "left"; + } + + if(rotationMode == "left") + { + transform.Rotate(leftRotateVector * Time.deltaTime); + } else if(rotationMode == "right") + { + transform.Rotate(rightRotateVector * Time.deltaTime); + } else + { + transform.Rotate(leftRotateVector * Time.deltaTime); + } + + } + + private void OnEnable() + { + inputActions.Enable(); + } + + private void OnDisable() + { + inputActions.Disable(); + } + + private void OnCollisionEnter(Collision collision) + { + if (collision.gameObject.GetComponent() != null) + { + Debug.Log("player collide with collidable ball"); + totalScore += collision.gameObject.GetComponent().getScore(); + Destroy(collision.gameObject); + } + + } +} diff --git a/Assets/scripts/PlayerMovement.cs.meta b/Assets/scripts/PlayerMovement.cs.meta new file mode 100644 index 00000000..f22c3d6e --- /dev/null +++ b/Assets/scripts/PlayerMovement.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 1e25e26c2d6e5c54bb848316080ef65c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Packages/manifest.json b/Packages/manifest.json index 1c3980be..8262968b 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -4,6 +4,7 @@ "com.unity.ide.rider": "2.0.7", "com.unity.ide.visualstudio": "2.0.11", "com.unity.ide.vscode": "1.2.4", + "com.unity.inputsystem": "1.0.2", "com.unity.test-framework": "1.1.29", "com.unity.textmeshpro": "3.0.6", "com.unity.timeline": "1.4.8", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json index 342a22d8..abf290ea 100644 --- a/Packages/packages-lock.json +++ b/Packages/packages-lock.json @@ -42,6 +42,13 @@ "dependencies": {}, "url": "https://packages.unity.com" }, + "com.unity.inputsystem": { + "version": "1.0.2", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, "com.unity.nuget.newtonsoft-json": { "version": "2.0.0", "depth": 1, diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 16991965..c708431c 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -677,7 +677,7 @@ PlayerSettings: m_VersionCode: 1 m_VersionName: apiCompatibilityLevel: 6 - activeInputHandler: 0 + activeInputHandler: 1 cloudProjectId: framebufferDepthMemorylessMode: 0 qualitySettingsNames: [] diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset index 1c92a784..7abab257 100644 --- a/ProjectSettings/TagManager.asset +++ b/ProjectSettings/TagManager.asset @@ -3,7 +3,8 @@ --- !u!78 &1 TagManager: serializedVersion: 2 - tags: [] + tags: + - CenterBall layers: - Default - TransparentFX @@ -11,7 +12,7 @@ TagManager: - - Water - UI - - + - Player - - -