commit 11d992461005edc92fa859ae58efc21f81b0229d Author: Niklas Date: Sun Apr 25 16:20:23 2021 +0200 initial commit diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..6c84a28 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +# Image formats: +*.tga filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.tif filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.psd filter=lfs diff=lfs merge=lfs -text + +# Audio formats: +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +*.aiff filter=lfs diff=lfs merge=lfs -text + +# 3D model formats: +*.fbx filter=lfs diff=lfs merge=lfs -text +*.obj filter=lfs diff=lfs merge=lfs -text + +# Unity formats: +*.sbsar filter=lfs diff=lfs merge=lfs -text +*.unity filter=lfs diff=lfs merge=lfs -text + +# Other binary formats +*.dll filter=lfs diff=lfs merge=lfs -text \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..72c27e4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,71 @@ +# This .gitignore file should be placed at the root of your Unity project directory +# +# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore +# +/[Ll]ibrary/ +/[Tt]emp/ +/[Oo]bj/ +/[Bb]uild/ +/[Bb]uilds/ +/[Ll]ogs/ +/[Uu]ser[Ss]ettings/ + +# MemoryCaptures can get excessive in size. +# They also could contain extremely sensitive data +/[Mm]emoryCaptures/ + +# Asset meta data should only be ignored when the corresponding asset is also ignored +!/[Aa]ssets/**/*.meta + +# Uncomment this line if you wish to ignore the asset store tools plugin +# /[Aa]ssets/AssetStoreTools* + +# Autogenerated Jetbrains Rider plugin +/[Aa]ssets/Plugins/Editor/JetBrains* + +# Visual Studio cache directory +.vs/ + +# Gradle cache directory +.gradle/ + +# Autogenerated VS/MD/Consulo solution and project files +ExportedObj/ +.consulo/ +*.csproj +*.unityproj +*.sln +*.suo +*.tmp +*.user +*.userprefs +*.pidb +*.booproj +*.svd +*.pdb +*.mdb +*.opendb +*.VC.db + +# Unity3D generated meta files +*.pidb.meta +*.pdb.meta +*.mdb.meta + +# Unity3D generated file on crash reports +sysinfo.txt + +# Builds +*.apk +*.aab +*.unitypackage + +# Crashlytics generated file +crashlytics-build.properties + +# Packed Addressables +/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* + +# Temporary auto-generated Android Assets +/[Aa]ssets/[Ss]treamingAssets/aa.meta +/[Aa]ssets/[Ss]treamingAssets/aa/* diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..1060b04 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,56 @@ +{ + "files.exclude": + { + "**/.DS_Store":true, + "**/.git":true, + "**/.gitignore":true, + "**/.gitmodules":true, + "**/*.booproj":true, + "**/*.pidb":true, + "**/*.suo":true, + "**/*.user":true, + "**/*.userprefs":true, + "**/*.unityproj":true, + "**/*.dll":true, + "**/*.exe":true, + "**/*.pdf":true, + "**/*.mid":true, + "**/*.midi":true, + "**/*.wav":true, + "**/*.gif":true, + "**/*.ico":true, + "**/*.jpg":true, + "**/*.jpeg":true, + "**/*.png":true, + "**/*.psd":true, + "**/*.tga":true, + "**/*.tif":true, + "**/*.tiff":true, + "**/*.3ds":true, + "**/*.3DS":true, + "**/*.fbx":true, + "**/*.FBX":true, + "**/*.lxo":true, + "**/*.LXO":true, + "**/*.ma":true, + "**/*.MA":true, + "**/*.obj":true, + "**/*.OBJ":true, + "**/*.asset":true, + "**/*.cubemap":true, + "**/*.flare":true, + "**/*.mat":true, + "**/*.meta":true, + "**/*.prefab":true, + "**/*.unity":true, + "build/":true, + "Build/":true, + "Library/":true, + "library/":true, + "obj/":true, + "Obj/":true, + "ProjectSettings/":true, + "temp/":true, + "Temp/":true + } +} \ No newline at end of file diff --git a/Assets/Bots.meta b/Assets/Bots.meta new file mode 100644 index 0000000..4e472cf --- /dev/null +++ b/Assets/Bots.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b959289396a7ded9d8e8740dd5bcc9c3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Bots/Bot.cs b/Assets/Bots/Bot.cs new file mode 100644 index 0000000..6a907c8 --- /dev/null +++ b/Assets/Bots/Bot.cs @@ -0,0 +1,74 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.AI; + +public class Bot : MonoBehaviour +{ + public GameObject target; + public LayerMask playerLayer; + public float seeRadius = 20f; + public float attkRadus = 2f; + private NavMeshAgent agent; + private Animator animator; + private float attackCooldown = 0f; + private int hp = 100; + + void Start() + { + this.agent = this.GetComponent(); + this.animator = this.GetComponentInChildren(); + } + + void Update() + { + if (canSeePlayer()) + { + if (canAttackPlayer()){ + attack(); + agent.isStopped = true; + }else{ + agent.isStopped = false; + agent.SetDestination(target.transform.position); + } + } + + UpdateAnimator(agent.desiredVelocity); + } + + private void attack(){ + attackCooldown -= Time.deltaTime; + if (attackCooldown <= 0f){ + attackCooldown = 3f; + this.target.GetComponent().hp -= 10; + this.target.GetComponent().Damaged(); + } + } + + private bool canSeePlayer() + { + return Physics.CheckSphere(this.transform.position, seeRadius, playerLayer); + } + + private bool canAttackPlayer(){ + return Physics.CheckSphere(this.transform.position, attkRadus, playerLayer); + } + + private void UpdateAnimator(Vector3 movement) + { + animator.SetFloat("Forward", movement.magnitude, 0.1f, Time.deltaTime); + if(movement.magnitude >= 1){ + Debug.Log(Mathf.Atan2(movement.x, movement.z)); + } + animator.SetFloat("Turn", Mathf.Atan2(movement.x, movement.z), 0.1f, Time.deltaTime); + } + + public void hit(){ + this.hp -= 20; + agent.isStopped = false; + agent.SetDestination(target.transform.position); + if (this.hp <= 0){ + Destroy(this.gameObject); + } + } +} diff --git a/Assets/Bots/Bot.cs.meta b/Assets/Bots/Bot.cs.meta new file mode 100644 index 0000000..fbb58bb --- /dev/null +++ b/Assets/Bots/Bot.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 40f2ded2ff256cc25831dfbf6bc4a0e7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Bots/Bot.prefab b/Assets/Bots/Bot.prefab new file mode 100644 index 0000000..eeac2d4 --- /dev/null +++ b/Assets/Bots/Bot.prefab @@ -0,0 +1,172 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6610855158749230800 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6610855158749230805} + - component: {fileID: 6610855158749230804} + - component: {fileID: 6610855158749230803} + - component: {fileID: 6610855158749230802} + m_Layer: 0 + m_Name: Bot + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6610855158749230805 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6610855158749230800} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 19.65, y: 1.04, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 6610855159095585308} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!136 &6610855158749230804 +CapsuleCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6610855158749230800} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + m_Radius: 0.5 + m_Height: 2 + m_Direction: 1 + m_Center: {x: 0, y: 0, z: 0} +--- !u!195 &6610855158749230803 +NavMeshAgent: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6610855158749230800} + m_Enabled: 1 + m_AgentTypeID: 0 + m_Radius: 0.5 + m_Speed: 3.5 + m_Acceleration: 8 + avoidancePriority: 50 + m_AngularSpeed: 120 + m_StoppingDistance: 0 + m_AutoTraverseOffMeshLink: 1 + m_AutoBraking: 1 + m_AutoRepath: 1 + m_Height: 2 + m_BaseOffset: 1 + m_WalkableMask: 4294967295 + m_ObstacleAvoidanceType: 4 +--- !u!114 &6610855158749230802 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6610855158749230800} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 40f2ded2ff256cc25831dfbf6bc4a0e7, type: 3} + m_Name: + m_EditorClassIdentifier: + target: {fileID: 0} + playerLayer: + serializedVersion: 2 + m_Bits: 64 + seeRadius: 20 + attkRadus: 3 +--- !u!1001 &6610855159095718196 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6610855158749230805} + m_Modifications: + - target: {fileID: 100168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_Name + value: Ethan + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalScale.x + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalScale.y + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalScale.z + value: 1.5 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalPosition.y + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9500000, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_Controller + value: + objectReference: {fileID: 9100000, guid: e2cf68ff4b1ffda45a77f7307dd789b9, type: 2} + - target: {fileID: 9500000, guid: b235179bd2a63d1468dd430670338c55, type: 3} + propertyPath: m_ApplyRootMotion + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b235179bd2a63d1468dd430670338c55, type: 3} +--- !u!4 &6610855159095585308 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 400168, guid: b235179bd2a63d1468dd430670338c55, type: 3} + m_PrefabInstance: {fileID: 6610855159095718196} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Bots/Bot.prefab.meta b/Assets/Bots/Bot.prefab.meta new file mode 100644 index 0000000..f8fdffe --- /dev/null +++ b/Assets/Bots/Bot.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 90ab65bd2a9b2a9d2b30337117684c2a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/FPController.meta b/Assets/FPController.meta new file mode 100644 index 0000000..3a1d71d --- /dev/null +++ b/Assets/FPController.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 71e547de4569c15d5bc0114072022aa9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/FPController/Character.prefab b/Assets/FPController/Character.prefab new file mode 100644 index 0000000..ad8fc58 --- /dev/null +++ b/Assets/FPController/Character.prefab @@ -0,0 +1,318 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3783089677589408436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3783089677589408394} + - component: {fileID: 3783089677589408437} + - component: {fileID: -8838009715090066251} + - component: {fileID: 4453667725109520444} + m_Layer: 6 + m_Name: Character + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3783089677589408394 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3783089677589408436} + 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: 3783089678612372415} + - {fileID: 3783089678093014820} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!143 &3783089677589408437 +CharacterController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3783089677589408436} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 2 + m_Height: 2 + m_Radius: 0.5 + m_SlopeLimit: 45 + m_StepOffset: 0.5 + m_SkinWidth: 0.08 + m_MinMoveDistance: 0.001 + m_Center: {x: 0, y: 0, z: 0} +--- !u!114 &-8838009715090066251 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3783089677589408436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 62899f850307741f2a39c98a8b639597, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Actions: {fileID: -944628639613478452, guid: 9ea33b5d80f455b3c9f29309f70337ad, 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_PersistentCalls: + m_Calls: [] + m_ActionId: 03c3bd24-f439-463f-9321-9ad5d4c8ec44 + m_ActionName: Player/Move[/Keyboard/w,/Keyboard/upArrow,/Keyboard/s,/Keyboard/downArrow,/Keyboard/a,/Keyboard/leftArrow,/Keyboard/d,/Keyboard/rightArrow] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: f9227e6e-32bd-48e8-94ba-e05ef74876e1 + m_ActionName: Player/Look[/Mouse/delta] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: c46027b0-30db-4c25-a210-43ca1ec97621 + m_ActionName: Player/Fire[/Mouse/leftButton] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: ee7c62cc-c1b1-412f-b9d1-a66d38b8122e + m_ActionName: UI/Navigate[/Keyboard/w,/Keyboard/upArrow,/Keyboard/s,/Keyboard/downArrow,/Keyboard/a,/Keyboard/leftArrow,/Keyboard/d,/Keyboard/rightArrow] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: 468cb2bb-3bdc-4155-8040-0101b8746fb2 + m_ActionName: UI/Submit[/Keyboard/enter] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: be74892c-2310-4c5a-9933-a3d900177233 + m_ActionName: UI/Cancel[/Keyboard/escape] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: 1d29b622-2f03-4d81-9c2b-c1d7c17ba1e9 + m_ActionName: UI/Point[/Mouse/position] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: 9a37c626-5ce1-4d0b-99e7-d3e2c1387598 + m_ActionName: UI/Click[/Mouse/leftButton] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: e318f11f-1538-40e6-8259-5c26f83eee2b + m_ActionName: UI/ScrollWheel[/Mouse/scroll] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: 7727ae59-584a-40db-b4f9-3697864c60d2 + m_ActionName: UI/MiddleClick[/Mouse/middleButton] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: 7d259ed3-88b7-4cb2-b580-e8ed86d613c1 + m_ActionName: UI/RightClick[/Mouse/rightButton] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: 415b92b6-0ded-4c75-9b1c-f084fe07ddfc + m_ActionName: UI/TrackedDevicePosition + - m_PersistentCalls: + m_Calls: [] + m_ActionId: 2ece3b9b-2a00-4def-882d-5e859d54e00e + m_ActionName: UI/TrackedDeviceOrientation + m_NeverAutoSwitchControlSchemes: 0 + m_DefaultControlScheme: + m_DefaultActionMap: Player + m_SplitScreenIndex: -1 + m_Camera: {fileID: 0} +--- !u!114 &4453667725109520444 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3783089677589408436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 89440bbf6aff41a3caf76bc75a4f22e2, type: 3} + m_Name: + m_EditorClassIdentifier: + playerSpeed: 6 + cameraSensitivityMouse: 0.1 + cameraSensitivityGamepad: 2 + upperAngleClamp: 60 + lowerAngleClamp: -60 +--- !u!1 &3783089678093014823 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3783089678093014820} + - component: {fileID: 3783089678093014842} + - component: {fileID: 3783089678093014821} + m_Layer: 6 + m_Name: Camera + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3783089678093014820 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3783089678093014823} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 3783089677589408394} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!20 &3783089678093014842 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3783089678093014823} + 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_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: 5 + m_Depth: 0 + 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 &3783089678093014821 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3783089678093014823} + m_Enabled: 1 +--- !u!1 &3783089678612372414 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3783089678612372415} + - component: {fileID: 3783089678612372402} + - component: {fileID: 3783089678612372413} + m_Layer: 6 + m_Name: Capsule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3783089678612372415 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3783089678612372414} + 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: 3783089677589408394} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3783089678612372402 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3783089678612372414} + m_Mesh: {fileID: 10208, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &3783089678612372413 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3783089678612372414} + 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: 10303, guid: 0000000000000000f000000000000000, type: 0} + 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/FPController/Character.prefab.meta b/Assets/FPController/Character.prefab.meta new file mode 100644 index 0000000..90a24ee --- /dev/null +++ b/Assets/FPController/Character.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3500e61f03ba021efad4f18c2307233a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/FPController/Controls.cs b/Assets/FPController/Controls.cs new file mode 100644 index 0000000..839b978 --- /dev/null +++ b/Assets/FPController/Controls.cs @@ -0,0 +1,240 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using UnityEngine; +using UnityEngine.InputSystem; +using UnityEngine.UI; + +public class Controls : MonoBehaviour +{ + public float playerSpeed = 0.2f; + public float cameraSensitivityMouse = 0.01f; + public float cameraSensitivityGamepad = 2f; + public float upperAngleClamp = 60; + public float lowerAngleClamp = -60; + + private Vector2 currentMotion = Vector2.zero; + private GameObject playerCameraObject; + private CharacterController controller; + private PlayerInput playerInput; + private Vector2 currentLook = Vector2.zero; + private bool useGamepad = false; + private bool doJump = false; + private bool canDoubleJump = true; + private float timeJump = -1f; + + private bool doDash = false; + private float timeDash = -1f; + + private Vector3 hookPos; + private bool isHooked = false; + + private float timeJumpPad = -1f; + + public int hp = 100; + public Text hpText; + + public GameObject projectile; + + void Start() + { + controller = this.GetComponent(); + playerInput = this.GetComponent(); + playerCameraObject = this.transform.Find("Camera").gameObject; + + Cursor.lockState = CursorLockMode.Locked; + } + + void FixedUpdate() + { + //Movement + Vector3 forward = this.transform.TransformDirection(Vector3.forward); + Vector3 strafe = this.transform.TransformDirection(Vector3.right); + float vertical = 0f; + if (!this.controller.isGrounded && !this.isHooked){ + vertical += Physics.gravity.y * Time.fixedDeltaTime; + } + + if (this.doJump){ + this.doJump = false; + this.canDoubleJump = false; + this.timeJump = 0f; + this.isHooked = false; + } + + if (this.controller.isGrounded){ + this.canDoubleJump = true; + } + + if (this.timeJump >= 0f){ + if (this.timeJump >= 0.5f) { + this.timeJump = -1f; + }else{ + var jumpProgress = this.timeJump / 0.5f; + vertical += (sinApply(jumpProgress) * 1.4f); + this.timeJump += Time.fixedDeltaTime; + } + } + + if (this.timeJumpPad >= 0f){ + + if (this.timeJumpPad >= 0.8f){ + this.timeJumpPad = -1f; + }else{ + var progress = this.timeJumpPad / 0.8f; + vertical += sinApply(progress) * 4f; + this.timeJumpPad += Time.fixedDeltaTime; + } + } + + var movement = (((strafe * this.currentMotion.x) + (forward * this.currentMotion.y)) * this.playerSpeed) + (Vector3.up * vertical); + + if (this.doDash){ + this.isHooked = false; + this.doDash = false; + this.timeDash = 0f; + } + + if (this.timeDash >= 0f){ + if (this.timeDash >= 0.3f){ + this.timeDash = -1f; + }else{ + var progress = this.timeDash / 0.3f; + movement += (forward * progress); + this.timeDash += Time.fixedDeltaTime; + } + } + + if (this.isHooked){ + // Apply force in the direction of the hook pos + var dirVec = this.hookPos - this.transform.position; + if (dirVec.magnitude >= 1.5f){ + movement += Vector3.Normalize(dirVec)* 1.1f; + }else{ + this.isHooked = false; + } + } + + this.controller.Move(movement); + + // Look if gamepad + if (this.useGamepad){ + ApplyLookVector(this.currentLook,cameraSensitivityGamepad); + } + } + + private void hook(){ + Ray ray = new Ray(this.playerCameraObject.transform.position, playerCameraObject.transform.TransformDirection(Vector3.forward)); + RaycastHit hit; + if (Physics.Raycast(ray, out hit, 100f)){ + hookPos = hit.point; + isHooked = true; + } + } + + public void OnHook(InputValue value){ + hook(); + } + + public void Damaged(){ + this.hpText.text = this.hp.ToString(); + if (this.hp <= 0){ + // Player died + // TODO: death message + Debug.Log("dead"); + } + } + + /// + /// Retuns a value from 0 to 1 of how much of the force should be applyed at the current progress of the action + /// + /// + /// + private float sinApply(float progress){ + return (float)(Math.Sin(progress * Math.PI) / Math.PI); + } + + /// + /// Called by PlayerInput when Move value change. + /// + /// + public void OnMove(InputValue value) + { + this.currentMotion = value.Get(); + } + + public void OnAttack(InputValue value){ + var instantiatedProjectile = Instantiate(projectile, this.playerCameraObject.transform.position, Quaternion.identity); + var rig = instantiatedProjectile.GetComponent(); + rig.velocity = this.playerCameraObject.transform.forward * 35f; + Physics.IgnoreCollision(instantiatedProjectile.GetComponent(), this.GetComponent()); + } + + public void OnJump(InputValue value) + { + if (this.controller.isGrounded){ + this.doJump = true; + this.canDoubleJump = true; + }else if (this.canDoubleJump){ + this.doJump = true; + } + } + + /// + /// Called by PlayerInput when Look value change. + /// + /// + public void OnLook(InputValue value) + { + var camMovement = value.Get(); + + if (this.useGamepad){ + this.currentLook = camMovement; + }else{ + ApplyLookVector(camMovement,cameraSensitivityMouse); + } + } + + public void OnDash(InputValue value){ + this.doDash = true; + } + + /// + /// Called by PlayerInput when the user starts using mouse or gamepad. + /// + public void OnControlsChanged(){ + this.useGamepad = playerInput.currentControlScheme == "Gamepad"; + } + + public void JumpPad(){ + this.timeJumpPad = 0f; + } + + void ApplyLookVector(Vector2 vector,float sensitivity){ + // Left right looking + this.transform.Rotate(Vector3.up * vector.x * sensitivity); + + // Up down looking + Vector3 rot = playerCameraObject.transform.rotation.eulerAngles + new Vector3(-vector.y * sensitivity, 0f, 0f); + rot.x = ClampAngle(rot.x, this.lowerAngleClamp, this.upperAngleClamp); + playerCameraObject.transform.eulerAngles = rot; + } + + /// + /// Clamps an angle. + /// + /// + /// e.g. -45 + /// e.g. 45 + /// Clamped angle from 0 to 360 + float ClampAngle(float angle, float from, float to) + { + if (angle < 0f) angle = 360 + angle; + if (angle > 180f) return Mathf.Max(angle, 360 + from); + return Mathf.Min(angle, to); + } + + +} + diff --git a/Assets/FPController/Controls.cs.meta b/Assets/FPController/Controls.cs.meta new file mode 100644 index 0000000..cd020e4 --- /dev/null +++ b/Assets/FPController/Controls.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 89440bbf6aff41a3caf76bc75a4f22e2 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/FPController/FPInput.inputactions b/Assets/FPController/FPInput.inputactions new file mode 100644 index 0000000..873ad28 --- /dev/null +++ b/Assets/FPController/FPInput.inputactions @@ -0,0 +1,310 @@ +{ + "name": "FPInput", + "maps": [ + { + "name": "Player", + "id": "a71b3ee4-1a8b-4b38-b0f3-4274b7517dfb", + "actions": [ + { + "name": "Move", + "type": "Value", + "id": "03c3bd24-f439-463f-9321-9ad5d4c8ec44", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "" + }, + { + "name": "Look", + "type": "Value", + "id": "f9227e6e-32bd-48e8-94ba-e05ef74876e1", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "" + }, + { + "name": "Jump", + "type": "Button", + "id": "206ab4c9-2bba-49a3-ae21-4847e569aa7a", + "expectedControlType": "Button", + "processors": "", + "interactions": "" + }, + { + "name": "Dash", + "type": "Button", + "id": "6e93120e-d624-4a32-93a1-1607626ebe80", + "expectedControlType": "Button", + "processors": "", + "interactions": "" + }, + { + "name": "Hook", + "type": "Button", + "id": "49075234-a6cb-4645-83a3-35803b49c629", + "expectedControlType": "Button", + "processors": "", + "interactions": "" + }, + { + "name": "Attack", + "type": "Button", + "id": "94067ce8-eedc-4aeb-a82d-81f7b944bc5b", + "expectedControlType": "Button", + "processors": "", + "interactions": "" + } + ], + "bindings": [ + { + "name": "", + "id": "978bfe49-cc26-4a3d-ab7b-7d7a29327403", + "path": "/leftStick", + "interactions": "", + "processors": "", + "groups": "Gamepad", + "action": "Move", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "WASD", + "id": "00ca640b-d935-4593-8157-c05846ea39b3", + "path": "Dpad", + "interactions": "", + "processors": "", + "groups": "", + "action": "Move", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "e2062cb9-1b15-46a2-838c-2f8d72a0bdd9", + "path": "/w", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "up", + "id": "8180e8bd-4097-4f4e-ab88-4523101a6ce9", + "path": "/upArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "320bffee-a40b-4347-ac70-c210eb8bc73a", + "path": "/s", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "1c5327b5-f71c-4f60-99c7-4e737386f1d1", + "path": "/downArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "d2581a9b-1d11-4566-b27d-b92aff5fabbc", + "path": "/a", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "2e46982e-44cc-431b-9f0b-c11910bf467a", + "path": "/leftArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "fcfe95b8-67b9-4526-84b5-5d0bc98d6400", + "path": "/d", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "77bff152-3580-4b21-b6de-dcd0c7e41164", + "path": "/rightArrow", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "", + "id": "c1f7a91b-d0fd-4a62-997e-7fb9b69bf235", + "path": "/rightStick", + "interactions": "", + "processors": "", + "groups": ";Gamepad", + "action": "Look", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "8c8e490b-c610-4785-884f-f04217b23ca4", + "path": "/delta", + "interactions": "", + "processors": "", + "groups": ";Keyboard&Mouse;Touch", + "action": "Look", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "ba2df36e-8966-4cc4-b97a-236dd5d37702", + "path": "/space", + "interactions": "", + "processors": "", + "groups": "", + "action": "Jump", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "f50a54fb-bb76-4677-b455-65968df9c7a2", + "path": "/buttonSouth", + "interactions": "", + "processors": "", + "groups": "", + "action": "Jump", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "0269f1c5-6cae-425b-b215-f5c8c3de7003", + "path": "/shift", + "interactions": "", + "processors": "", + "groups": "", + "action": "Dash", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "e38735ff-622f-4d8f-887e-721283315576", + "path": "/e", + "interactions": "", + "processors": "", + "groups": "", + "action": "Hook", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "0fc0794e-f312-44a5-bca8-837df5578ab1", + "path": "/leftButton", + "interactions": "", + "processors": "", + "groups": "", + "action": "Attack", + "isComposite": false, + "isPartOfComposite": false + } + ] + } + ], + "controlSchemes": [ + { + "name": "Keyboard&Mouse", + "bindingGroup": "Keyboard&Mouse", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + }, + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "Gamepad", + "bindingGroup": "Gamepad", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "Touch", + "bindingGroup": "Touch", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "Joystick", + "bindingGroup": "Joystick", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + }, + { + "name": "XR", + "bindingGroup": "XR", + "devices": [ + { + "devicePath": "", + "isOptional": false, + "isOR": false + } + ] + } + ] +} \ No newline at end of file diff --git a/Assets/FPController/FPInput.inputactions.meta b/Assets/FPController/FPInput.inputactions.meta new file mode 100644 index 0000000..723ae7a --- /dev/null +++ b/Assets/FPController/FPInput.inputactions.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9ea33b5d80f455b3c9f29309f70337ad +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 8404be70184654265930450def6a9037, type: 3} + generateWrapperCode: 0 + wrapperCodePath: + wrapperClassName: + wrapperCodeNamespace: diff --git a/Assets/FPController/JumpPad.cs b/Assets/FPController/JumpPad.cs new file mode 100644 index 0000000..dab6c9e --- /dev/null +++ b/Assets/FPController/JumpPad.cs @@ -0,0 +1,18 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class JumpPad : MonoBehaviour +{ + void Start() + { + + } + + void OnTriggerEnter(Collider other){ + var characterController = other.GetComponent(); + if (characterController != null){ + characterController.JumpPad(); + } + } +} diff --git a/Assets/FPController/JumpPad.cs.meta b/Assets/FPController/JumpPad.cs.meta new file mode 100644 index 0000000..7170f30 --- /dev/null +++ b/Assets/FPController/JumpPad.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 68f5362da3fcc1bca9e5320041a95492 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/FPController/JumpPad.prefab b/Assets/FPController/JumpPad.prefab new file mode 100644 index 0000000..d3823be --- /dev/null +++ b/Assets/FPController/JumpPad.prefab @@ -0,0 +1,111 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8314568732944286798 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4589120558693393262} + - component: {fileID: 1555833352617876600} + - component: {fileID: 2969619133205361989} + - component: {fileID: 2170941204670691750} + - component: {fileID: 4660876031926875556} + m_Layer: 0 + m_Name: JumpPad + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4589120558693393262 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8314568732944286798} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 26.41, y: 0.11, z: -1.06} + m_LocalScale: {x: 2, y: 0.1, z: 2} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1555833352617876600 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8314568732944286798} + m_Mesh: {fileID: 10206, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &2969619133205361989 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8314568732944286798} + 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: 10303, guid: 0000000000000000f000000000000000, type: 0} + 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!136 &2170941204670691750 +CapsuleCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8314568732944286798} + m_Material: {fileID: 0} + m_IsTrigger: 1 + m_Enabled: 1 + m_Radius: 0.5000001 + m_Height: 2 + m_Direction: 1 + m_Center: {x: 0.000000059604645, y: 0, z: -0.00000008940697} +--- !u!114 &4660876031926875556 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8314568732944286798} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 68f5362da3fcc1bca9e5320041a95492, type: 3} + m_Name: + m_EditorClassIdentifier: diff --git a/Assets/FPController/JumpPad.prefab.meta b/Assets/FPController/JumpPad.prefab.meta new file mode 100644 index 0000000..df9f6d2 --- /dev/null +++ b/Assets/FPController/JumpPad.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6cc9dec85776f842fb3d7560482e765a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ProBuilder Data.meta b/Assets/ProBuilder Data.meta new file mode 100644 index 0000000..3c0e6b6 --- /dev/null +++ b/Assets/ProBuilder Data.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8eef0770962b57b618d7de92331b7f37 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/ProBuilder Data/Default Material Palette.asset b/Assets/ProBuilder Data/Default Material Palette.asset new file mode 100644 index 0000000..d38ee08 --- /dev/null +++ b/Assets/ProBuilder Data/Default Material Palette.asset @@ -0,0 +1,25 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3f1ca63a91b17724bbd99c8fa67e0180, type: 3} + m_Name: Default Material Palette + m_EditorClassIdentifier: + array: + - {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} diff --git a/Assets/ProBuilder Data/Default Material Palette.asset.meta b/Assets/ProBuilder Data/Default Material Palette.asset.meta new file mode 100644 index 0000000..61cbfdb --- /dev/null +++ b/Assets/ProBuilder Data/Default Material Palette.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d568106414a13225ebd1bf62e589f45f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Projectile.cs b/Assets/Projectile.cs new file mode 100644 index 0000000..a9c9024 --- /dev/null +++ b/Assets/Projectile.cs @@ -0,0 +1,19 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class Projectile : MonoBehaviour +{ + void Start() + { + + } + + public void OnCollisionEnter(Collision collision){ + var bot = collision.collider?.transform.root.GetComponent(); + if(bot != null){ + bot.hit(); + } + Destroy(this.gameObject); + } +} diff --git a/Assets/Projectile.cs.meta b/Assets/Projectile.cs.meta new file mode 100644 index 0000000..edf538a --- /dev/null +++ b/Assets/Projectile.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5c2938bc2e66e7ca985f9fcd1a797d30 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Projectile.prefab b/Assets/Projectile.prefab new file mode 100644 index 0000000..fe8167b --- /dev/null +++ b/Assets/Projectile.prefab @@ -0,0 +1,127 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7753591567713110229 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5860847011854946478} + - component: {fileID: 1834670525200132932} + - component: {fileID: 4039558845848879505} + - component: {fileID: 124972118075904706} + - component: {fileID: 1948239708711409731} + - component: {fileID: 2678574388585982457} + m_Layer: 0 + m_Name: Projectile + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5860847011854946478 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7753591567713110229} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.2, y: 0.2, z: 0.2} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1834670525200132932 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7753591567713110229} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!23 &4039558845848879505 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7753591567713110229} + 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: 10303, guid: 0000000000000000f000000000000000, type: 0} + 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!135 &124972118075904706 +SphereCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7753591567713110229} + 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!54 &1948239708711409731 +Rigidbody: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7753591567713110229} + 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!114 &2678574388585982457 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7753591567713110229} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5c2938bc2e66e7ca985f9fcd1a797d30, type: 3} + m_Name: + m_EditorClassIdentifier: diff --git a/Assets/Projectile.prefab.meta b/Assets/Projectile.prefab.meta new file mode 100644 index 0000000..26b6d88 --- /dev/null +++ b/Assets/Projectile.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5ddcd62550552c984909dba778ced3c4 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/RotateSkybox.cs b/Assets/RotateSkybox.cs new file mode 100644 index 0000000..84fd57a --- /dev/null +++ b/Assets/RotateSkybox.cs @@ -0,0 +1,11 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +public class RotateSkybox : MonoBehaviour +{ + void Update() + { + RenderSettings.skybox.SetFloat("_Rotation",Time.time * 1.8f); + } +} diff --git a/Assets/RotateSkybox.cs.meta b/Assets/RotateSkybox.cs.meta new file mode 100644 index 0000000..ed82ac9 --- /dev/null +++ b/Assets/RotateSkybox.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 758c3af7d2a70a8eda88d58d8a0a8321 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes.meta b/Assets/Scenes.meta new file mode 100644 index 0000000..9b6841e --- /dev/null +++ b/Assets/Scenes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c38d7f57cd3b501d8444448678385a0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/FPSandbox.meta b/Assets/Scenes/FPSandbox.meta new file mode 100644 index 0000000..3e2061a --- /dev/null +++ b/Assets/Scenes/FPSandbox.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bef723ad22ce0e9689df59fac9094b51 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/FPSandbox/Dark.mat b/Assets/Scenes/FPSandbox/Dark.mat new file mode 100644 index 0000000..cf5b042 --- /dev/null +++ b/Assets/Scenes/FPSandbox/Dark.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: Dark + 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.5 + - _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: 0.24528301, g: 0.24528301, b: 0.24528301, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + m_BuildTextureStacks: [] diff --git a/Assets/Scenes/FPSandbox/Dark.mat.meta b/Assets/Scenes/FPSandbox/Dark.mat.meta new file mode 100644 index 0000000..b965d57 --- /dev/null +++ b/Assets/Scenes/FPSandbox/Dark.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: be88d518b0d6e6f6c959e90262ecf76c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/FPSandbox/FPSandbox.meta b/Assets/Scenes/FPSandbox/FPSandbox.meta new file mode 100644 index 0000000..da388ce --- /dev/null +++ b/Assets/Scenes/FPSandbox/FPSandbox.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f6a312b85d734017187664546de165f5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/FPSandbox/FPSandbox.unity b/Assets/Scenes/FPSandbox/FPSandbox.unity new file mode 100644 index 0000000..ac05966 --- /dev/null +++ b/Assets/Scenes/FPSandbox/FPSandbox.unity @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6ce072315d0f7b41418c4d5fa26d8a265e6a0b5172451b96a4a08fd9d35271f +size 46702 diff --git a/Assets/Scenes/FPSandbox/FPSandbox.unity.meta b/Assets/Scenes/FPSandbox/FPSandbox.unity.meta new file mode 100644 index 0000000..952bd1e --- /dev/null +++ b/Assets/Scenes/FPSandbox/FPSandbox.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9fc0d4010bbf28b4594072e72b8655ab +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/FPSandbox/FPSandbox/NavMesh.asset b/Assets/Scenes/FPSandbox/FPSandbox/NavMesh.asset new file mode 100644 index 0000000..684aa80 Binary files /dev/null and b/Assets/Scenes/FPSandbox/FPSandbox/NavMesh.asset differ diff --git a/Assets/Scenes/FPSandbox/FPSandbox/NavMesh.asset.meta b/Assets/Scenes/FPSandbox/FPSandbox/NavMesh.asset.meta new file mode 100644 index 0000000..d29feb2 --- /dev/null +++ b/Assets/Scenes/FPSandbox/FPSandbox/NavMesh.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4ac580a05dd012d13bca62fe3f1f861c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 23800000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/ProMap.meta b/Assets/Scenes/ProMap.meta new file mode 100644 index 0000000..30ae76b --- /dev/null +++ b/Assets/Scenes/ProMap.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8836581a75ce113c29da6a2384aa6b21 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/ProMap/MainFloor.prefab b/Assets/Scenes/ProMap/MainFloor.prefab new file mode 100644 index 0000000..e987a36 --- /dev/null +++ b/Assets/Scenes/ProMap/MainFloor.prefab @@ -0,0 +1,5372 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2703581847549424984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2703581847549424983} + - component: {fileID: 2703581847549424980} + - component: {fileID: 2703581847549424981} + - component: {fileID: 2703581847549424986} + - component: {fileID: 2703581847549424987} + m_Layer: 0 + m_Name: MainFloor + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2703581847549424983 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2703581847549424984} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -9.33238, y: 160.52289, z: -75.552124} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2703581847549424980 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2703581847549424984} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8233d90336aea43098adf6dbabd606a2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MeshFormatVersion: 1 + m_Faces: + - m_Indexes: 110000001200000013000000120000001400000013000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 150000001600000017000000160000001800000017000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 190000001a0000001b0000001a0000001c0000001b000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 1d0000001e0000001f0000001e000000200000001f000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 210000002200000023000000220000002400000023000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 250000002600000027000000260000002800000027000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 290000002a0000002b0000002a0000002c0000002b000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 2d0000002e0000002f0000002e000000300000002f000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 310000003200000033000000320000003400000033000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 350000003600000037000000360000003800000037000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 390000003a0000003b0000003a0000003c0000003b000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 3d0000003e0000003f0000003e000000400000003f000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 410000004200000043000000420000004400000043000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 450000004600000047000000460000004800000047000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 490000004a0000004b0000004a0000004c0000004b000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 4d0000004e0000004f0000004e000000500000004f000000 + m_SmoothingGroup: 3 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 510000005200000053000000520000005400000053000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 550000005600000057000000560000005800000057000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 590000005a0000005b0000005a0000005c0000005b000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 5d0000005e0000005f0000005e000000600000005f000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 610000006200000063000000620000006400000063000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 650000006600000067000000660000006800000067000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 690000006a0000006b0000006a0000006c0000006b000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 6d0000006e0000006f0000006e000000700000006f000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 710000007200000073000000720000007400000073000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 750000007600000077000000760000007800000077000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 790000007a0000007b0000007a0000007c0000007b000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 7d0000007e0000007f0000007e000000800000007f000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 810000008200000083000000820000008400000083000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 850000008600000087000000860000008800000087000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 890000008a0000008b0000008a0000008c0000008b000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 8d0000008e0000008f0000008e000000900000008f000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 910000009200000093000000920000009400000093000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 950000009600000097000000960000009800000097000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 990000009a0000009b0000009a0000009c0000009b000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 9d0000009e0000009f0000009e000000a00000009f000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: a1000000a2000000a3000000a2000000a4000000a3000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: a5000000a6000000a7000000a6000000a8000000a7000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: a9000000aa000000ab000000aa000000ac000000ab000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: ad000000ae000000af000000ae000000b0000000af000000 + m_SmoothingGroup: 4 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b1000000b2000000b3000000b2000000b4000000b3000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b5000000b6000000b7000000b6000000b8000000b7000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b9000000ba000000bb000000ba000000bc000000bb000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: bd000000be000000bf000000be000000c0000000bf000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c1000000c2000000c3000000c2000000c4000000c3000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c5000000c6000000c7000000c6000000c8000000c7000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c9000000ca000000cb000000ca000000cc000000cb000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: cd000000ce000000cf000000ce000000d0000000cf000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: d1000000d2000000d3000000d2000000d4000000d3000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: d5000000d6000000d7000000d6000000d8000000d7000000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: d9000000da000000db000000da000000dc000000db000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: dd000000de000000df000000de000000e0000000df000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: e1000000e2000000e3000000e2000000e4000000e3000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: e5000000e6000000e7000000e6000000e8000000e7000000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: e9000000ea000000eb000000ea000000ec000000eb000000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: ed000000ee000000ef000000ee000000f0000000ef000000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: f1000000f2000000f3000000f2000000f4000000f3000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: f5000000f6000000f7000000f6000000f8000000f7000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: f9000000fa000000fb000000fa000000fc000000fb000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: fd000000fe000000ff000000fe00000000010000ff000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 010100000201000003010000020100000401000003010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 050100000601000007010000060100000801000007010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 0d0100000e0100000f0100000e010000100100000f010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 170100001801000019010000180100001a01000019010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 1b0100001c0100001d0100001c0100001e0100001d010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 1f0100002001000021010000200100002201000021010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 230100002401000025010000240100002601000025010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 270100002801000029010000280100002a01000029010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 090100000a0100000b0100000a0100000c0100000b010000110100000901000012010000090100000b01000012010000130100001401000015010000140100001601000015010000140100001101000016010000110100001201000016010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 2b0100002c0100002d0100002c0100002e0100002d010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 2f0100003001000031010000300100003201000031010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 350100003601000037010000360100003801000037010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 3b0100003c0100003d0100003c0100003e0100003d010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 3f0100004001000041010000400100004201000041010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 470100004801000049010000480100004a01000049010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 4d0100004e0100004f0100004e010000500100004f010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 520100005301000054010000530100005501000054010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 58010000590100005a010000590100005b0100005a010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 5c0100005d0100005e0100005d0100005f0100005e010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 4301000044010000450100004401000046010000450100004b010000430100004c01000043010000450100004c010000390100004b0100003a0100004b0100004c0100003a010000330100003901000034010000390100003a01000034010000070000000400000006000000040000000500000006000000020000000300000007000000030000000400000007000000010000000000000002000000010000000200000007000000010000000700000039010000010000003901000033010000070000004b0100003901000007000000430100004b0100000700000006000000430100000600000044010000430100000c0000000a0000000b0000000c000000090000000a0000000f0000000c0000000e0000000f000000100000000c00000010000000090000000c0000001000000008000000090000000e0000000b0000000d0000000e0000000c0000000b000000080000001000000056010000100000005701000056010000100000000f000000570100000f0000005101000057010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 600100006101000062010000610100006301000062010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 640100006501000066010000650100006701000066010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 68010000690100006a010000690100006b0100006a010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 6c0100006d0100006e0100006d0100006f0100006e010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 700100007101000072010000710100007301000072010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 740100007501000076010000750100007701000076010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 78010000790100007a010000790100007b0100007a010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 7c0100007d0100007e0100007d0100007f0100007e010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 800100008101000082010000810100008301000082010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 840100008501000086010000850100008701000086010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 88010000890100008a010000890100008b0100008a010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 8c0100008d0100008e0100008d0100008f0100008e010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 900100009101000092010000910100009301000092010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 940100009501000096010000950100009701000096010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 98010000990100009a010000990100009b0100009a010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 9c0100009d0100009e0100009d0100009f0100009e010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: a0010000a1010000a2010000a1010000a3010000a2010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: a4010000a5010000a6010000a5010000a7010000a6010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: a8010000a9010000aa010000a9010000ab010000aa010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: ac010000ad010000ae010000ad010000af010000ae010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b0010000b1010000b2010000b1010000b3010000b2010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b4010000b5010000b6010000b5010000b7010000b6010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b8010000b9010000ba010000b9010000bb010000ba010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: bc010000bd010000be010000bd010000bf010000be010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c0010000c1010000c2010000c1010000c3010000c2010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c4010000c5010000c6010000c5010000c7010000c6010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c8010000c9010000ca010000c9010000cb010000ca010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: cc010000cd010000ce010000cd010000cf010000ce010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: d0010000d1010000d2010000d1010000d3010000d2010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: d4010000d5010000d6010000d5010000d7010000d6010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: d8010000d9010000da010000d9010000db010000da010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: dc010000dd010000de010000dd010000df010000de010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: e0010000e1010000e2010000e1010000e3010000e2010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: e4010000e5010000e6010000e5010000e7010000e6010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: e8010000e9010000ea010000e9010000eb010000ea010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: ec010000ed010000ee010000ed010000ef010000ee010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: f0010000f1010000f2010000f1010000f3010000f2010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: f4010000f5010000f6010000f5010000f7010000f6010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: f8010000f9010000fa010000f9010000fb010000fa010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: fc010000fd010000fe010000fd010000ff010000fe010000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 010200000202000003020000010200000302000000020000030200000402000000020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 060200000702000008020000060200000802000005020000080200000902000005020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 0c0200000d0200000e0200000a0200000b0200000c0200000a0200000c0200000e020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 10020000110200001202000010020000120200000f020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 8 + - m_Indexes: 140200001502000016020000140200001602000013020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 8 + - m_Indexes: 17020000180200001902000017020000190200001a020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 8 + - m_Indexes: 1e0200001f020000210200001f02000020020000210200001e020000210200001d020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 240200002602000023020000260200002202000023020000240200002502000026020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 28020000290200002a020000280200002a02000027020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 9 + - m_Indexes: 2c0200002d0200002e0200002c0200002e0200002b020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 9 + - m_Indexes: 360200003302000034020000360200003402000035020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 9 + - m_Indexes: 37020000380200003902000037020000390200003b020000390200003a0200003b020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 3e0200003f020000400200003c0200003d0200003e0200003c0200003e02000040020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 460200004702000048020000460200004802000045020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 10 + - m_Indexes: 490200004a0200004b020000490200004b0200004c020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 10 + - m_Indexes: 500200004d0200004e020000500200004e0200004f020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 10 + - m_Indexes: 520200005302000055020000530200005402000055020000520200005502000051020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 580200005a020000570200005a020000560200005702000058020000590200005a020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 5c0200005d0200005e0200005c0200005e0200005b020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 11 + - m_Indexes: 610200006202000063020000610200006302000064020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 11 + - m_Indexes: 680200006502000066020000680200006602000067020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 11 + - m_Indexes: 690200006a0200006b020000690200006b0200006d0200006b0200006c0200006d020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 6f0200007002000071020000720200006f020000710200006f020000720200006e020000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 740200007502000076020000770200007402000076020000740200007702000073020000 + m_SmoothingGroup: 5 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 4202000043020000440200004202000044020000410200002f02000030020000310200002f02000031020000320200001c02000042020000410200001c020000410200001b020000300200005f02000060020000300200006002000031020000 + m_SmoothingGroup: 2 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 10 + - m_Indexes: 780200007f0200007e0200007b0200007a0200007c0200007a02000079020000780200007a020000780200007c0200007c020000780200007e0200007c0200007e0200007d020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 87020000860200008802000086020000850200008802000084020000830200008202000084020000820200008502000085020000820200008802000082020000810200008002000082020000800200008b020000820200008b0200008a020000820200008a02000088020000880200008a02000089020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 8c0200008d0200008e0200008d0200008f0200008e020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 900200009102000092020000910200009302000092020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 940200009502000096020000950200009702000096020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 98020000990200009a020000990200009b0200009a020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 9c0200009d0200009e0200009d0200009f0200009e020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: a0020000a1020000a2020000a1020000a3020000a2020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: a4020000a5020000a6020000a5020000a7020000a6020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: a8020000a9020000aa020000a9020000ab020000aa020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: ac020000ad020000ae020000ad020000af020000ae020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b0020000b1020000b2020000b1020000b3020000b2020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b4020000b5020000b6020000b5020000b7020000b6020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b8020000b9020000ba020000b9020000bb020000ba020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: bc020000bd020000be020000bd020000bf020000be020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c0020000c1020000c2020000c1020000c3020000c2020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c4020000c5020000c6020000c5020000c7020000c6020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c8020000c9020000ca020000c9020000cb020000ca020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: cc020000cd020000ce020000cd020000cf020000ce020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: d0020000d1020000d2020000d1020000d3020000d2020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: d4020000d5020000d6020000d5020000d7020000d6020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: d8020000d9020000da020000d9020000db020000da020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + m_SharedVertices: + - m_Vertices: 00000000cf010000d2010000 + - m_Vertices: 01000000ce010000d7010000 + - m_Vertices: 02000000c6010000d3010000 + - m_Vertices: 03000000c7010000ca010000 + - m_Vertices: 04000000c2010000cb010000 + - m_Vertices: 05000000c301000072020000 + - m_Vertices: 06000000da01000071020000 + - m_Vertices: 07000000 + - m_Vertices: 5a0000005d000000cd020000d0020000 + - m_Vertices: 8b020000cf020000d2020000 + - m_Vertices: 5900000066000000d1020000d4020000 + - m_Vertices: 8a020000d3020000d6020000 + - m_Vertices: 6200000065000000d5020000d8020000 + - m_Vertices: 89020000d7020000da020000 + - m_Vertices: 610000006e000000b0020000d9020000 + - m_Vertices: 88020000b2020000db020000 + - m_Vertices: 6a0000006d000000ac020000b1020000 + - m_Vertices: 87020000ae020000b3020000 + - m_Vertices: 6900000072000000ad020000b4020000 + - m_Vertices: 86020000af020000b6020000 + - m_Vertices: 7100000076000000b5020000c0020000 + - m_Vertices: 85020000b7020000c2020000 + - m_Vertices: 5200000055000000c5020000c8020000 + - m_Vertices: 81020000c7020000ca020000 + - m_Vertices: 510000005e000000c9020000cc020000 + - m_Vertices: 80020000cb020000ce020000 + - m_Vertices: 7a0000007d000000b9020000bc020000 + - m_Vertices: 83020000bb020000be020000 + - m_Vertices: 5600000079000000bd020000c4020000 + - m_Vertices: 82020000bf020000c6020000 + - m_Vertices: 750000007e000000b8020000c1020000 + - m_Vertices: 84020000ba020000c3020000 + - m_Vertices: 120000001d0000009d020000a0020000 + - m_Vertices: 790200009f020000a2020000 + - m_Vertices: 110000001a0000008c020000a1020000 + - m_Vertices: 780200008e020000a3020000 + - m_Vertices: 16000000190000008d02000090020000 + - m_Vertices: 7f0200008f02000092020000 + - m_Vertices: 210000002e000000a5020000a8020000 + - m_Vertices: 7d020000a7020000aa020000 + - m_Vertices: 2a0000002d00000098020000a9020000 + - m_Vertices: 7c0200009a020000ab020000 + - m_Vertices: 26000000290000009402000099020000 + - m_Vertices: 7b020000960200009b020000 + - m_Vertices: 08000000e6010000f3010000 + - m_Vertices: 09000000e701000077020000 + - m_Vertices: 0a000000de01000076020000 + - m_Vertices: 0b000000df010000ea010000 + - m_Vertices: 0c000000 + - m_Vertices: 0d000000eb010000ee010000 + - m_Vertices: 0e000000e2010000ef010000 + - m_Vertices: 0f000000e3010000fa010000 + - m_Vertices: 10000000 + - m_Vertices: 130000001c000000310000003a000000 + - m_Vertices: 140000001f000000320000003d000000 + - m_Vertices: 150000002200000091020000a4020000 + - m_Vertices: 7e02000093020000a6020000 + - m_Vertices: 17000000240000003500000042000000 + - m_Vertices: 180000001b0000003600000039000000 + - m_Vertices: 1e00000025000000950200009c020000 + - m_Vertices: 7a020000970200009e020000 + - m_Vertices: 20000000270000003e00000045000000 + - m_Vertices: 2300000030000000410000004e000000 + - m_Vertices: 280000002b0000004600000049000000 + - m_Vertices: 2c0000002f0000004a0000004d000000 + - m_Vertices: 330000003c000000ee00000005020000 + - m_Vertices: 340000003f000000dd00000006020000 + - m_Vertices: 3700000044000000e6000000e9000000 + - m_Vertices: 380000003b000000ea000000ed000000 + - m_Vertices: 4000000047000000de000000f1000000 + - m_Vertices: 4300000050000000e2000000e5000000 + - m_Vertices: 480000004b000000f2000000f5000000 + - m_Vertices: 4c0000004f000000e1000000f6000000 + - m_Vertices: 5300000060000000810000008e000000 + - m_Vertices: 54000000570000008200000085000000 + - m_Vertices: 580000007b00000086000000a9000000 + - m_Vertices: 5b000000680000008900000096000000 + - m_Vertices: 5c0000005f0000008a0000008d000000 + - m_Vertices: 6300000070000000910000009e000000 + - m_Vertices: 64000000670000009200000095000000 + - m_Vertices: 6b0000007400000099000000a2000000 + - m_Vertices: 6c0000006f0000009a0000009d000000 + - m_Vertices: 7300000078000000a1000000a6000000 + - m_Vertices: 7700000080000000a5000000ae000000 + - m_Vertices: 7c0000007f000000aa000000ad000000 + - m_Vertices: 8300000090000000b1000000ba000000 + - m_Vertices: 8400000087000000b200000000020000 + - m_Vertices: 88000000ab000000d500000001020000 + - m_Vertices: 8b00000098000000b5000000c2000000 + - m_Vertices: 8c0000008f000000b6000000b9000000 + - m_Vertices: 93000000a0000000bd000000ca000000 + - m_Vertices: 9400000097000000be000000c1000000 + - m_Vertices: 9b000000a4000000c5000000ce000000 + - m_Vertices: 9c0000009f000000c6000000c9000000 + - m_Vertices: a3000000a8000000cd000000d2000000 + - m_Vertices: a7000000b0000000d1000000da000000 + - m_Vertices: ac000000af000000d6000000d9000000 + - m_Vertices: b3000000bc000000fe0000000a020000 + - m_Vertices: b4000000040200000b0200000f020000 + - m_Vertices: b7000000c4000000f900000006010000 + - m_Vertices: b8000000bb000000fa000000fd000000 + - m_Vertices: bf000000cc000000010100000e010000 + - m_Vertices: c0000000c30000000201000005010000 + - m_Vertices: c7000000d00000002b01000036010000 + - m_Vertices: c8000000cb0000000d0100002c0100002f010000 + - m_Vertices: cf000000d40000003501000048010000 + - m_Vertices: d3000000dc0000003c01000047010000 + - m_Vertices: d700000002020000140200001d020000 + - m_Vertices: d8000000db0000003b010000400100001e020000 + - m_Vertices: df00000007020000220200002c020000 + - m_Vertices: e0000000f30000002301000023020000 + - m_Vertices: e3000000f80000001701000028010000 + - m_Vertices: e4000000e700000018010000580100005d010000 + - m_Vertices: e8000000eb0000004d01000059010000 + - m_Vertices: ec000000ef0000004e0100005201000037020000 + - m_Vertices: f0000000090200002702000038020000 + - m_Vertices: f4000000f70000002401000027010000 + - m_Vertices: fb000000080100007801000085010000 + - m_Vertices: fc000000ff000000790100007c010000 + - m_Vertices: 000100007d0100000e0200003c020000 + - m_Vertices: 03010000100100008001000089010000 + - m_Vertices: 04010000070100008101000084010000 + - m_Vertices: 090100002d01000038010000 + - m_Vertices: 0a0100002e01000031010000 + - m_Vertices: 0b0100006d01000074010000 + - m_Vertices: 0c010000320100007001000075010000 + - m_Vertices: 0f010000300100007101000088010000 + - m_Vertices: 11010000370100004a010000 + - m_Vertices: 12010000690100006c010000 + - m_Vertices: 130100003d01000042010000 + - m_Vertices: 140100003e01000049010000 + - m_Vertices: 15010000410100006101000064010000 + - m_Vertices: 160100006501000068010000 + - m_Vertices: 190100002a0100008c01000095010000 + - m_Vertices: 1a0100005c0100008d010000a0010000 + - m_Vertices: 1b0100005a0100005f010000 + - m_Vertices: 1c0100001f0100004f0100005b010000 + - m_Vertices: 1d0100005e010000a1010000a4010000 + - m_Vertices: 1e010000210100009c010000a5010000 + - m_Vertices: 200100005001000054010000 + - m_Vertices: 2201000055010000980100009d010000 + - m_Vertices: 25010000900100002402000057020000 + - m_Vertices: 26010000290100009101000094010000 + - m_Vertices: 33010000bb010000d6010000 + - m_Vertices: 34010000ba010000bf010000 + - m_Vertices: 39010000 + - m_Vertices: 3a010000b7010000be010000 + - m_Vertices: 3f010000600100001f02000052020000 + - m_Vertices: 43010000 + - m_Vertices: 44010000aa010000db010000 + - m_Vertices: 45010000af010000b2010000 + - m_Vertices: 46010000ab010000ae010000 + - m_Vertices: 4b010000 + - m_Vertices: 4c010000b3010000b6010000 + - m_Vertices: 51010000fb010000fe010000 + - m_Vertices: 53010000990100003b02000069020000 + - m_Vertices: 56010000f2010000f7010000 + - m_Vertices: 57010000f6010000ff010000 + - m_Vertices: 62010000a8010000d901000053020000 + - m_Vertices: 6301000066010000a9010000ac010000 + - m_Vertices: 670100006a010000ad010000b0010000 + - m_Vertices: 6b0100006e010000b1010000b4010000 + - m_Vertices: 6f01000076010000b5010000bc010000 + - m_Vertices: 7201000077010000b8010000bd010000 + - m_Vertices: 730100008a010000b9010000d4010000 + - m_Vertices: 7a01000087010000c4010000d1010000 + - m_Vertices: 7b0100007e010000c5010000c8010000 + - m_Vertices: 7f010000c0010000c901000040020000 + - m_Vertices: 820100008b010000cc010000d5010000 + - m_Vertices: 8301000086010000cd010000d0010000 + - m_Vertices: 8e01000097010000e0010000ed010000 + - m_Vertices: 8f010000a2010000e1010000f8010000 + - m_Vertices: 92010000dd010000e801000058020000 + - m_Vertices: 9301000096010000e9010000ec010000 + - m_Vertices: 9a0100009f010000f0010000f5010000 + - m_Vertices: 9b010000e4010000f10100006d020000 + - m_Vertices: 9e010000a7010000f4010000fd010000 + - m_Vertices: a3010000a6010000f9010000fc010000 + - m_Vertices: c10100003f0200004e0200006e020000 + - m_Vertices: d80100004a0200005402000070020000 + - m_Vertices: dc010000590200006202000075020000 + - m_Vertices: e5010000660200006c02000073020000 + - m_Vertices: 030200001002000013020000 + - m_Vertices: 08020000280200002b020000 + - m_Vertices: 0c020000120200001b020000 + - m_Vertices: 0d0200003d02000041020000 + - m_Vertices: 11020000160200001a0200001c020000 + - m_Vertices: 150200001702000021020000 + - m_Vertices: 18020000200200004602000051020000 + - m_Vertices: 190200004202000045020000 + - m_Vertices: 250200003002000056020000 + - m_Vertices: 260200002d0200002f020000 + - m_Vertices: 290200002e0200003202000036020000 + - m_Vertices: 2a0200003502000039020000 + - m_Vertices: 31020000330200005c020000 + - m_Vertices: 340200003a0200005b0200006a020000 + - m_Vertices: 3e020000440200004f020000 + - m_Vertices: 43020000480200004c02000050020000 + - m_Vertices: 470200004902000055020000 + - m_Vertices: 4b0200004d0200006f020000 + - m_Vertices: 5a0200005f02000061020000 + - m_Vertices: 5d020000600200006402000068020000 + - m_Vertices: 5e020000670200006b020000 + - m_Vertices: 630200006502000074020000 + m_SharedTextures: [] + m_Positions: + - {x: 0.42964935, y: 4.07164, z: -243.67639} + - {x: -4.972925, y: 4.07164, z: -243.67639} + - {x: 0.42964935, y: 3.0537415, z: -243.67639} + - {x: 0.42964935, y: 2.0358276, z: -243.67639} + - {x: 0.42964935, y: 1.0179138, z: -243.67639} + - {x: 0.42964935, y: 0, z: -243.67639} + - {x: -4.972925, y: 0, z: -243.67639} + - {x: -4.972925, y: 2.0358276, z: -243.67639} + - {x: 12.031523, y: 0, z: -243.70071} + - {x: 6.2209063, y: 0, z: -243.70071} + - {x: 0.41029167, y: 0, z: -243.70071} + - {x: 0.41029167, y: 2.0358276, z: -243.70071} + - {x: 6.2209063, y: 2.0358276, z: -243.70071} + - {x: 0.41029167, y: 4.07164, z: -243.70071} + - {x: 6.2209063, y: 4.07164, z: -243.70071} + - {x: 12.031523, y: 4.07164, z: -243.70071} + - {x: 12.031523, y: 2.0358276, z: -243.70071} + - {x: 4.507056, y: 0.8379822, z: -104.552475} + - {x: -0.6272278, y: 0.8379822, z: -104.552475} + - {x: 12.063183, y: 0, z: -151.34294} + - {x: 6.9288983, y: 0, z: -151.34294} + - {x: 9.161264, y: 2.0358276, z: -104.552475} + - {x: 9.161264, y: 0.8379822, z: -104.552475} + - {x: 16.71739, y: 2.0358276, z: -151.34294} + - {x: 16.71739, y: 0, z: -151.34294} + - {x: 9.161264, y: 0.8379822, z: -104.552475} + - {x: 4.507056, y: 0.8379822, z: -104.552475} + - {x: 16.71739, y: 0, z: -151.34294} + - {x: 12.063183, y: 0, z: -151.34294} + - {x: -0.6272278, y: 0.8379822, z: -104.552475} + - {x: -0.6272278, y: 2.0358276, z: -104.552475} + - {x: 6.9288983, y: 0, z: -151.34294} + - {x: 6.9288983, y: 2.0358276, z: -151.34294} + - {x: 10.317672, y: 7.8259277, z: -104.552475} + - {x: 9.161264, y: 2.0358276, z: -104.552475} + - {x: 17.873798, y: 4.07164, z: -151.34294} + - {x: 16.71739, y: 2.0358276, z: -151.34294} + - {x: -0.6272278, y: 2.0358276, z: -104.552475} + - {x: -1.3035593, y: 7.8259277, z: -104.552475} + - {x: 6.9288983, y: 2.0358276, z: -151.34294} + - {x: 6.2525673, y: 4.07164, z: -151.34294} + - {x: -1.3035593, y: 7.8259277, z: -104.552475} + - {x: 4.507056, y: 7.8259277, z: -104.552475} + - {x: 6.2525673, y: 4.07164, z: -151.34294} + - {x: 12.063183, y: 4.07164, z: -151.34294} + - {x: 4.507056, y: 7.8259277, z: -104.552475} + - {x: 10.317672, y: 7.8259277, z: -104.552475} + - {x: 12.063183, y: 4.07164, z: -151.34294} + - {x: 17.873798, y: 4.07164, z: -151.34294} + - {x: 12.063183, y: 0, z: -151.34294} + - {x: 6.9288983, y: 0, z: -151.34294} + - {x: 6.2228355, y: 0, z: -190.04837} + - {x: 0.41222, y: 0, z: -190.04837} + - {x: 16.71739, y: 2.0358276, z: -151.34294} + - {x: 16.71739, y: 0, z: -151.34294} + - {x: 12.033451, y: 2.0358276, z: -190.04837} + - {x: 12.033451, y: 0, z: -190.04837} + - {x: 16.71739, y: 0, z: -151.34294} + - {x: 12.063183, y: 0, z: -151.34294} + - {x: 12.033451, y: 0, z: -190.04837} + - {x: 6.2228355, y: 0, z: -190.04837} + - {x: 6.9288983, y: 0, z: -151.34294} + - {x: 6.9288983, y: 2.0358276, z: -151.34294} + - {x: 0.41222, y: 0, z: -190.04837} + - {x: 0.41222, y: 2.0358276, z: -190.04837} + - {x: 17.873798, y: 4.07164, z: -151.34294} + - {x: 16.71739, y: 2.0358276, z: -151.34294} + - {x: 12.033451, y: 4.07164, z: -190.04837} + - {x: 12.033451, y: 2.0358276, z: -190.04837} + - {x: 6.9288983, y: 2.0358276, z: -151.34294} + - {x: 6.2525673, y: 4.07164, z: -151.34294} + - {x: 0.41222, y: 2.0358276, z: -190.04837} + - {x: 0.41222, y: 4.07164, z: -190.04837} + - {x: 6.2525673, y: 4.07164, z: -151.34294} + - {x: 12.063183, y: 4.07164, z: -151.34294} + - {x: 0.41222, y: 4.07164, z: -190.04837} + - {x: 6.2228355, y: 4.07164, z: -190.04837} + - {x: 12.063183, y: 4.07164, z: -151.34294} + - {x: 17.873798, y: 4.07164, z: -151.34294} + - {x: 6.2228355, y: 4.07164, z: -190.04837} + - {x: 12.033451, y: 4.07164, z: -190.04837} + - {x: -2.2667646, y: 1.0179138, z: -104.578186} + - {x: -2.2667646, y: 0.8379822, z: -104.578186} + - {x: -12.506029, y: 1.0179138, z: -151.65277} + - {x: -12.506029, y: 0, z: -151.65277} + - {x: -2.2667646, y: 0.8379822, z: -104.578186} + - {x: -6.6980515, y: 0.8379822, z: -104.578186} + - {x: -12.506029, y: 0, z: -151.65277} + - {x: -16.937315, y: 0, z: -151.65277} + - {x: -1.9470282, y: 3.0537415, z: -104.578186} + - {x: -2.2667646, y: 2.0358276, z: -104.578186} + - {x: -12.186293, y: 3.0537415, z: -151.65277} + - {x: -12.506029, y: 2.0358276, z: -151.65277} + - {x: -2.2667646, y: 2.0358276, z: -104.578186} + - {x: -2.2667646, y: 1.0179138, z: -104.578186} + - {x: -12.506029, y: 2.0358276, z: -151.65277} + - {x: -12.506029, y: 1.0179138, z: -151.65277} + - {x: -6.6980515, y: 7.8259277, z: -104.578186} + - {x: -1.2954779, y: 7.8259277, z: -104.578186} + - {x: -16.937315, y: 4.07164, z: -151.65277} + - {x: -11.534742, y: 4.07164, z: -151.65277} + - {x: -1.2954779, y: 7.8259277, z: -104.578186} + - {x: -1.9470282, y: 3.0537415, z: -104.578186} + - {x: -11.534742, y: 4.07164, z: -151.65277} + - {x: -12.186293, y: 3.0537415, z: -151.65277} + - {x: -11.861755, y: 3.0537415, z: -104.578186} + - {x: -12.100626, y: 7.8259277, z: -104.578186} + - {x: -22.101019, y: 3.0537415, z: -151.65277} + - {x: -22.33989, y: 4.07164, z: -151.65277} + - {x: -12.100626, y: 7.8259277, z: -104.578186} + - {x: -6.6980515, y: 7.8259277, z: -104.578186} + - {x: -22.33989, y: 4.07164, z: -151.65277} + - {x: -16.937315, y: 4.07164, z: -151.65277} + - {x: -11.08976, y: 2.0358276, z: -104.578186} + - {x: -11.861755, y: 3.0537415, z: -104.578186} + - {x: -21.929499, y: 2.0358276, z: -151.65277} + - {x: -22.101019, y: 3.0537415, z: -151.65277} + - {x: -11.32863, y: 1.0179138, z: -104.578186} + - {x: -11.08976, y: 2.0358276, z: -104.578186} + - {x: -21.9818, y: 1.0179138, z: -151.65277} + - {x: -21.929499, y: 2.0358276, z: -151.65277} + - {x: -6.6980515, y: 0.8379822, z: -104.578186} + - {x: -11.32863, y: 0.8379822, z: -104.578186} + - {x: -16.937315, y: 0, z: -151.65277} + - {x: -21.9818, y: 0, z: -151.65277} + - {x: -11.32863, y: 0.8379822, z: -104.578186} + - {x: -11.32863, y: 1.0179138, z: -104.578186} + - {x: -21.9818, y: 0, z: -151.65277} + - {x: -21.9818, y: 1.0179138, z: -151.65277} + - {x: -12.506029, y: 1.0179138, z: -151.65277} + - {x: -12.506029, y: 0, z: -151.65277} + - {x: 0.43157768, y: 1.0179138, z: -190.02405} + - {x: 0.43157768, y: 0, z: -190.02405} + - {x: -12.506029, y: 0, z: -151.65277} + - {x: -16.937315, y: 0, z: -151.65277} + - {x: 0.43157768, y: 0, z: -190.02405} + - {x: -4.970995, y: 0, z: -190.02405} + - {x: -12.186293, y: 3.0537415, z: -151.65277} + - {x: -12.506029, y: 2.0358276, z: -151.65277} + - {x: 0.43157768, y: 3.0537415, z: -190.02405} + - {x: 0.43157768, y: 2.0358276, z: -190.02405} + - {x: -12.506029, y: 2.0358276, z: -151.65277} + - {x: -12.506029, y: 1.0179138, z: -151.65277} + - {x: 0.43157768, y: 2.0358276, z: -190.02405} + - {x: 0.43157768, y: 1.0179138, z: -190.02405} + - {x: -16.937315, y: 4.07164, z: -151.65277} + - {x: -11.534742, y: 4.07164, z: -151.65277} + - {x: -4.970995, y: 4.07164, z: -190.02405} + - {x: 0.43157768, y: 4.07164, z: -190.02405} + - {x: -11.534742, y: 4.07164, z: -151.65277} + - {x: -12.186293, y: 3.0537415, z: -151.65277} + - {x: 0.43157768, y: 4.07164, z: -190.02405} + - {x: 0.43157768, y: 3.0537415, z: -190.02405} + - {x: -22.101019, y: 3.0537415, z: -151.65277} + - {x: -22.33989, y: 4.07164, z: -151.65277} + - {x: -10.3735695, y: 3.0537415, z: -190.02405} + - {x: -10.3735695, y: 4.07164, z: -190.02405} + - {x: -22.33989, y: 4.07164, z: -151.65277} + - {x: -16.937315, y: 4.07164, z: -151.65277} + - {x: -10.3735695, y: 4.07164, z: -190.02405} + - {x: -4.970995, y: 4.07164, z: -190.02405} + - {x: -21.929499, y: 2.0358276, z: -151.65277} + - {x: -22.101019, y: 3.0537415, z: -151.65277} + - {x: -10.202049, y: 2.0358276, z: -190.02405} + - {x: -10.3735695, y: 3.0537415, z: -190.02405} + - {x: -21.9818, y: 1.0179138, z: -151.65277} + - {x: -21.929499, y: 2.0358276, z: -151.65277} + - {x: -10.01548, y: 1.0179138, z: -190.02405} + - {x: -10.202049, y: 2.0358276, z: -190.02405} + - {x: -16.937315, y: 0, z: -151.65277} + - {x: -21.9818, y: 0, z: -151.65277} + - {x: -4.970995, y: 0, z: -190.02405} + - {x: -10.01548, y: 0, z: -190.02405} + - {x: -21.9818, y: 0, z: -151.65277} + - {x: -21.9818, y: 1.0179138, z: -151.65277} + - {x: -10.01548, y: 0, z: -190.02405} + - {x: -10.01548, y: 1.0179138, z: -190.02405} + - {x: 0.43157768, y: 1.0179138, z: -190.02405} + - {x: 0.43157768, y: 0, z: -190.02405} + - {x: 0.43095398, y: 1.0179138, z: -201.00168} + - {x: 0.43095398, y: -7.162033, z: -201.00168} + - {x: 0.43157768, y: 3.0537415, z: -190.02405} + - {x: 0.43157768, y: 2.0358276, z: -190.02405} + - {x: 0.43095398, y: 3.0537415, z: -201.00168} + - {x: 0.43095398, y: 2.0358276, z: -201.00168} + - {x: 0.43157768, y: 2.0358276, z: -190.02405} + - {x: 0.43157768, y: 1.0179138, z: -190.02405} + - {x: 0.43095398, y: 2.0358276, z: -201.00168} + - {x: 0.43095398, y: 1.0179138, z: -201.00168} + - {x: -4.970995, y: 4.07164, z: -190.02405} + - {x: 0.43157768, y: 4.07164, z: -190.02405} + - {x: -4.9716187, y: 4.07164, z: -201.00168} + - {x: 0.43095398, y: 4.07164, z: -201.00168} + - {x: 0.43157768, y: 4.07164, z: -190.02405} + - {x: 0.43157768, y: 3.0537415, z: -190.02405} + - {x: 0.43095398, y: 4.07164, z: -201.00168} + - {x: 0.43095398, y: 3.0537415, z: -201.00168} + - {x: -10.3735695, y: 3.0537415, z: -190.02405} + - {x: -10.3735695, y: 4.07164, z: -190.02405} + - {x: -10.374193, y: 3.0537415, z: -201.00168} + - {x: -10.374193, y: 4.07164, z: -201.00168} + - {x: -10.3735695, y: 4.07164, z: -190.02405} + - {x: -4.970995, y: 4.07164, z: -190.02405} + - {x: -10.374193, y: 4.07164, z: -201.00168} + - {x: -4.9716187, y: 4.07164, z: -201.00168} + - {x: -10.202049, y: 2.0358276, z: -190.02405} + - {x: -10.3735695, y: 3.0537415, z: -190.02405} + - {x: -10.374193, y: 2.0358276, z: -201.00168} + - {x: -10.374193, y: 3.0537415, z: -201.00168} + - {x: -10.01548, y: 1.0179138, z: -190.02405} + - {x: -10.202049, y: 2.0358276, z: -190.02405} + - {x: -10.374193, y: 1.0179138, z: -201.00168} + - {x: -10.374193, y: 2.0358276, z: -201.00168} + - {x: -4.970995, y: 0, z: -190.02405} + - {x: -10.01548, y: 0, z: -190.02405} + - {x: -4.9716187, y: -7.162033, z: -201.00168} + - {x: -10.374193, y: 0, z: -201.00168} + - {x: -10.01548, y: 0, z: -190.02405} + - {x: -10.01548, y: 1.0179138, z: -190.02405} + - {x: -10.374193, y: 0, z: -201.00168} + - {x: -10.374193, y: 1.0179138, z: -201.00168} + - {x: 0.41222, y: 0, z: -190.04837} + - {x: 0.41222, y: 2.0358276, z: -190.04837} + - {x: 0.4115963, y: -7.162033, z: -201.026} + - {x: 0.4115963, y: 2.0358276, z: -201.026} + - {x: 6.2228355, y: 4.07164, z: -190.04837} + - {x: 12.033451, y: 4.07164, z: -190.04837} + - {x: 6.222212, y: 4.07164, z: -201.026} + - {x: 12.032827, y: 4.07164, z: -201.026} + - {x: 12.033451, y: 4.07164, z: -190.04837} + - {x: 12.033451, y: 2.0358276, z: -190.04837} + - {x: 12.032827, y: 4.07164, z: -201.026} + - {x: 12.032827, y: 2.0358276, z: -201.026} + - {x: 12.033451, y: 2.0358276, z: -190.04837} + - {x: 12.033451, y: 0, z: -190.04837} + - {x: 12.032827, y: 2.0358276, z: -201.026} + - {x: 12.032827, y: 0, z: -201.026} + - {x: 12.033451, y: 0, z: -190.04837} + - {x: 6.2228355, y: 0, z: -190.04837} + - {x: 12.032827, y: 0, z: -201.026} + - {x: 6.222212, y: -7.162033, z: -201.026} + - {x: 0.41222, y: 2.0358276, z: -190.04837} + - {x: 0.41222, y: 4.07164, z: -190.04837} + - {x: 0.4115963, y: 2.0358276, z: -201.026} + - {x: 0.4115963, y: 4.07164, z: -201.026} + - {x: 0.41222, y: 4.07164, z: -190.04837} + - {x: 6.2228355, y: 4.07164, z: -190.04837} + - {x: 0.4115963, y: 4.07164, z: -201.026} + - {x: 6.222212, y: 4.07164, z: -201.026} + - {x: 0.43095398, y: 3.0537415, z: -201.00168} + - {x: 0.43095398, y: 2.0358276, z: -201.00168} + - {x: 0.43033028, y: 3.0537415, z: -214.52945} + - {x: 0.43033028, y: 2.0358276, z: -214.52945} + - {x: 0.43095398, y: 2.0358276, z: -201.00168} + - {x: 0.43095398, y: 1.0179138, z: -201.00168} + - {x: 0.43033028, y: 2.0358276, z: -214.52945} + - {x: 0.43033028, y: 1.0179138, z: -214.52945} + - {x: -4.9716187, y: 4.07164, z: -201.00168} + - {x: 0.43095398, y: 4.07164, z: -201.00168} + - {x: -4.9722424, y: 4.07164, z: -214.52945} + - {x: 0.43033028, y: 4.07164, z: -214.52945} + - {x: 0.43095398, y: 4.07164, z: -201.00168} + - {x: 0.43095398, y: 3.0537415, z: -201.00168} + - {x: 0.43033028, y: 4.07164, z: -214.52945} + - {x: 0.43033028, y: 3.0537415, z: -214.52945} + - {x: -17.65919, y: 3.0537415, z: -204.78076} + - {x: -17.65919, y: 4.07164, z: -204.78076} + - {x: -22.249283, y: 3.0537415, z: -214.52942} + - {x: -22.249283, y: 4.07164, z: -214.52942} + - {x: -10.374193, y: 4.07164, z: -201.00168} + - {x: -4.9716187, y: 4.07164, z: -201.00168} + - {x: -10.374817, y: 4.07164, z: -214.52945} + - {x: -4.9722424, y: 4.07164, z: -214.52945} + - {x: -17.65919, y: 2.0358276, z: -204.78076} + - {x: -22.249283, y: 2.0358276, z: -214.52942} + - {x: -17.65919, y: 0, z: -204.78076} + - {x: -17.65919, y: 1.0179138, z: -204.78076} + - {x: -22.249283, y: 0, z: -214.52942} + - {x: -22.249283, y: 1.0179138, z: -214.52942} + - {x: 6.222212, y: 4.07164, z: -201.026} + - {x: 12.032827, y: 4.07164, z: -201.026} + - {x: 6.221588, y: 4.07164, z: -214.55377} + - {x: 12.032204, y: 4.07164, z: -214.55377} + - {x: 20.642776, y: 4.07164, z: -203.74835} + - {x: 20.642776, y: 2.0358276, z: -203.74835} + - {x: 23.64962, y: 4.07164, z: -214.5538} + - {x: 23.64962, y: 2.0358276, z: -214.5538} + - {x: 20.642776, y: 2.0358276, z: -203.74835} + - {x: 20.642776, y: 0, z: -203.74835} + - {x: 23.64962, y: 2.0358276, z: -214.5538} + - {x: 23.64962, y: 0, z: -214.5538} + - {x: 0.4115963, y: 2.0358276, z: -201.026} + - {x: 0.4115963, y: 4.07164, z: -201.026} + - {x: 0.4109726, y: 2.0358276, z: -214.55377} + - {x: 0.4109726, y: 4.07164, z: -214.55377} + - {x: 0.4115963, y: 4.07164, z: -201.026} + - {x: 6.222212, y: 4.07164, z: -201.026} + - {x: 0.4109726, y: 4.07164, z: -214.55377} + - {x: 6.221588, y: 4.07164, z: -214.55377} + - {x: -10.374193, y: 3.0537415, z: -201.00168} + - {x: -10.374193, y: 4.07164, z: -201.00168} + - {x: -17.65919, y: 3.0537415, z: -204.78076} + - {x: -17.65919, y: 4.07164, z: -204.78076} + - {x: -10.374193, y: 4.07164, z: -201.00168} + - {x: -10.374817, y: 4.07164, z: -214.52945} + - {x: -17.65919, y: 4.07164, z: -204.78076} + - {x: -22.249283, y: 4.07164, z: -214.52942} + - {x: -10.375498, y: 4.07164, z: -243.67639} + - {x: -17.859066, y: 4.07164, z: -240.43222} + - {x: -10.374193, y: 2.0358276, z: -201.00168} + - {x: -10.374193, y: 3.0537415, z: -201.00168} + - {x: -17.65919, y: 2.0358276, z: -204.78076} + - {x: -17.65919, y: 3.0537415, z: -204.78076} + - {x: -10.375498, y: 3.0537415, z: -243.67639} + - {x: -17.859066, y: 3.0537415, z: -240.43222} + - {x: -10.374193, y: 0, z: -201.00168} + - {x: -10.374193, y: 1.0179138, z: -201.00168} + - {x: -17.65919, y: 0, z: -204.78076} + - {x: -17.65919, y: 1.0179138, z: -204.78076} + - {x: -10.374817, y: 0, z: -214.52945} + - {x: -10.374193, y: 0, z: -201.00168} + - {x: -22.249283, y: 0, z: -214.52942} + - {x: -17.65919, y: 0, z: -204.78076} + - {x: -10.375498, y: 1.0179138, z: -243.67639} + - {x: -10.375498, y: 0, z: -243.67639} + - {x: -17.859066, y: 1.0179138, z: -240.43222} + - {x: -17.859066, y: 0, z: -240.43222} + - {x: -10.374193, y: 1.0179138, z: -201.00168} + - {x: -10.374193, y: 2.0358276, z: -201.00168} + - {x: -17.65919, y: 1.0179138, z: -204.78076} + - {x: -17.65919, y: 2.0358276, z: -204.78076} + - {x: -10.375498, y: 2.0358276, z: -243.67639} + - {x: -17.859066, y: 2.0358276, z: -240.43222} + - {x: 12.032827, y: 2.0358276, z: -201.026} + - {x: 12.032827, y: 0, z: -201.026} + - {x: 20.642776, y: 2.0358276, z: -203.74835} + - {x: 20.642776, y: 0, z: -203.74835} + - {x: 18.26132, y: 4.07164, z: -241.44919} + - {x: 12.032827, y: 0, z: -201.026} + - {x: 12.032204, y: 0, z: -214.55377} + - {x: 20.642776, y: 0, z: -203.74835} + - {x: 23.64962, y: 0, z: -214.5538} + - {x: 18.26132, y: 0, z: -241.44919} + - {x: 18.26132, y: 2.0358276, z: -241.44919} + - {x: 12.032827, y: 4.07164, z: -201.026} + - {x: 12.032827, y: 2.0358276, z: -201.026} + - {x: 20.642776, y: 4.07164, z: -203.74835} + - {x: 20.642776, y: 2.0358276, z: -203.74835} + - {x: 12.032204, y: 4.07164, z: -214.55377} + - {x: 12.032827, y: 4.07164, z: -201.026} + - {x: 23.64962, y: 4.07164, z: -214.5538} + - {x: 20.642776, y: 4.07164, z: -203.74835} + - {x: -10.374817, y: 0, z: -214.52945} + - {x: -22.249283, y: 0, z: -214.52942} + - {x: -10.375158, y: 0, z: -236.21887} + - {x: -22.249624, y: 0, z: -236.21884} + - {x: -22.249283, y: 0, z: -214.52942} + - {x: -22.249283, y: 1.0179138, z: -214.52942} + - {x: -22.249624, y: 0, z: -236.21884} + - {x: -22.249624, y: 1.0179138, z: -236.21884} + - {x: -22.249283, y: 1.0179138, z: -214.52942} + - {x: -22.249283, y: 2.0358276, z: -214.52942} + - {x: -22.249624, y: 1.0179138, z: -236.21884} + - {x: -22.249624, y: 2.0358276, z: -236.21884} + - {x: -22.249283, y: 2.0358276, z: -214.52942} + - {x: -22.249283, y: 3.0537415, z: -214.52942} + - {x: -22.249624, y: 2.0358276, z: -236.21884} + - {x: -22.249624, y: 3.0537415, z: -236.21884} + - {x: -22.249283, y: 4.07164, z: -214.52942} + - {x: -10.374817, y: 4.07164, z: -214.52945} + - {x: -22.249624, y: 4.07164, z: -236.21884} + - {x: -10.375158, y: 4.07164, z: -236.21887} + - {x: -22.249283, y: 3.0537415, z: -214.52942} + - {x: -22.249283, y: 4.07164, z: -214.52942} + - {x: -22.249624, y: 3.0537415, z: -236.21884} + - {x: -22.249624, y: 4.07164, z: -236.21884} + - {x: 0.43033028, y: 3.0537415, z: -214.52945} + - {x: 0.43033028, y: 2.0358276, z: -214.52945} + - {x: 0.4299898, y: 3.0537415, z: -236.21887} + - {x: 0.4299898, y: 2.0358276, z: -236.21887} + - {x: 0.43033028, y: 2.0358276, z: -214.52945} + - {x: 0.43033028, y: 1.0179138, z: -214.52945} + - {x: 0.4299898, y: 2.0358276, z: -236.21887} + - {x: 0.4299898, y: 1.0179138, z: -236.21887} + - {x: -4.9722424, y: 4.07164, z: -214.52945} + - {x: 0.43033028, y: 4.07164, z: -214.52945} + - {x: -4.972584, y: 4.07164, z: -236.21887} + - {x: 0.4299898, y: 4.07164, z: -236.21887} + - {x: 0.43033028, y: 4.07164, z: -214.52945} + - {x: 0.43033028, y: 3.0537415, z: -214.52945} + - {x: 0.4299898, y: 4.07164, z: -236.21887} + - {x: 0.4299898, y: 3.0537415, z: -236.21887} + - {x: -10.374817, y: 4.07164, z: -214.52945} + - {x: -4.9722424, y: 4.07164, z: -214.52945} + - {x: -10.375158, y: 4.07164, z: -236.21887} + - {x: -4.972584, y: 4.07164, z: -236.21887} + - {x: 6.221588, y: 4.07164, z: -214.55377} + - {x: 12.032204, y: 4.07164, z: -214.55377} + - {x: 6.221247, y: 4.07164, z: -236.2432} + - {x: 12.031863, y: 4.07164, z: -236.2432} + - {x: 0.4109726, y: 2.0358276, z: -214.55377} + - {x: 0.4109726, y: 4.07164, z: -214.55377} + - {x: 0.41063213, y: 2.0358276, z: -236.2432} + - {x: 0.41063213, y: 4.07164, z: -236.2432} + - {x: 0.4109726, y: 4.07164, z: -214.55377} + - {x: 6.221588, y: 4.07164, z: -214.55377} + - {x: 0.41063213, y: 4.07164, z: -236.2432} + - {x: 6.221247, y: 4.07164, z: -236.2432} + - {x: 23.64962, y: 0, z: -214.5538} + - {x: 12.032204, y: 0, z: -214.55377} + - {x: 23.649279, y: 0, z: -236.24323} + - {x: 12.031863, y: 0, z: -236.2432} + - {x: 23.64962, y: 2.0358276, z: -214.5538} + - {x: 23.64962, y: 0, z: -214.5538} + - {x: 23.649279, y: 2.0358276, z: -236.24323} + - {x: 23.649279, y: 0, z: -236.24323} + - {x: 12.032204, y: 4.07164, z: -214.55377} + - {x: 23.64962, y: 4.07164, z: -214.5538} + - {x: 12.031863, y: 4.07164, z: -236.2432} + - {x: 23.649279, y: 4.07164, z: -236.24323} + - {x: 23.64962, y: 4.07164, z: -214.5538} + - {x: 23.64962, y: 2.0358276, z: -214.5538} + - {x: 23.649279, y: 4.07164, z: -236.24323} + - {x: 23.649279, y: 2.0358276, z: -236.24323} + - {x: -10.375158, y: 0, z: -236.21887} + - {x: -22.249624, y: 0, z: -236.21884} + - {x: -10.375498, y: 0, z: -243.67639} + - {x: -17.859066, y: 0, z: -240.43222} + - {x: -22.249624, y: 0, z: -236.21884} + - {x: -22.249624, y: 1.0179138, z: -236.21884} + - {x: -17.859066, y: 0, z: -240.43222} + - {x: -17.859066, y: 1.0179138, z: -240.43222} + - {x: -22.249624, y: 1.0179138, z: -236.21884} + - {x: -22.249624, y: 2.0358276, z: -236.21884} + - {x: -17.859066, y: 1.0179138, z: -240.43222} + - {x: -17.859066, y: 2.0358276, z: -240.43222} + - {x: -22.249624, y: 2.0358276, z: -236.21884} + - {x: -22.249624, y: 3.0537415, z: -236.21884} + - {x: -17.859066, y: 2.0358276, z: -240.43222} + - {x: -17.859066, y: 3.0537415, z: -240.43222} + - {x: -22.249624, y: 4.07164, z: -236.21884} + - {x: -10.375158, y: 4.07164, z: -236.21887} + - {x: -17.859066, y: 4.07164, z: -240.43222} + - {x: -10.375498, y: 4.07164, z: -243.67639} + - {x: -22.249624, y: 3.0537415, z: -236.21884} + - {x: -22.249624, y: 4.07164, z: -236.21884} + - {x: -17.859066, y: 3.0537415, z: -240.43222} + - {x: -17.859066, y: 4.07164, z: -240.43222} + - {x: 0.4299898, y: 1.0179138, z: -236.21887} + - {x: 0.4299898, y: -7.162033, z: -236.21887} + - {x: 0.42964935, y: 1.0179138, z: -243.67639} + - {x: 0.42964935, y: 0, z: -243.67639} + - {x: 0.4299898, y: 3.0537415, z: -236.21887} + - {x: 0.4299898, y: 2.0358276, z: -236.21887} + - {x: 0.42964935, y: 3.0537415, z: -243.67639} + - {x: 0.42964935, y: 2.0358276, z: -243.67639} + - {x: 0.4299898, y: 2.0358276, z: -236.21887} + - {x: 0.4299898, y: 1.0179138, z: -236.21887} + - {x: 0.42964935, y: 2.0358276, z: -243.67639} + - {x: 0.42964935, y: 1.0179138, z: -243.67639} + - {x: -4.972584, y: 4.07164, z: -236.21887} + - {x: 0.4299898, y: 4.07164, z: -236.21887} + - {x: -4.972925, y: 4.07164, z: -243.67639} + - {x: 0.42964935, y: 4.07164, z: -243.67639} + - {x: 0.4299898, y: 4.07164, z: -236.21887} + - {x: 0.4299898, y: 3.0537415, z: -236.21887} + - {x: 0.42964935, y: 4.07164, z: -243.67639} + - {x: 0.42964935, y: 3.0537415, z: -243.67639} + - {x: -10.375158, y: 4.07164, z: -236.21887} + - {x: -4.972584, y: 4.07164, z: -236.21887} + - {x: -10.375498, y: 4.07164, z: -243.67639} + - {x: -4.972925, y: 4.07164, z: -243.67639} + - {x: -4.972584, y: -7.162033, z: -236.21887} + - {x: -10.375158, y: 0, z: -236.21887} + - {x: -4.972925, y: 0, z: -243.67639} + - {x: -10.375498, y: 0, z: -243.67639} + - {x: 0.41063213, y: -7.162033, z: -236.2432} + - {x: 0.41063213, y: 2.0358276, z: -236.2432} + - {x: 0.41029167, y: 0, z: -243.70071} + - {x: 0.41029167, y: 2.0358276, z: -243.70071} + - {x: 6.221247, y: 4.07164, z: -236.2432} + - {x: 12.031863, y: 4.07164, z: -236.2432} + - {x: 6.2209063, y: 4.07164, z: -243.70071} + - {x: 12.031523, y: 4.07164, z: -243.70071} + - {x: 12.031863, y: 0, z: -236.2432} + - {x: 6.221247, y: -7.162033, z: -236.2432} + - {x: 12.031523, y: 0, z: -243.70071} + - {x: 6.2209063, y: 0, z: -243.70071} + - {x: 0.41063213, y: 2.0358276, z: -236.2432} + - {x: 0.41063213, y: 4.07164, z: -236.2432} + - {x: 0.41029167, y: 2.0358276, z: -243.70071} + - {x: 0.41029167, y: 4.07164, z: -243.70071} + - {x: 0.41063213, y: 4.07164, z: -236.2432} + - {x: 6.221247, y: 4.07164, z: -236.2432} + - {x: 0.41029167, y: 4.07164, z: -243.70071} + - {x: 6.2209063, y: 4.07164, z: -243.70071} + - {x: 23.649279, y: 0, z: -236.24323} + - {x: 12.031863, y: 0, z: -236.2432} + - {x: 18.26132, y: 0, z: -241.44919} + - {x: 12.031523, y: 0, z: -243.70071} + - {x: 23.649279, y: 2.0358276, z: -236.24323} + - {x: 23.649279, y: 0, z: -236.24323} + - {x: 18.26132, y: 2.0358276, z: -241.44919} + - {x: 18.26132, y: 0, z: -241.44919} + - {x: 12.031863, y: 4.07164, z: -236.2432} + - {x: 23.649279, y: 4.07164, z: -236.24323} + - {x: 12.031523, y: 4.07164, z: -243.70071} + - {x: 18.26132, y: 4.07164, z: -241.44919} + - {x: 23.649279, y: 4.07164, z: -236.24323} + - {x: 23.649279, y: 2.0358276, z: -236.24323} + - {x: 18.26132, y: 4.07164, z: -241.44919} + - {x: 18.26132, y: 2.0358276, z: -241.44919} + - {x: 0.43157768, y: 0, z: -190.02405} + - {x: -4.970995, y: 0, z: -190.02405} + - {x: -4.9716187, y: -7.162033, z: -201.00168} + - {x: -2.2703323, y: -7.162033, z: -201.00168} + - {x: 0.43095398, y: -7.162033, z: -201.00168} + - {x: 6.2228355, y: 0, z: -190.04837} + - {x: 0.41222, y: 0, z: -190.04837} + - {x: 0.4115963, y: -7.162033, z: -201.026} + - {x: 3.316904, y: -7.162033, z: -201.026} + - {x: 6.222212, y: -7.162033, z: -201.026} + - {x: 0.43095398, y: 1.0179138, z: -201.00168} + - {x: 0.43095398, y: -7.162033, z: -201.00168} + - {x: 0.43064213, y: -13.171143, z: -207.76556} + - {x: 0.43033028, y: -16.070251, z: -214.52945} + - {x: 0.43033028, y: 1.0179138, z: -214.52945} + - {x: 0.43095398, y: -7.162033, z: -201.00168} + - {x: -2.2703323, y: -7.162033, z: -201.00168} + - {x: -2.2706442, y: -13.171143, z: -207.76556} + - {x: 0.43064213, y: -13.171143, z: -207.76556} + - {x: -2.2703323, y: -7.162033, z: -201.00168} + - {x: -4.9716187, y: -7.162033, z: -201.00168} + - {x: -4.9719305, y: -7.162033, z: -207.76556} + - {x: -2.2706442, y: -13.171143, z: -207.76556} + - {x: -4.9719305, y: -7.162033, z: -207.76556} + - {x: -4.9722424, y: -7.162033, z: -214.52945} + - {x: -2.270956, y: -13.171143, z: -214.52945} + - {x: -2.2706442, y: -13.171143, z: -207.76556} + - {x: 0.43064213, y: -13.171143, z: -207.76556} + - {x: -2.2706442, y: -13.171143, z: -207.76556} + - {x: -4.9716187, y: -7.162033, z: -201.00168} + - {x: -10.374193, y: 0, z: -201.00168} + - {x: -10.374817, y: 0, z: -214.52945} + - {x: -4.9722424, y: -7.162033, z: -214.52945} + - {x: -4.9719305, y: -7.162033, z: -207.76556} + - {x: 0.4115963, y: -7.162033, z: -201.026} + - {x: 0.4115963, y: 2.0358276, z: -201.026} + - {x: 0.4109726, y: 2.0358276, z: -214.55377} + - {x: 0.4109726, y: -16.070251, z: -214.55377} + - {x: 0.41128445, y: -13.171143, z: -207.78989} + - {x: 6.222212, y: -7.162033, z: -201.026} + - {x: 3.316904, y: -7.162033, z: -201.026} + - {x: 3.3165922, y: -13.171143, z: -207.78989} + - {x: 6.2219, y: -7.162033, z: -207.78989} + - {x: 3.316904, y: -7.162033, z: -201.026} + - {x: 0.4115963, y: -7.162033, z: -201.026} + - {x: 0.41128445, y: -13.171143, z: -207.78989} + - {x: 3.3165922, y: -13.171143, z: -207.78989} + - {x: 0.41128445, y: -13.171143, z: -207.78989} + - {x: 0.4109726, y: -16.070251, z: -214.55377} + - {x: 3.3162804, y: -13.171143, z: -214.55377} + - {x: 3.3165922, y: -13.171143, z: -207.78989} + - {x: 3.3162804, y: -13.171143, z: -214.55377} + - {x: 7.7936816, y: -7.162033, z: -214.55377} + - {x: 6.2219, y: -7.162033, z: -207.78989} + - {x: 3.3165922, y: -13.171143, z: -207.78989} + - {x: 12.032827, y: 0, z: -201.026} + - {x: 6.222212, y: -7.162033, z: -201.026} + - {x: 6.2219, y: -7.162033, z: -207.78989} + - {x: 7.7936816, y: -7.162033, z: -214.55377} + - {x: 12.032204, y: 0, z: -214.55377} + - {x: 0.43033028, y: 1.0179138, z: -214.52945} + - {x: 0.43033028, y: -16.070251, z: -214.52945} + - {x: 0.43016052, y: -13.171143, z: -225.37415} + - {x: 0.4299898, y: -7.162033, z: -236.21887} + - {x: 0.4299898, y: 1.0179138, z: -236.21887} + - {x: 0.43033028, y: -16.070251, z: -214.52945} + - {x: -2.270956, y: -13.171143, z: -214.52945} + - {x: -2.2711267, y: -13.171143, z: -225.37415} + - {x: 0.43016052, y: -13.171143, z: -225.37415} + - {x: -2.270956, y: -13.171143, z: -214.52945} + - {x: -4.9722424, y: -7.162033, z: -214.52945} + - {x: -4.972413, y: -7.162033, z: -225.37416} + - {x: -2.2711267, y: -13.171143, z: -225.37415} + - {x: -4.972413, y: -7.162033, z: -225.37416} + - {x: -4.972584, y: -7.162033, z: -236.21887} + - {x: -2.271297, y: -7.162033, z: -236.21887} + - {x: -2.2711267, y: -13.171143, z: -225.37415} + - {x: -2.271297, y: -7.162033, z: -236.21887} + - {x: 0.4299898, y: -7.162033, z: -236.21887} + - {x: 0.43016052, y: -13.171143, z: -225.37415} + - {x: -2.2711267, y: -13.171143, z: -225.37415} + - {x: -4.9722424, y: -7.162033, z: -214.52945} + - {x: -10.374817, y: 0, z: -214.52945} + - {x: -10.375158, y: 0, z: -236.21887} + - {x: -4.972584, y: -7.162033, z: -236.21887} + - {x: -4.972413, y: -7.162033, z: -225.37416} + - {x: 0.4109726, y: -16.070251, z: -214.55377} + - {x: 0.4109726, y: 2.0358276, z: -214.55377} + - {x: 0.41063213, y: 2.0358276, z: -236.2432} + - {x: 0.41063213, y: -7.162033, z: -236.2432} + - {x: 0.41080284, y: -13.171143, z: -225.3985} + - {x: 7.7936816, y: -7.162033, z: -214.55377} + - {x: 3.3162804, y: -13.171143, z: -214.55377} + - {x: 3.3161097, y: -13.171143, z: -225.39847} + - {x: 7.793511, y: -7.162033, z: -225.3985} + - {x: 0.41080284, y: -13.171143, z: -225.3985} + - {x: 3.3161097, y: -13.171143, z: -225.39847} + - {x: 0.41080284, y: -13.171143, z: -225.3985} + - {x: 0.41063213, y: -7.162033, z: -236.2432} + - {x: 3.3159397, y: -7.162033, z: -236.2432} + - {x: 3.3161097, y: -13.171143, z: -225.39847} + - {x: 3.3159397, y: -7.162033, z: -236.2432} + - {x: 6.221247, y: -7.162033, z: -236.2432} + - {x: 7.793511, y: -7.162033, z: -225.3985} + - {x: 3.3161097, y: -13.171143, z: -225.39847} + - {x: 12.032204, y: 0, z: -214.55377} + - {x: 7.7936816, y: -7.162033, z: -214.55377} + - {x: 7.793511, y: -7.162033, z: -225.3985} + - {x: 6.221247, y: -7.162033, z: -236.2432} + - {x: 12.031863, y: 0, z: -236.2432} + - {x: 0.4299898, y: -7.162033, z: -236.21887} + - {x: -2.271297, y: -7.162033, z: -236.21887} + - {x: -4.972584, y: -7.162033, z: -236.21887} + - {x: -4.972925, y: 0, z: -243.67639} + - {x: 0.42964935, y: 0, z: -243.67639} + - {x: 6.221247, y: -7.162033, z: -236.2432} + - {x: 3.3159397, y: -7.162033, z: -236.2432} + - {x: 0.41063213, y: -7.162033, z: -236.2432} + - {x: 0.41029167, y: 0, z: -243.70071} + - {x: 6.2209063, y: 0, z: -243.70071} + - {x: 4.507056, y: 0.8379822, z: -100.894226} + - {x: -0.6272278, y: 0.8379822, z: -100.894226} + - {x: -0.6272278, y: 2.0358276, z: -100.894226} + - {x: -1.3035593, y: 7.8259277, z: -100.894226} + - {x: 4.507056, y: 7.8259277, z: -100.894226} + - {x: 10.317672, y: 7.8259277, z: -100.894226} + - {x: 9.161264, y: 2.0358276, z: -100.894226} + - {x: 9.161264, y: 0.8379822, z: -100.894226} + - {x: -2.2667646, y: 1.0179138, z: -100.91994} + - {x: -2.2667646, y: 0.8379822, z: -100.91994} + - {x: -6.6980515, y: 0.8379822, z: -100.91994} + - {x: -11.32863, y: 0.8379822, z: -100.91994} + - {x: -11.32863, y: 1.0179138, z: -100.91994} + - {x: -11.08976, y: 2.0358276, z: -100.91994} + - {x: -11.861755, y: 3.0537415, z: -100.91994} + - {x: -12.100626, y: 7.8259277, z: -100.91994} + - {x: -6.6980515, y: 7.8259277, z: -100.91994} + - {x: -1.2954779, y: 7.8259277, z: -100.91994} + - {x: -1.9470282, y: 3.0537415, z: -100.91994} + - {x: -2.2667646, y: 2.0358276, z: -100.91994} + - {x: 4.507056, y: 0.8379822, z: -104.552475} + - {x: 9.161264, y: 0.8379822, z: -104.552475} + - {x: 4.507056, y: 0.8379822, z: -100.894226} + - {x: 9.161264, y: 0.8379822, z: -100.894226} + - {x: 9.161264, y: 0.8379822, z: -104.552475} + - {x: 9.161264, y: 2.0358276, z: -104.552475} + - {x: 9.161264, y: 0.8379822, z: -100.894226} + - {x: 9.161264, y: 2.0358276, z: -100.894226} + - {x: -1.3035593, y: 7.8259277, z: -104.552475} + - {x: -0.6272278, y: 2.0358276, z: -104.552475} + - {x: -1.3035593, y: 7.8259277, z: -100.894226} + - {x: -0.6272278, y: 2.0358276, z: -100.894226} + - {x: 4.507056, y: 7.8259277, z: -104.552475} + - {x: -1.3035593, y: 7.8259277, z: -104.552475} + - {x: 4.507056, y: 7.8259277, z: -100.894226} + - {x: -1.3035593, y: 7.8259277, z: -100.894226} + - {x: -0.6272278, y: 2.0358276, z: -104.552475} + - {x: -0.6272278, y: 0.8379822, z: -104.552475} + - {x: -0.6272278, y: 2.0358276, z: -100.894226} + - {x: -0.6272278, y: 0.8379822, z: -100.894226} + - {x: -0.6272278, y: 0.8379822, z: -104.552475} + - {x: 4.507056, y: 0.8379822, z: -104.552475} + - {x: -0.6272278, y: 0.8379822, z: -100.894226} + - {x: 4.507056, y: 0.8379822, z: -100.894226} + - {x: 9.161264, y: 2.0358276, z: -104.552475} + - {x: 10.317672, y: 7.8259277, z: -104.552475} + - {x: 9.161264, y: 2.0358276, z: -100.894226} + - {x: 10.317672, y: 7.8259277, z: -100.894226} + - {x: 10.317672, y: 7.8259277, z: -104.552475} + - {x: 4.507056, y: 7.8259277, z: -104.552475} + - {x: 10.317672, y: 7.8259277, z: -100.894226} + - {x: 4.507056, y: 7.8259277, z: -100.894226} + - {x: -12.100626, y: 7.8259277, z: -104.578186} + - {x: -11.861755, y: 3.0537415, z: -104.578186} + - {x: -12.100626, y: 7.8259277, z: -100.91994} + - {x: -11.861755, y: 3.0537415, z: -100.91994} + - {x: -6.6980515, y: 7.8259277, z: -104.578186} + - {x: -12.100626, y: 7.8259277, z: -104.578186} + - {x: -6.6980515, y: 7.8259277, z: -100.91994} + - {x: -12.100626, y: 7.8259277, z: -100.91994} + - {x: -11.861755, y: 3.0537415, z: -104.578186} + - {x: -11.08976, y: 2.0358276, z: -104.578186} + - {x: -11.861755, y: 3.0537415, z: -100.91994} + - {x: -11.08976, y: 2.0358276, z: -100.91994} + - {x: -11.32863, y: 1.0179138, z: -104.578186} + - {x: -11.32863, y: 0.8379822, z: -104.578186} + - {x: -11.32863, y: 1.0179138, z: -100.91994} + - {x: -11.32863, y: 0.8379822, z: -100.91994} + - {x: -11.32863, y: 0.8379822, z: -104.578186} + - {x: -6.6980515, y: 0.8379822, z: -104.578186} + - {x: -11.32863, y: 0.8379822, z: -100.91994} + - {x: -6.6980515, y: 0.8379822, z: -100.91994} + - {x: -11.08976, y: 2.0358276, z: -104.578186} + - {x: -11.32863, y: 1.0179138, z: -104.578186} + - {x: -11.08976, y: 2.0358276, z: -100.91994} + - {x: -11.32863, y: 1.0179138, z: -100.91994} + - {x: -6.6980515, y: 0.8379822, z: -104.578186} + - {x: -2.2667646, y: 0.8379822, z: -104.578186} + - {x: -6.6980515, y: 0.8379822, z: -100.91994} + - {x: -2.2667646, y: 0.8379822, z: -100.91994} + - {x: -2.2667646, y: 0.8379822, z: -104.578186} + - {x: -2.2667646, y: 1.0179138, z: -104.578186} + - {x: -2.2667646, y: 0.8379822, z: -100.91994} + - {x: -2.2667646, y: 1.0179138, z: -100.91994} + - {x: -2.2667646, y: 1.0179138, z: -104.578186} + - {x: -2.2667646, y: 2.0358276, z: -104.578186} + - {x: -2.2667646, y: 1.0179138, z: -100.91994} + - {x: -2.2667646, y: 2.0358276, z: -100.91994} + - {x: -2.2667646, y: 2.0358276, z: -104.578186} + - {x: -1.9470282, y: 3.0537415, z: -104.578186} + - {x: -2.2667646, y: 2.0358276, z: -100.91994} + - {x: -1.9470282, y: 3.0537415, z: -100.91994} + - {x: -1.9470282, y: 3.0537415, z: -104.578186} + - {x: -1.2954779, y: 7.8259277, z: -104.578186} + - {x: -1.9470282, y: 3.0537415, z: -100.91994} + - {x: -1.2954779, y: 7.8259277, z: -100.91994} + - {x: -1.2954779, y: 7.8259277, z: -104.578186} + - {x: -6.6980515, y: 7.8259277, z: -104.578186} + - {x: -1.2954779, y: 7.8259277, z: -100.91994} + - {x: -6.6980515, y: 7.8259277, z: -100.91994} + m_Textures0: + - {x: 9.412529, y: 4.071636} + - {x: 4.013627, y: 4.071636} + - {x: 9.412529, y: 3.0537374} + - {x: 9.412529, y: 2.0358236} + - {x: 9.412529, y: 1.0179099} + - {x: 9.412529, y: -0.0000039792517} + - {x: 4.013627, y: -0.0000039825063} + - {x: 4.013627, y: 2.0358236} + - {x: 21.007414, y: -0.000003972659} + - {x: 15.200747, y: -0.00000397616} + - {x: 9.394081, y: -0.0000039796605} + - {x: 9.394081, y: 2.0358236} + - {x: 15.200747, y: 2.0358236} + - {x: 9.394081, y: 4.071636} + - {x: 15.200747, y: 4.071636} + - {x: 21.007414, y: 4.071636} + - {x: 21.007414, y: 2.0358236} + - {x: -4.507056, y: -104.52071} + - {x: 0.6272278, y: -104.52071} + - {x: -12.063183, y: -151.31868} + - {x: -6.9288983, y: -151.31868} + - {x: -104.675804, y: 2.0358276} + - {x: -104.675804, y: 0.8379822} + - {x: -152.07245, y: 2.0358276} + - {x: -152.07245, y: 0} + - {x: -9.161264, y: -104.52071} + - {x: -4.507056, y: -104.52071} + - {x: -16.71739, y: -151.31868} + - {x: -12.063183, y: -151.31868} + - {x: 103.11529, y: 0.8379822} + - {x: 103.11529, y: 2.0358276} + - {x: 150.51195, y: 0} + - {x: 150.51195, y: 2.0358276} + - {x: -104.74647, y: 6.1130714} + - {x: -104.54435, y: 0.2120811} + - {x: -152.13737, y: 2.2868824} + - {x: -151.93526, y: 0.06963008} + - {x: 103.11529, y: 4.002775} + - {x: 103.00747, y: 9.831244} + - {x: 150.51195, y: 4.002775} + - {x: 150.40411, y: 6.1016717} + - {x: -1.3035593, y: -103.59164} + - {x: 4.507056, y: -103.59164} + - {x: 6.2525673, y: -150.53247} + - {x: 12.063183, y: -150.53247} + - {x: 4.507056, y: -103.59164} + - {x: 10.317672, y: -103.59164} + - {x: 12.063183, y: -150.53247} + - {x: 17.873798, y: -150.53247} + - {x: -12.063183, y: -151.34294} + - {x: -6.9288983, y: -151.34294} + - {x: -6.2228355, y: -190.04837} + - {x: -0.41222, y: -190.04837} + - {x: -148.23839, y: 2.0358276} + - {x: -148.23839, y: 0} + - {x: -187.2262, y: 2.0358276} + - {x: -187.2262, y: 0} + - {x: -16.71739, y: -151.34294} + - {x: -12.063183, y: -151.34294} + - {x: -12.033451, y: -190.04837} + - {x: -6.2228355, y: -190.04837} + - {x: 148.09203, y: 0} + - {x: 148.09203, y: 2.0358276} + - {x: 187.34221, y: 0} + - {x: 187.34221, y: 2.0358276} + - {x: -146.98206, y: 23.263245} + - {x: -147.1546, y: 20.928284} + - {x: -186.12564, y: 23.263245} + - {x: -186.12564, y: 21.488255} + - {x: 148.09203, y: -8.01532} + - {x: 148.20432, y: -5.8730435} + - {x: 187.34221, y: -8.01532} + - {x: 187.34221, y: -6.08068} + - {x: 6.2525673, y: -151.34294} + - {x: 12.063183, y: -151.34294} + - {x: 0.41222, y: -190.04837} + - {x: 6.2228355, y: -190.04837} + - {x: 12.063183, y: -151.34294} + - {x: 17.873798, y: -151.34294} + - {x: 6.2228355, y: -190.04837} + - {x: 12.033451, y: -190.04837} + - {x: -102.67056, y: 1.0179138} + - {x: -102.67056, y: 0.8379822} + - {x: -150.84586, y: 1.0179138} + - {x: -150.84586, y: 0} + - {x: 2.2667646, y: -104.54671} + - {x: 6.6980515, y: -104.54671} + - {x: 12.506029, y: -151.62875} + - {x: 16.937315, y: -151.62875} + - {x: -102.60261, y: 8.883047} + - {x: -102.67056, y: 7.8182645} + - {x: -150.77791, y: 8.883047} + - {x: -150.84586, y: 7.8182645} + - {x: -102.67056, y: 2.0358276} + - {x: -102.67056, y: 1.0179138} + - {x: -150.84586, y: 2.0358276} + - {x: -150.84586, y: 1.0179138} + - {x: -6.6980515, y: -103.62503} + - {x: -1.2954779, y: -103.62503} + - {x: -16.937315, y: -150.84909} + - {x: -11.534742, y: -150.84909} + - {x: -102.67697, y: 10.393204} + - {x: -102.808815, y: 5.578549} + - {x: -150.84966, y: 6.605506} + - {x: -150.98149, y: 5.512024} + - {x: 104.70989, y: 2.5304737} + - {x: 104.760666, y: 7.308365} + - {x: 152.8852, y: 2.5304735} + - {x: 152.93596, y: 3.5585597} + - {x: -12.100626, y: -103.62503} + - {x: -6.6980515, y: -103.62503} + - {x: -22.33989, y: -150.84909} + - {x: -16.937315, y: -150.84909} + - {x: 104.39974, y: -5.887303} + - {x: 104.572975, y: -4.6215553} + - {x: 152.70622, y: -5.887303} + - {x: 152.74472, y: -4.9693522} + - {x: 104.49942, y: 3.677059} + - {x: 104.44669, y: 4.7212944} + - {x: 152.76437, y: 3.6770592} + - {x: 152.75284, y: 4.680696} + - {x: 6.6980515, y: -104.54671} + - {x: 11.32863, y: -104.54671} + - {x: 16.937315, y: -151.62875} + - {x: 21.9818, y: -151.62875} + - {x: 104.49942, y: 0.8379822} + - {x: 104.49942, y: 1.0179138} + - {x: 152.76437, y: 0} + - {x: 152.76437, y: 1.0179138} + - {x: -139.70859, y: 1.0179138} + - {x: -139.70859, y: 0} + - {x: -180.20226, y: 1.0179138} + - {x: -180.20226, y: 0} + - {x: 12.506029, y: -151.65277} + - {x: 16.937315, y: -151.65277} + - {x: -0.43157768, y: -190.02405} + - {x: 4.970995, y: -190.02405} + - {x: -140.25687, y: -13.929429} + - {x: -140.15698, y: -14.991693} + - {x: -180.6495, y: -13.929428} + - {x: -180.6495, y: -14.904844} + - {x: -139.70859, y: 2.0358276} + - {x: -139.70859, y: 1.0179138} + - {x: -180.20226, y: 2.0358276} + - {x: -180.20226, y: 1.0179138} + - {x: -16.937315, y: -151.65277} + - {x: -11.534742, y: -151.65277} + - {x: -4.970995, y: -190.02405} + - {x: 0.43157768, y: -190.02405} + - {x: -141.34198, y: -25.809343} + - {x: -141.14801, y: -27.002243} + - {x: -181.53586, y: -25.809345} + - {x: -181.53586, y: -26.677916} + - {x: 138.57053, y: 17.314154} + - {x: 138.5007, y: 18.35737} + - {x: 178.69394, y: 17.314154} + - {x: 178.69394, y: 18.307348} + - {x: -22.33989, y: -151.65277} + - {x: -16.937315, y: -151.65277} + - {x: -10.3735695, y: -190.02405} + - {x: -4.970995, y: -190.02405} + - {x: 138.62067, y: 12.398172} + - {x: 138.57053, y: 13.429218} + - {x: 178.74406, y: 12.398172} + - {x: 178.69394, y: 13.429218} + - {x: 138.23172, y: -2.2233741} + - {x: 138.2473, y: -1.2042366} + - {x: 178.4256, y: -2.2233741} + - {x: 178.37006, y: -1.2154087} + - {x: 16.937315, y: -151.65277} + - {x: 21.9818, y: -151.65277} + - {x: 4.970995, y: -190.02405} + - {x: 10.01548, y: -190.02405} + - {x: 138.23174, y: 0} + - {x: 138.23174, y: 1.0179138} + - {x: 178.42561, y: 0} + - {x: 178.42561, y: 1.0179138} + - {x: -190.02402, y: 1.0179138} + - {x: -190.02402, y: 0} + - {x: -201.00165, y: 1.0179138} + - {x: -201.00165, y: -7.162033} + - {x: -190.02402, y: 3.0537415} + - {x: -190.02402, y: 2.0358276} + - {x: -201.00165, y: 3.0537415} + - {x: -201.00165, y: 2.0358276} + - {x: -190.02402, y: 2.0358276} + - {x: -190.02402, y: 1.0179138} + - {x: -201.00165, y: 2.0358276} + - {x: -201.00165, y: 1.0179138} + - {x: -4.970995, y: -190.02405} + - {x: 0.43157768, y: -190.02405} + - {x: -4.9716187, y: -201.00168} + - {x: 0.43095398, y: -201.00168} + - {x: -190.02402, y: 4.07164} + - {x: -190.02402, y: 3.0537415} + - {x: -201.00165, y: 4.07164} + - {x: -201.00165, y: 3.0537415} + - {x: 190.02464, y: 3.0537415} + - {x: 190.02464, y: 4.07164} + - {x: 201.00227, y: 3.0537415} + - {x: 201.00227, y: 4.07164} + - {x: -10.3735695, y: -190.02405} + - {x: -4.970995, y: -190.02405} + - {x: -10.374193, y: -201.00168} + - {x: -4.9716187, y: -201.00168} + - {x: 190.16064, y: 3.2072825} + - {x: 190.16333, y: 4.2395425} + - {x: 201.13962, y: 3.2072825} + - {x: 201.13962, y: 4.2110496} + - {x: 190.24979, y: 1.686709} + - {x: 190.25587, y: 2.7215614} + - {x: 201.23328, y: 1.686709} + - {x: 201.23328, y: 2.6879616} + - {x: 4.970995, y: -159.1482} + - {x: 10.01548, y: -159.1482} + - {x: 4.9716187, y: -172.25557} + - {x: 10.374193, y: -168.34213} + - {x: 190.24977, y: 0} + - {x: 190.24977, y: 1.0179138} + - {x: 201.23326, y: 0} + - {x: 201.23326, y: 1.0179138} + - {x: 190.04834, y: 0} + - {x: 190.04834, y: 2.0358276} + - {x: 201.02597, y: -7.162033} + - {x: 201.02597, y: 2.0358276} + - {x: 6.2228355, y: -190.04837} + - {x: 12.033451, y: -190.04837} + - {x: 6.222212, y: -201.026} + - {x: 12.032827, y: -201.026} + - {x: -190.04768, y: 4.07164} + - {x: -190.04768, y: 2.0358276} + - {x: -201.02531, y: 4.07164} + - {x: -201.02531, y: 2.0358276} + - {x: -190.04768, y: 2.0358276} + - {x: -190.04768, y: 0} + - {x: -201.02531, y: 2.0358276} + - {x: -201.02531, y: 0} + - {x: -12.033451, y: -190.04837} + - {x: -6.2228355, y: -190.04837} + - {x: -12.032827, y: -201.026} + - {x: -6.222212, y: -201.026} + - {x: 190.04834, y: 2.0358276} + - {x: 190.04834, y: 4.07164} + - {x: 201.02597, y: 2.0358276} + - {x: 201.02597, y: 4.07164} + - {x: 0.41222, y: -190.04837} + - {x: 6.2228355, y: -190.04837} + - {x: 0.4115963, y: -201.026} + - {x: 6.222212, y: -201.026} + - {x: -201.00166, y: 3.0537415} + - {x: -201.00166, y: 2.0358276} + - {x: -214.52943, y: 3.0537415} + - {x: -214.52943, y: 2.0358276} + - {x: -201.00166, y: 2.0358276} + - {x: -201.00166, y: 1.0179138} + - {x: -214.52943, y: 2.0358276} + - {x: -214.52943, y: 1.0179138} + - {x: -4.9716187, y: -201.00168} + - {x: 0.43095398, y: -201.00168} + - {x: -4.9722424, y: -214.52945} + - {x: 0.43033028, y: -214.52945} + - {x: -201.00166, y: 4.07164} + - {x: -201.00166, y: 3.0537415} + - {x: -214.52943, y: 4.07164} + - {x: -214.52943, y: 3.0537415} + - {x: 192.79381, y: 3.0537431} + - {x: 192.79381, y: 4.0716414} + - {x: 203.56902, y: 3.0537431} + - {x: 203.56902, y: 4.0716414} + - {x: -10.374193, y: -201.00168} + - {x: -4.9716187, y: -201.00168} + - {x: -10.374817, y: -214.52945} + - {x: -4.9722424, y: -214.52945} + - {x: 192.79381, y: 2.0358293} + - {x: 203.56902, y: 2.0358293} + - {x: 192.79381, y: 0.0000015782311} + - {x: 192.79381, y: 1.0179154} + - {x: 203.56902, y: 0.0000015782311} + - {x: 203.56902, y: 1.0179154} + - {x: 6.222212, y: -201.026} + - {x: 12.032827, y: -201.026} + - {x: 6.221588, y: -214.55377} + - {x: 12.032204, y: -214.55377} + - {x: -201.82422, y: 4.07164} + - {x: -201.82422, y: 2.0358276} + - {x: -213.04024, y: 4.07164} + - {x: -213.04024, y: 2.0358276} + - {x: -201.82422, y: 2.0358276} + - {x: -201.82422, y: 0} + - {x: -213.04024, y: 2.0358276} + - {x: -213.04024, y: 0} + - {x: 201.02599, y: 2.0358276} + - {x: 201.02599, y: 4.07164} + - {x: 214.55376, y: 2.0358276} + - {x: 214.55376, y: 4.07164} + - {x: 0.4115963, y: -201.026} + - {x: 6.222212, y: -201.026} + - {x: 0.4109726, y: -214.55377} + - {x: 6.221588, y: -214.55377} + - {x: 101.76578, y: 3.0537415} + - {x: 101.76578, y: 4.07164} + - {x: 109.97264, y: 3.0537415} + - {x: 109.97264, y: 4.07164} + - {x: -10.374193, y: -201.00168} + - {x: -10.374817, y: -214.52945} + - {x: -17.65919, y: -204.78076} + - {x: -22.249283, y: -214.52942} + - {x: -1.3852735, y: 4.071636} + - {x: -8.983352, y: 4.071636} + - {x: 101.765785, y: 2.0358276} + - {x: 101.765785, y: 3.0537415} + - {x: 109.97265, y: 2.0358276} + - {x: 109.97265, y: 3.0537415} + - {x: -1.3852735, y: 3.0537374} + - {x: -8.983352, y: 3.0537374} + - {x: 101.765785, y: 0} + - {x: 101.765785, y: 1.0179138} + - {x: 109.97265, y: 0} + - {x: 109.97265, y: 1.0179138} + - {x: 10.374817, y: -214.52945} + - {x: 10.374193, y: -201.00168} + - {x: 22.249283, y: -214.52942} + - {x: 17.65919, y: -204.78076} + - {x: -1.3852735, y: 1.0179099} + - {x: -1.3852735, y: -0.0000039857614} + - {x: -8.983352, y: 1.0179099} + - {x: -8.983352, y: -0.000003937289} + - {x: 101.765785, y: 1.0179138} + - {x: 101.765785, y: 2.0358276} + - {x: 109.97265, y: 1.0179138} + - {x: 109.97265, y: 2.0358276} + - {x: -1.3852735, y: 2.0358236} + - {x: -8.983352, y: 2.0358236} + - {x: -72.077446, y: 2.0358276} + - {x: -72.077446, y: 0} + - {x: -81.10753, y: 2.0358276} + - {x: -81.10753, y: 0} + - {x: 27.149973, y: 4.071636} + - {x: -12.032827, y: -201.026} + - {x: -12.032204, y: -214.55377} + - {x: -20.642776, y: -203.74835} + - {x: -23.64962, y: -214.5538} + - {x: 27.149973, y: -0.000003932136} + - {x: 27.149973, y: 2.0358238} + - {x: -72.07744, y: 4.07164} + - {x: -72.07744, y: 2.0358276} + - {x: -81.10753, y: 4.07164} + - {x: -81.10753, y: 2.0358276} + - {x: 12.032204, y: -214.55377} + - {x: 12.032827, y: -201.026} + - {x: 23.64962, y: -214.5538} + - {x: 20.642776, y: -203.74835} + - {x: 10.374817, y: -214.52945} + - {x: 22.249283, y: -214.52942} + - {x: 10.375158, y: -236.21887} + - {x: 22.249624, y: -236.21884} + - {x: 214.52977, y: 0} + - {x: 214.52977, y: 1.0179138} + - {x: 236.2192, y: 0} + - {x: 236.2192, y: 1.0179138} + - {x: 214.52977, y: 1.0179138} + - {x: 214.52977, y: 2.0358276} + - {x: 236.2192, y: 1.0179138} + - {x: 236.2192, y: 2.0358276} + - {x: 214.52977, y: 2.0358276} + - {x: 214.52977, y: 3.0537415} + - {x: 236.2192, y: 2.0358276} + - {x: 236.2192, y: 3.0537415} + - {x: -22.249283, y: -214.52942} + - {x: -10.374817, y: -214.52945} + - {x: -22.249624, y: -236.21884} + - {x: -10.375158, y: -236.21887} + - {x: 214.52977, y: 3.0537415} + - {x: 214.52977, y: 4.07164} + - {x: 236.2192, y: 3.0537415} + - {x: 236.2192, y: 4.07164} + - {x: -214.52945, y: 3.0537415} + - {x: -214.52945, y: 2.0358276} + - {x: -236.21887, y: 3.0537415} + - {x: -236.21887, y: 2.0358276} + - {x: -214.52945, y: 2.0358276} + - {x: -214.52945, y: 1.0179138} + - {x: -236.21887, y: 2.0358276} + - {x: -236.21887, y: 1.0179138} + - {x: -4.9722424, y: -214.52945} + - {x: 0.43033028, y: -214.52945} + - {x: -4.972584, y: -236.21887} + - {x: 0.4299898, y: -236.21887} + - {x: -214.52945, y: 4.07164} + - {x: -214.52945, y: 3.0537415} + - {x: -236.21887, y: 4.07164} + - {x: -236.21887, y: 3.0537415} + - {x: -10.374817, y: -214.52945} + - {x: -4.9722424, y: -214.52945} + - {x: -10.375158, y: -236.21887} + - {x: -4.972584, y: -236.21887} + - {x: 6.221588, y: -214.55377} + - {x: 12.032204, y: -214.55377} + - {x: 6.221247, y: -236.2432} + - {x: 12.031863, y: -236.2432} + - {x: 214.55377, y: 2.0358276} + - {x: 214.55377, y: 4.07164} + - {x: 236.2432, y: 2.0358276} + - {x: 236.2432, y: 4.07164} + - {x: 0.4109726, y: -214.55377} + - {x: 6.221588, y: -214.55377} + - {x: 0.41063213, y: -236.2432} + - {x: 6.221247, y: -236.2432} + - {x: -23.64962, y: -214.5538} + - {x: -12.032204, y: -214.55377} + - {x: -23.649279, y: -236.24323} + - {x: -12.031863, y: -236.2432} + - {x: -214.55344, y: 2.0358276} + - {x: -214.55344, y: 0} + - {x: -236.24286, y: 2.0358276} + - {x: -236.24286, y: 0} + - {x: 12.032204, y: -214.55377} + - {x: 23.64962, y: -214.5538} + - {x: 12.031863, y: -236.2432} + - {x: 23.649279, y: -236.24323} + - {x: -214.55344, y: 4.07164} + - {x: -214.55344, y: 2.0358276} + - {x: -236.24286, y: 4.07164} + - {x: -236.24286, y: 2.0358276} + - {x: 10.375158, y: -236.21887} + - {x: 22.249624, y: -236.21884} + - {x: 10.375498, y: -243.67639} + - {x: 17.859066, y: -240.43222} + - {x: 147.50417, y: 0} + - {x: 147.50417, y: 1.0179138} + - {x: 153.58936, y: 0} + - {x: 153.58936, y: 1.0179138} + - {x: 147.50417, y: 1.0179138} + - {x: 147.50417, y: 2.0358276} + - {x: 153.58936, y: 1.0179138} + - {x: 153.58936, y: 2.0358276} + - {x: 147.50417, y: 2.0358276} + - {x: 147.50417, y: 3.0537415} + - {x: 153.58936, y: 2.0358276} + - {x: 153.58936, y: 3.0537415} + - {x: -22.249624, y: -236.21884} + - {x: -10.375158, y: -236.21887} + - {x: -17.859066, y: -240.43222} + - {x: -10.375498, y: -243.67639} + - {x: 147.50417, y: 3.0537415} + - {x: 147.50417, y: 4.07164} + - {x: 153.58936, y: 3.0537415} + - {x: 153.58936, y: 4.07164} + - {x: -236.21886, y: 1.0179138} + - {x: -236.21886, y: -7.162033} + - {x: -243.67638, y: 1.0179138} + - {x: -243.67638, y: 0} + - {x: -236.21886, y: 3.0537415} + - {x: -236.21886, y: 2.0358276} + - {x: -243.67638, y: 3.0537415} + - {x: -243.67638, y: 2.0358276} + - {x: -236.21886, y: 2.0358276} + - {x: -236.21886, y: 1.0179138} + - {x: -243.67638, y: 2.0358276} + - {x: -243.67638, y: 1.0179138} + - {x: -4.972584, y: -236.21887} + - {x: 0.4299898, y: -236.21887} + - {x: -4.972925, y: -243.67639} + - {x: 0.42964935, y: -243.67639} + - {x: -236.21886, y: 4.07164} + - {x: -236.21886, y: 3.0537415} + - {x: -243.67638, y: 4.07164} + - {x: -243.67638, y: 3.0537415} + - {x: -10.375158, y: -236.21887} + - {x: -4.972584, y: -236.21887} + - {x: -10.375498, y: -243.67639} + - {x: -4.972925, y: -243.67639} + - {x: 188.38255, y: 68.22994} + - {x: 185.21313, y: 76.622635} + - {x: 194.42177, y: 76.622635} + - {x: 191.25235, y: 78.903496} + - {x: 236.24318, y: -7.162033} + - {x: 236.24318, y: 2.0358276} + - {x: 243.7007, y: 0} + - {x: 243.7007, y: 2.0358276} + - {x: 6.221247, y: -236.2432} + - {x: 12.031863, y: -236.2432} + - {x: 6.2209063, y: -243.70071} + - {x: 12.031523, y: -243.70071} + - {x: -236.24265, y: 7.58729} + - {x: -236.2429, y: -1.6353986} + - {x: -243.70016, y: 7.58729} + - {x: -243.70042, y: 3.9263983} + - {x: 236.24318, y: 2.0358276} + - {x: 236.24318, y: 4.07164} + - {x: 243.7007, y: 2.0358276} + - {x: 243.7007, y: 4.07164} + - {x: 0.41063213, y: -236.2432} + - {x: 6.221247, y: -236.2432} + - {x: 0.41029167, y: -243.70071} + - {x: 6.2209063, y: -243.70071} + - {x: -23.649279, y: -236.24323} + - {x: -12.031863, y: -236.2432} + - {x: -18.26132, y: -241.44919} + - {x: -12.031523, y: -243.70071} + - {x: -147.14786, y: 2.0358276} + - {x: -147.14786, y: 0} + - {x: -154.63998, y: 2.0358276} + - {x: -154.63998, y: 0} + - {x: 12.031863, y: -236.2432} + - {x: 23.649279, y: -236.24323} + - {x: 12.031523, y: -243.70071} + - {x: 18.26132, y: -241.44919} + - {x: -147.14786, y: 4.07164} + - {x: -147.14786, y: 2.0358276} + - {x: -154.63998, y: 4.07164} + - {x: -154.63998, y: 2.0358276} + - {x: -0.43157768, y: -159.14818} + - {x: 4.970995, y: -159.14818} + - {x: 4.9716187, y: -172.25555} + - {x: 2.2703323, y: -172.25555} + - {x: -0.43095398, y: -172.25555} + - {x: -6.2228355, y: -159.16855} + - {x: -0.41222, y: -159.16855} + - {x: -0.4115963, y: -172.27592} + - {x: -3.316904, y: -172.27592} + - {x: -6.222212, y: -172.27592} + - {x: -201.00166, y: 1.0179138} + - {x: -201.00166, y: -7.162033} + - {x: -207.76555, y: -13.171143} + - {x: -214.52943, y: -16.070251} + - {x: -214.52943, y: 1.0179138} + - {x: 188.72209, y: -49.03368} + - {x: 189.64636, y: -47.439053} + - {x: 196.0021, y: -53.568027} + - {x: 195.07784, y: -55.162655} + - {x: 189.64636, y: -47.439053} + - {x: 190.57063, y: -45.84443} + - {x: 196.92638, y: -47.2982} + - {x: 196.0021, y: -53.568027} + - {x: 196.92638, y: -47.2982} + - {x: 203.2821, y: -48.751972} + - {x: 202.35783, y: -55.0218} + - {x: 196.0021, y: -53.568027} + - {x: -3.9167123, y: -203.77188} + - {x: -1.3126345, y: -203.6682} + - {x: 201.0019, y: -2.7293143} + - {x: 201.00215, y: 6.241892} + - {x: 214.52992, y: 6.241892} + - {x: 214.52968, y: -2.729314} + - {x: 207.7658, y: -2.7293143} + - {x: 201.02599, y: -7.162033} + - {x: 201.02599, y: 2.0358276} + - {x: 214.55376, y: 2.0358276} + - {x: 214.55376, y: -16.070251} + - {x: 207.78987, y: -13.171143} + - {x: 0.3590025, y: -188.60306} + - {x: 2.4785476, y: -187.82281} + - {x: 6.588619, y: -195.76476} + - {x: 0.35923, y: -194.82361} + - {x: 2.4785476, y: -187.82281} + - {x: 4.5980926, y: -187.04259} + - {x: 8.708164, y: -194.98453} + - {x: 6.588619, y: -195.76476} + - {x: -3.8980513, y: -203.79521} + - {x: -4.668483, y: -210.08469} + - {x: -6.698508, y: -210.59973} + - {x: -6.6988087, y: -203.90672} + - {x: 6.5888467, y: -201.9853} + - {x: -0.7874513, y: -201.46635} + - {x: 0.35923, y: -194.82361} + - {x: 6.588619, y: -195.76476} + - {x: -201.38548, y: 0.21394216} + - {x: -201.04869, y: -8.992967} + - {x: -207.80118, y: -9.225727} + - {x: -214.6448, y: -8.527445} + - {x: -214.89047, y: -0.25157946} + - {x: -214.52945, y: 1.0179138} + - {x: -214.52945, y: -16.070251} + - {x: -225.37415, y: -13.171143} + - {x: -236.21887, y: -7.162033} + - {x: -236.21887, y: 1.0179138} + - {x: -4.687144, y: -210.06137} + - {x: -1.3123338, y: -210.36119} + - {x: -1.3121692, y: -221.09225} + - {x: -3.9162478, y: -221.19594} + - {x: -1.3123338, y: -210.36119} + - {x: 2.8892744, y: -211.09389} + - {x: 2.8894389, y: -221.82497} + - {x: -1.3121692, y: -221.09225} + - {x: 2.8894389, y: -221.82497} + - {x: 2.8896036, y: -232.55605} + - {x: 0.28552526, y: -232.65973} + - {x: -1.3121692, y: -221.09225} + - {x: 0.28552526, y: -232.65973} + - {x: -2.318553, y: -232.76341} + - {x: -3.9162478, y: -221.19594} + - {x: -1.3121692, y: -221.09225} + - {x: 214.52953, y: -2.7253928} + - {x: 214.52962, y: 6.2458134} + - {x: 236.21904, y: 6.2458134} + - {x: 236.21895, y: -2.7253928} + - {x: 225.37424, y: -2.7253928} + - {x: 214.55377, y: -16.070251} + - {x: 214.55377, y: 2.0358276} + - {x: 236.2432, y: 2.0358276} + - {x: 236.2432, y: -7.162033} + - {x: 225.3985, y: -13.171143} + - {x: -5.0593753, y: -196.44743} + - {x: 1.1204439, y: -194.90439} + - {x: 1.1206055, y: -205.00499} + - {x: -5.0592136, y: -206.54805} + - {x: -3.8975868, y: -221.2193} + - {x: -6.6983433, y: -221.33078} + - {x: 3.8698597, y: -205.34698} + - {x: 1.9271088, y: -217.51762} + - {x: -0.82214606, y: -217.17566} + - {x: 1.1206055, y: -205.00499} + - {x: -0.82214606, y: -217.17566} + - {x: -3.571401, y: -216.8337} + - {x: -5.0592136, y: -206.54805} + - {x: 1.1206055, y: -205.00499} + - {x: -213.97693, y: 10.95773} + - {x: -214.13051, y: 2.6483407} + - {x: -224.96812, y: 2.8657248} + - {x: -235.86266, y: 2.213572} + - {x: -235.65213, y: 11.392499} + - {x: -0.42998976, y: -165.41222} + - {x: 2.271297, y: -165.41222} + - {x: 4.972584, y: -165.41222} + - {x: 4.972925, y: -175.75192} + - {x: -0.42964935, y: -175.75192} + - {x: -6.221247, y: -165.42976} + - {x: -3.3159397, y: -165.42976} + - {x: -0.41063204, y: -165.42976} + - {x: -0.41029167, y: -175.76945} + - {x: -6.2209063, y: -175.76945} + - {x: -4.507056, y: 0.8379822} + - {x: 0.6272278, y: 0.8379822} + - {x: 0.6272278, y: 2.0358276} + - {x: 1.3035593, y: 7.8259277} + - {x: -4.507056, y: 7.8259277} + - {x: -10.317672, y: 7.8259277} + - {x: -9.161264, y: 2.0358276} + - {x: -9.161264, y: 0.8379822} + - {x: 2.2667646, y: 1.0179138} + - {x: 2.2667646, y: 0.8379822} + - {x: 6.6980515, y: 0.8379822} + - {x: 11.32863, y: 0.8379822} + - {x: 11.32863, y: 1.0179138} + - {x: 11.08976, y: 2.0358276} + - {x: 11.861755, y: 3.0537415} + - {x: 12.100626, y: 7.8259277} + - {x: 6.6980515, y: 7.8259277} + - {x: 1.2954779, y: 7.8259277} + - {x: 1.9470282, y: 3.0537415} + - {x: 2.2667646, y: 2.0358276} + - {x: -4.507056, y: -104.552475} + - {x: -9.161264, y: -104.552475} + - {x: -4.507056, y: -100.894226} + - {x: -9.161264, y: -100.894226} + - {x: -104.552475, y: 0.8379822} + - {x: -104.552475, y: 2.0358276} + - {x: -100.894226, y: 0.8379822} + - {x: -100.894226, y: 2.0358276} + - {x: 104.552475, y: 7.9243174} + - {x: 104.552475, y: 2.0948503} + - {x: 100.894226, y: 7.9243174} + - {x: 100.894226, y: 2.0948503} + - {x: 4.507056, y: -104.552475} + - {x: -1.3035593, y: -104.552475} + - {x: 4.507056, y: -100.894226} + - {x: -1.3035593, y: -100.894226} + - {x: 104.552475, y: 2.0358276} + - {x: 104.552475, y: 0.8379822} + - {x: 100.894226, y: 2.0358276} + - {x: 100.894226, y: 0.8379822} + - {x: 0.6272278, y: -104.552475} + - {x: -4.507056, y: -104.552475} + - {x: 0.6272278, y: -100.894226} + - {x: -4.507056, y: -100.894226} + - {x: -104.552475, y: 3.7906656} + - {x: -104.552475, y: 9.695116} + - {x: -100.894226, y: 3.7906656} + - {x: -100.894226, y: 9.695116} + - {x: 10.317672, y: -104.552475} + - {x: 4.507056, y: -104.552475} + - {x: 10.317672, y: -100.894226} + - {x: 4.507056, y: -100.894226} + - {x: 104.578186, y: 8.421079} + - {x: 104.578186, y: 3.6429179} + - {x: 100.91994, y: 8.421079} + - {x: 100.91994, y: 3.6429179} + - {x: -6.6980515, y: -104.578186} + - {x: -12.100626, y: -104.578186} + - {x: -6.6980515, y: -100.91994} + - {x: -12.100626, y: -100.91994} + - {x: 104.578186, y: 9.600954} + - {x: 104.578186, y: 8.323407} + - {x: 100.91994, y: 9.600954} + - {x: 100.91994, y: 8.323407} + - {x: 104.578186, y: 1.0179138} + - {x: 104.578186, y: 0.8379822} + - {x: 100.91994, y: 1.0179138} + - {x: 100.91994, y: 0.8379822} + - {x: 11.32863, y: -104.578186} + - {x: 6.6980515, y: -104.578186} + - {x: 11.32863, y: -100.91994} + - {x: 6.6980515, y: -100.91994} + - {x: 104.578186, y: -0.5515871} + - {x: 104.578186, y: -1.5971528} + - {x: 100.91994, y: -0.5515871} + - {x: 100.91994, y: -1.5971528} + - {x: 6.6980515, y: -104.578186} + - {x: 2.2667646, y: -104.578186} + - {x: 6.6980515, y: -100.91994} + - {x: 2.2667646, y: -100.91994} + - {x: -104.578186, y: 0.8379822} + - {x: -104.578186, y: 1.0179138} + - {x: -100.91994, y: 0.8379822} + - {x: -100.91994, y: 1.0179138} + - {x: -104.578186, y: 1.0179138} + - {x: -104.578186, y: 2.0358276} + - {x: -100.91994, y: 1.0179138} + - {x: -100.91994, y: 2.0358276} + - {x: -104.578186, y: 1.262975} + - {x: -104.578186, y: 2.3299239} + - {x: -100.91994, y: 1.262975} + - {x: -100.91994, y: 2.3299239} + - {x: -104.578186, y: 2.7622855} + - {x: -104.578186, y: 7.5787444} + - {x: -100.91994, y: 2.7622855} + - {x: -100.91994, y: 7.5787444} + - {x: -1.2954779, y: -104.578186} + - {x: -6.6980515, y: -104.578186} + - {x: -1.2954779, y: -100.91994} + - {x: -6.6980515, y: -100.91994} + m_Textures2: [] + m_Textures3: [] + m_Tangents: + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -3.5502976e-16, z: -7.1005983e-16, w: -1} + - {x: 1, y: 0.000000007355146, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -0.000000007355091, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.99014944, y: -0.084910534, z: -0.11132945, w: -1} + - {x: 1, y: -2.218937e-16, z: 0, w: -1} + - {x: 0.9575318, y: 0.10938861, z: 0.26677147, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.9840772, y: 0.0025954964, z: 0.17772305, w: -1} + - {x: 0.9850034, y: -0.000000013709196, z: 0.17253499, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.7150614, y: 0.6921628, z: 0.09796838, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.7118349, y: 0.70229405, z: -0.008608145, w: -1} + - {x: -0.16321865, y: 0.00068074546, z: 0.98658967, w: -1} + - {x: -0.1681371, y: 0.008812805, z: 0.9857242, w: -1} + - {x: -0.0194863, y: -0.027576385, z: 0.99942976, w: -1} + - {x: -0.09505354, y: -0.06570276, z: 0.9933016, w: -1} + - {x: -0.7170041, y: -0.68635756, z: 0.12173102, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.71077245, y: -0.70313454, z: 0.020108106, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 0.15068437, y: -0.00886327, z: -0.9885422, w: -1} + - {x: 0.15942319, y: 0, z: -0.98721033, w: -1} + - {x: 0.075281285, y: -0.08645979, z: -0.993407, w: -1} + - {x: -0.0025941692, y: -0.022264061, z: -0.9997487, w: -1} + - {x: -0.12711793, y: 0.039942775, z: 0.9910831, w: -1} + - {x: -0.16370852, y: -0.002126343, z: 0.9865066, w: -1} + - {x: -0.029190492, y: 0.091226295, z: 0.9954023, w: -1} + - {x: -0.020065287, y: -0.030556336, z: 0.99933165, w: -1} + - {x: 0.15942319, y: 0, z: -0.98721033, w: -1} + - {x: 0.19450426, y: -0.0399304, z: -0.98008865, w: -1} + - {x: -0.0026316862, y: -0.021987531, z: -0.9997548, w: -1} + - {x: 0.06849248, y: 0.050518576, z: -0.99637175, w: -1} + - {x: 0.6464119, y: 0.7339115, z: -0.20862795, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.62617016, y: 0.7792108, z: -0.027229402, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.64203244, y: -0.7617566, z: -0.0867258, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.549323, y: -0.8346891, z: 0.03922189, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.7118349, y: 0.70229405, z: -0.008608145, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.71678644, y: 0.6878762, z: -0.11420756, w: -1} + - {x: -0.009172942, y: 0.025391001, z: 0.9996355, w: -1} + - {x: 0.046761826, y: 0.07478353, z: 0.9961028, w: -1} + - {x: 0.12013855, y: 0, z: 0.9927572, w: -1} + - {x: 0.12013855, y: 0.0000000052683564, z: 0.9927572, w: -1} + - {x: -0.71077245, y: -0.70313454, z: 0.020108106, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.71219134, y: -0.6969736, z: -0.083733395, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.090701625, y: 0.077329576, z: -0.9928712, w: -1} + - {x: -0.008547957, y: 0.021644445, z: -0.99972916, w: -1} + - {x: -0.16602923, y: 0, z: -0.9861209, w: -1} + - {x: -0.16180049, y: 0.00033784696, z: -0.98682344, w: -1} + - {x: 0.06665591, y: -0.054691568, z: 0.99627596, w: -1} + - {x: -0.0070613637, y: 0.036209717, z: 0.99931926, w: -1} + - {x: 0.13008901, y: 0.0045009954, z: 0.99149215, w: -1} + - {x: 0.12012224, y: 0.016470982, z: 0.99262244, w: -1} + - {x: -0.008547957, y: 0.021644445, z: -0.99972916, w: -1} + - {x: -0.044076268, y: -0.08968574, z: -0.99499434, w: -1} + - {x: -0.16196385, y: 0.0024445178, z: -0.98679364, w: -1} + - {x: -0.14644237, y: 0.0027909195, z: -0.98921525, w: -1} + - {x: 0.62617016, y: 0.7792108, z: -0.027229402, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.71493405, y: 0.69153696, z: 0.10317954, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.549323, y: -0.8346891, z: 0.03922189, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.6365307, y: -0.7608788, z: 0.1260635, w: -1} + - {x: 0.21254182, y: 0, z: 0.977152, w: -1} + - {x: 0.2040279, y: 0.008728129, z: 0.9789262, w: -1} + - {x: -0.055483088, y: 0, z: 0.99845964, w: -1} + - {x: 0.08165328, y: 0.1401426, z: 0.9867587, w: -1} + - {x: -0.72164685, y: -0.6794925, z: -0.1323477, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.72117877, y: -0.69140494, z: 0.043131042, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 0.21011944, y: 0.0008256715, z: 0.97767544, w: -1} + - {x: 0.21254182, y: 0, z: 0.977152, w: -1} + - {x: -0.02016819, y: 0.09236445, z: 0.995521, w: -1} + - {x: -0.052553, y: 0.031451695, z: 0.99812275, w: -1} + - {x: 0.21254183, y: 0, z: 0.97715205, w: -1} + - {x: 0.21254183, y: 0, z: 0.97715205, w: -1} + - {x: -0.052552983, y: 0.031451695, z: 0.99812275, w: -1} + - {x: -0.055483103, y: 0, z: 0.99845964, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.6833573, y: -0.6945322, z: 0.22505057, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.5551493, y: -0.831671, z: 0.011515622, w: -1} + - {x: 0.24552208, y: 0.03813275, z: 0.9686407, w: -1} + - {x: 0.2093826, y: -0.001435833, z: 0.97783273, w: -1} + - {x: 0.071333416, y: -0.09313456, z: 0.9930949, w: -1} + - {x: -0.020726515, y: 0.090933554, z: 0.99564123, w: -1} + - {x: -0.21493861, y: -0.00055342045, z: -0.9766274, w: -1} + - {x: -0.17742102, y: -0.039893236, z: -0.9833262, w: -1} + - {x: 0.030176949, y: 0.04557332, z: -0.9985051, w: -1} + - {x: -0.060220767, y: -0.15543267, z: -0.9860092, w: -1} + - {x: 0.67152864, y: 0.73154795, z: 0.11784248, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.66187805, y: 0.7467129, z: -0.06585907, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.22345725, y: 0.00024597096, z: -0.9747137, w: -1} + - {x: -0.21609329, y: 0.004699615, z: -0.9763614, w: -1} + - {x: 0.036951922, y: 0.04288724, z: -0.99839634, w: -1} + - {x: 0.028913027, y: 0.05261573, z: -0.9981962, w: -1} + - {x: -0.22072265, y: -0.0000000031423975, z: -0.9753366, w: -1} + - {x: -0.2234431, y: 0.00018898885, z: -0.974717, w: -1} + - {x: 0.039589744, y: -0.012592875, z: -0.9991367, w: -1} + - {x: 0.037301827, y: 0.04053053, z: -0.9984818, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.72541046, y: 0.66952854, z: -0.15972191, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.71971333, y: 0.69396734, z: 0.020540988, w: -1} + - {x: -0.22917233, y: -0.008644996, z: -0.9733475, w: -1} + - {x: -0.22072266, y: 0.0000000016728734, z: -0.9753367, w: -1} + - {x: -0.10146041, y: 0.12712184, z: -0.98668426, w: -1} + - {x: 0.03957299, y: -0.012937237, z: -0.99913293, w: -1} + - {x: -0.05548313, y: 0, z: 0.99845964, w: -1} + - {x: -0.19884874, y: -0.13079205, z: 0.9712634, w: -1} + - {x: -0.31949708, y: 0, z: 0.94758725, w: -1} + - {x: -0.31949708, y: 0, z: 0.94758725, w: -1} + - {x: -0.72117877, y: -0.69140494, z: 0.043131042, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.7423201, y: -0.6382605, z: 0.20392236, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.090021096, y: -0.08938155, z: 0.99192095, w: -1} + - {x: -0.05957651, y: -0.029678218, z: 0.9977824, w: -1} + - {x: -0.3141126, y: 0.0009799747, z: 0.9493852, w: -1} + - {x: -0.3194963, y: 0.002238175, z: 0.94758487, w: -1} + - {x: -0.059757464, y: -0.031278137, z: 0.9977228, w: -1} + - {x: -0.05548313, y: 0, z: 0.99845964, w: -1} + - {x: -0.31949708, y: 0, z: 0.94758725, w: -1} + - {x: -0.31949708, y: 0, z: 0.94758725, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.5551493, y: -0.831671, z: 0.011515622, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.6678574, y: -0.695035, z: -0.2662573, w: -1} + - {x: -0.0885774, y: 0.14636576, z: 0.98525685, w: -1} + - {x: -0.08740584, y: -0.08247578, z: 0.9927527, w: -1} + - {x: -0.30759406, y: 0.0025782173, z: 0.9515142, w: -1} + - {x: -0.31351447, y: 0.009496729, z: 0.9495359, w: -1} + - {x: 0.04633696, y: -0.045452792, z: -0.99789125, w: -1} + - {x: 0.17358434, y: 0.11105081, z: -0.9785378, w: -1} + - {x: 0.29360306, y: 0.0004388507, z: -0.9559274, w: -1} + - {x: 0.29832372, y: 0.0006377412, z: -0.9544646, w: -1} + - {x: 0.66187805, y: 0.7467129, z: -0.06585907, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.7377784, y: 0.6469794, z: -0.19261548, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.04870144, y: -0.037169863, z: -0.99812156, w: -1} + - {x: 0.046336982, y: -0.04545279, z: -0.99789125, w: -1} + - {x: 0.2922845, y: 0, z: -0.9563315, w: -1} + - {x: 0.29363516, y: 0.00019209411, z: -0.95591754, w: -1} + - {x: 0.040817752, y: 0.012902287, z: -0.9990833, w: -1} + - {x: 0.04874339, y: -0.037459165, z: -0.9981087, w: -1} + - {x: 0.29636768, y: 0.00018577557, z: -0.9550739, w: -1} + - {x: 0.29223916, y: 0.00028151606, z: -0.95634526, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.7197134, y: 0.69396734, z: 0.02054099, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.7377785, y: 0.6469794, z: 0.19261548, w: -1} + - {x: 0.17132747, y: -0.13646278, z: -0.9757176, w: -1} + - {x: 0.040817752, y: 0.012902285, z: -0.9990833, w: -1} + - {x: 0.297715, y: 0, z: -0.9546548, w: -1} + - {x: 0.29637444, y: -0.00004357783, z: -0.9550718, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: 0.000056815814, y: 0, z: 1, w: -1} + - {x: 0.000056815814, y: 0, z: 1, w: -1} + - {x: 0.000056815814, y: 0, z: 1, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.000056815818, y: 0, z: 1, w: -1} + - {x: 0.000056815818, y: 0, z: 1, w: -1} + - {x: 0.000056815818, y: 0, z: 1, w: -1} + - {x: 0.000056815818, y: 0, z: 1, w: -1} + - {x: -0.000056815818, y: 0, z: -1, w: -1} + - {x: -0.000056815818, y: 0, z: -1, w: -1} + - {x: -0.000056815818, y: 0, z: -1, w: -1} + - {x: -0.000056815818, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.01567941, y: 3.0945874e-10, z: -0.99987715, w: -1} + - {x: -0.007923396, y: 0.0013115366, z: -0.99996775, w: -1} + - {x: -0.007923396, y: 0.0013115366, z: -0.99996775, w: -1} + - {x: -0.000056815614, y: 0.0026321162, z: -0.99999654, w: -1} + - {x: -0.032659303, y: 6.712587e-10, z: -0.99946654, w: -1} + - {x: -0.024240846, y: 0.0015493446, z: -0.999705, w: -1} + - {x: -0.024240846, y: 0.0015493446, z: -0.999705, w: -1} + - {x: -0.015679337, y: 0.0031112912, z: -0.9998722, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.8822613, y: 0.37699485, z: -0.28193972, w: -1} + - {x: -0.8690363, y: 0.40214157, z: -0.2881978, w: -1} + - {x: -0.54001063, y: 0.70593727, z: -0.4583024, w: -1} + - {x: -0.032659303, y: 0, z: -0.99946654, w: -1} + - {x: -0.032659303, y: 0, z: -0.99946654, w: -1} + - {x: -0.032659303, y: 0, z: -0.99946654, w: -1} + - {x: -0.032659303, y: 0, z: -0.99946654, w: -1} + - {x: -0.00005681581, y: 0, z: -1, w: -1} + - {x: -0.00005681581, y: 0, z: -1, w: -1} + - {x: -0.00005681581, y: 0, z: -1, w: -1} + - {x: -0.00005681581, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: -0.39827585, y: -0.3060691, z: 0.8646953, w: -1} + - {x: -0.5909611, y: 0, z: 0.80670005, w: -1} + - {x: 0.00005681581, y: 0, z: 1, w: -1} + - {x: 0.00005681581, y: 2.5724397e-12, z: 1, w: -1} + - {x: -0.5909611, y: 0, z: 0.80670005, w: -1} + - {x: -0.28819916, y: 0.31096005, z: 0.9056738, w: -1} + - {x: -0.7071067, y: -0.7071069, z: -0.00004017485, w: -1} + - {x: -0.9078881, y: -0.41837466, z: -0.026491879, w: -1} + - {x: -0.7548824, y: -0.6514809, z: 0.075665325, w: -1} + - {x: -0.630035, y: -0.7765668, z: 0, w: -1} + - {x: -0.00005681581, y: 0, z: -1, w: -1} + - {x: -0.00005681581, y: 0, z: -1, w: -1} + - {x: -0.00005681581, y: 0, z: -1, w: -1} + - {x: -0.00005681581, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.00004610538, y: 0, z: 1, w: -1} + - {x: 0.00004610538, y: 0, z: 1, w: -1} + - {x: 0.00004610538, y: 0, z: 1, w: -1} + - {x: 0.00004610538, y: 0, z: 1, w: -1} + - {x: 0.00004610538, y: 0, z: 1, w: -1} + - {x: 0.00004610538, y: 0, z: 1, w: -1} + - {x: 0.00004610538, y: 0, z: 1, w: -1} + - {x: 0.00004610538, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.000046105382, y: 0, z: 1, w: -1} + - {x: 0.000046105382, y: 0, z: 1, w: -1} + - {x: 0.000046105382, y: 0, z: 1, w: -1} + - {x: 0.000046105382, y: 0, z: 1, w: -1} + - {x: -0.7697246, y: 0, z: -0.6383761, w: -1} + - {x: -0.63244337, y: 0.13789673, z: -0.76223344, w: -1} + - {x: -0.14511108, y: 0, z: -0.98941535, w: -1} + - {x: -0.32590008, y: -0.110381, z: -0.93893826, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.7697246, y: 0, z: -0.6383761, w: -1} + - {x: -0.14511108, y: 0, z: -0.98941535, w: -1} + - {x: -0.6324434, y: -0.13789676, z: -0.76223344, w: -1} + - {x: -0.7697246, y: 0, z: -0.6383761, w: -1} + - {x: -0.32590008, y: 0.110380985, z: -0.9389383, w: -1} + - {x: -0.14511108, y: 0, z: -0.98941535, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.5790213, y: -0.22491792, z: 0.78367484, w: -1} + - {x: -0.69468397, y: 0, z: 0.7193151, w: -1} + - {x: -0.20259954, y: 0.067952916, z: 0.9769011, w: -1} + - {x: -0.13527843, y: 0, z: 0.99080765, w: -1} + - {x: -0.6946839, y: 0, z: 0.7193152, w: -1} + - {x: -0.5790212, y: 0.22491792, z: 0.78367496, w: -1} + - {x: -0.13527845, y: 0, z: 0.99080765, w: -1} + - {x: -0.20259953, y: -0.06795292, z: 0.9769012, w: -1} + - {x: -0.00004610538, y: 0, z: -1, w: -1} + - {x: -0.00004610538, y: 0, z: -1, w: -1} + - {x: -0.00004610538, y: 0, z: -1, w: -1} + - {x: -0.00004610538, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.88767093, y: 0, z: -0.46047828, w: -1} + - {x: -0.88767093, y: 0, z: -0.46047828, w: -1} + - {x: -0.76972455, y: 0, z: -0.6383762, w: -1} + - {x: -0.7373373, y: -0.13789672, z: -0.66130036, w: -1} + - {x: 0.94550514, y: 0.24350917, z: 0.21615604, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.7706489, y: 0.38599175, z: 0.5070609, w: -1} + - {x: 0.7317353, y: 0.6666342, z: 0.14199375, w: -1} + - {x: 0.97794336, y: -0.0028756612, z: -0.2088506, w: -1} + - {x: 0.8502545, y: 0.07235518, z: -0.5213752, w: -1} + - {x: -0.88767093, y: 0, z: -0.46047828, w: -1} + - {x: -0.88767093, y: 0, z: -0.46047828, w: -1} + - {x: -0.7697245, y: 0, z: -0.6383762, w: -1} + - {x: -0.7697245, y: 0, z: -0.6383762, w: -1} + - {x: 0.97915727, y: -0.0000000036240062, z: -0.2031036, w: -1} + - {x: 0.7980254, y: 0, z: -0.60262376, w: -1} + - {x: -0.88767093, y: 0, z: -0.46047825, w: -1} + - {x: -0.88767093, y: 0, z: -0.46047828, w: -1} + - {x: -0.73733735, y: 0.13789672, z: -0.66130036, w: -1} + - {x: -0.7697245, y: 0, z: -0.6383762, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.94550514, y: 0.24350917, z: -0.21615604, w: -1} + - {x: -0.7317353, y: 0.6666342, z: -0.14199375, w: -1} + - {x: -0.7706489, y: 0.38599175, z: -0.5070609, w: -1} + - {x: 0.97915727, y: 0.0000000035250245, z: -0.2031036, w: -1} + - {x: 0.96141404, y: 0.002517145, z: -0.27509388, w: -1} + - {x: 0.7980254, y: 0.0000000020382604, z: -0.6026239, w: -1} + - {x: 0.8502545, y: -0.07235519, z: -0.52137524, w: -1} + - {x: -0.88767093, y: 0, z: -0.46047828, w: -1} + - {x: -0.88767093, y: 0, z: -0.46047828, w: -1} + - {x: -0.7697245, y: 0, z: -0.6383762, w: -1} + - {x: -0.7697245, y: 0, z: -0.6383762, w: -1} + - {x: 0.96989715, y: 0, z: -0.24351487, w: -1} + - {x: 0.7980254, y: 0, z: -0.60262376, w: -1} + - {x: -0.5909611, y: 0, z: 0.80670005, w: -1} + - {x: -0.75504446, y: -0.3433766, z: 0.55857, w: -1} + - {x: -0.694684, y: 0, z: 0.71931505, w: -1} + - {x: -0.76303315, y: -0.22491792, z: 0.605964, w: -1} + - {x: 0.8679217, y: -0.08628665, z: 0.4891488, w: -1} + - {x: -0.7879742, y: -0.5189857, z: 0.33128622, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.7804023, y: -0.3960782, z: 0.48383284, w: -1} + - {x: -0.71671754, y: -0.6911826, z: 0.0926424, w: -1} + - {x: 0.8679217, y: 0.08628663, z: 0.48914874, w: -1} + - {x: 0.8088005, y: -0.000000024980672, z: 0.5880831, w: -1} + - {x: -0.70435756, y: 0.3060691, z: 0.64047027, w: -1} + - {x: -0.59096116, y: 0, z: 0.8067, w: -1} + - {x: -0.76303315, y: 0.2249179, z: 0.605964, w: -1} + - {x: -0.694684, y: 0, z: 0.7193151, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.72791505, y: -0.49626088, z: -0.47314358, w: -1} + - {x: 0.71671754, y: -0.6911826, z: -0.09264241, w: -1} + - {x: 0.7804023, y: -0.3960782, z: -0.48383284, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.7317353, y: 0.6666342, z: -0.14199375, w: -1} + - {x: -0.99231976, y: 0.12319356, z: 0.0111701535, w: -1} + - {x: -0.7823976, y: 0.585825, z: 0.21133621, w: -1} + - {x: -0.105138905, y: -0.110381, z: -0.98831266, w: -1} + - {x: -0.14511107, y: 0, z: -0.98941535, w: -1} + - {x: 0.17149466, y: 0.2026839, z: -0.9641104, w: -1} + - {x: 0.39216706, y: 0, z: -0.91989404, w: -1} + - {x: -0.14511107, y: 0, z: -0.98941535, w: -1} + - {x: -0.14511107, y: 0, z: -0.98941535, w: -1} + - {x: 0.39216706, y: 0, z: -0.91989404, w: -1} + - {x: 0.39216706, y: 0, z: -0.91989404, w: -1} + - {x: -0.14511107, y: 0, z: -0.98941535, w: -1} + - {x: -0.14511107, y: 0, z: -0.98941535, w: -1} + - {x: 0.39216706, y: 0, z: -0.91989404, w: -1} + - {x: 0.39216712, y: 0, z: -0.91989404, w: -1} + - {x: 0.7317353, y: 0.6666342, z: 0.14199375, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.7823977, y: 0.5858249, z: -0.2113362, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.14511107, y: 0, z: -0.98941535, w: -1} + - {x: -0.1051389, y: 0.11038099, z: -0.98831266, w: -1} + - {x: 0.39216712, y: 0, z: -0.91989404, w: -1} + - {x: 0.17149465, y: -0.20268388, z: -0.9641104, w: -1} + - {x: 0.000015697133, y: 0, z: 1, w: -1} + - {x: 0.000015697133, y: 0, z: 1, w: -1} + - {x: 0.000015697133, y: 0, z: 1, w: -1} + - {x: 0.000015697133, y: 0, z: 1, w: -1} + - {x: 0.000015697133, y: 0, z: 1, w: -1} + - {x: 0.000015697133, y: 0, z: 1, w: -1} + - {x: 0.000015697133, y: 0, z: 1, w: -1} + - {x: 0.000015697133, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.000015697131, y: 0, z: 1, w: -1} + - {x: 0.000015697131, y: 0, z: 1, w: -1} + - {x: 0.000015697131, y: 0, z: 1, w: -1} + - {x: 0.000015697131, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.000015697133, y: 0, z: -1, w: -1} + - {x: -0.000015697133, y: 0, z: -1, w: -1} + - {x: -0.000015697133, y: 0, z: -1, w: -1} + - {x: -0.000015697133, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.71671754, y: -0.6911826, z: 0.0926424, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.78184384, y: -0.58669716, z: -0.21096572, w: -1} + - {x: -0.9590661, y: -0.28318217, z: -0.000003817307, w: -1} + - {x: -0.13527848, y: 0, z: 0.9908076, w: -1} + - {x: -0.0666934, y: 0.067952916, z: 0.9954569, w: -1} + - {x: 0.39061153, y: 0, z: 0.9205556, w: -1} + - {x: 0.17104562, y: -0.20182155, z: 0.964371, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.71671754, y: -0.6911826, z: -0.09264241, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.78184384, y: -0.58669716, z: 0.21096574, w: -1} + - {x: -0.06669341, y: -0.067952916, z: 0.9954569, w: -1} + - {x: -0.13527848, y: 0, z: 0.9908076, w: -1} + - {x: 0.17104563, y: 0.20182158, z: 0.964371, w: -1} + - {x: 0.39061153, y: 0, z: 0.9205556, w: -1} + - {x: -0.99231976, y: 0.12319356, z: 0.0111701535, w: -1} + - {x: -0.7823976, y: 0.585825, z: 0.21133621, w: -1} + - {x: -0.9928917, y: 0.10761269, z: 0.050846916, w: -1} + - {x: -0.8696051, y: 0.25716153, z: 0.4214911, w: -1} + - {x: 0.5768651, y: -0.2026839, z: -0.7912938, w: -1} + - {x: 0.39216703, y: 0, z: -0.919894, w: -1} + - {x: 0.80954117, y: 0.0723552, z: -0.5825872, w: -1} + - {x: 0.79802537, y: 0, z: -0.6026238, w: -1} + - {x: 0.39216703, y: 0, z: -0.919894, w: -1} + - {x: 0.39216703, y: 0, z: -0.919894, w: -1} + - {x: 0.79802537, y: 0, z: -0.6026238, w: -1} + - {x: 0.79802537, y: 0, z: -0.6026238, w: -1} + - {x: 0.39216703, y: 0, z: -0.919894, w: -1} + - {x: 0.39216703, y: 0, z: -0.919894, w: -1} + - {x: 0.79802537, y: 0, z: -0.6026238, w: -1} + - {x: 0.79802537, y: 0, z: -0.6026238, w: -1} + - {x: 0.7823977, y: 0.5858249, z: -0.2113362, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.8696051, y: 0.25716153, z: -0.4214911, w: -1} + - {x: 0.99600416, y: 0.080531694, z: -0.038604833, w: -1} + - {x: 0.39216703, y: 0, z: -0.919894, w: -1} + - {x: 0.57686514, y: 0.20268385, z: -0.79129374, w: -1} + - {x: 0.79802537, y: 0, z: -0.6026239, w: -1} + - {x: 0.80954117, y: -0.07235517, z: -0.5825872, w: -1} + - {x: 0.00004565348, y: 0, z: 1, w: -1} + - {x: 0.000045653484, y: 0, z: 1, w: -1} + - {x: 0.000045653484, y: 0, z: 1, w: -1} + - {x: 0.000045653484, y: 0, z: 1, w: -1} + - {x: 0.000045653484, y: 0, z: 1, w: -1} + - {x: 0.000045653484, y: 0, z: 1, w: -1} + - {x: 0.000045653484, y: 0, z: 1, w: -1} + - {x: 0.000045653484, y: 0, z: 1, w: -1} + - {x: 0.000045653484, y: 0, z: 1, w: -1} + - {x: 0.000045653484, y: 0, z: 1, w: -1} + - {x: 0.000045653484, y: 0, z: 1, w: -1} + - {x: 0.000045653484, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.00004565348, y: 0, z: 1, w: -1} + - {x: 0.00004565348, y: 0, z: 1, w: -1} + - {x: 0.00004565348, y: 0, z: 1, w: -1} + - {x: 0.00004565348, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.99600416, y: 0.080531694, z: -0.038604833, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.7334573, y: 0.21222018, z: -0.6457577, w: -1} + - {x: 0.5866495, y: -0.000000007363162, z: -0.809841, w: -1} + - {x: 0.7990106, y: 0.4010888, z: -0.44800666, w: -1} + - {x: 0.64380616, y: 0.25545245, z: -0.72128886, w: -1} + - {x: -0.000045653484, y: 0, z: -1, w: -1} + - {x: -0.000045653484, y: 0, z: -1, w: -1} + - {x: -0.000045653484, y: 0, z: -1, w: -1} + - {x: -0.000045653484, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.9970903, y: -0.068585746, z: 0.033272028, w: -1} + - {x: 0.00004565348, y: 1.7445312e-12, z: 1, w: -1} + - {x: 0.485117, y: -0.43106315, z: 0.7608194, w: -1} + - {x: 0.4884157, y: -0.43268958, z: 0.75777954, w: -1} + - {x: 0.6622754, y: -0.6411424, z: 0.3877212, w: -1} + - {x: -0.000045653484, y: 0, z: -1, w: -1} + - {x: -0.000045653484, y: 0, z: -1, w: -1} + - {x: -0.000045653484, y: 0, z: -1, w: -1} + - {x: -0.000045653484, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.78184384, y: -0.58669716, z: -0.21096572, w: -1} + - {x: -0.9590661, y: -0.28318217, z: -0.000003817307, w: -1} + - {x: -0.8820952, y: -0.24312043, z: -0.40348548, w: -1} + - {x: -0.9673599, y: -0.19925761, z: -0.15656067, w: -1} + - {x: 0.3906115, y: 0, z: 0.92055565, w: -1} + - {x: 0.574686, y: 0.20182152, z: 0.7930978, w: -1} + - {x: 0.8088006, y: 0, z: 0.588083, w: -1} + - {x: 0.8212369, y: -0.086286664, z: 0.56402534, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.78184384, y: -0.58669716, z: 0.21096574, w: -1} + - {x: 0.9970903, y: -0.068585746, z: 0.033272028, w: -1} + - {x: 0.88209516, y: -0.24312043, z: 0.4034855, w: -1} + - {x: 0.574686, y: -0.20182152, z: 0.7930978, w: -1} + - {x: 0.3906115, y: 0, z: 0.92055565, w: -1} + - {x: 0.8212369, y: 0.08628665, z: 0.56402534, w: -1} + - {x: 0.8088006, y: 0, z: 0.588083, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.8741293, y: 0.44693825, z: -0.19011612, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.98792934, y: -0.13236736, z: 0.08046411, w: -1} + - {x: -0.9558926, y: -0.28677043, z: 0.06349808, w: -1} + - {x: 0.00004610538, y: 0, z: 1, w: -1} + - {x: 0.000046105375, y: 0, z: 1, w: -1} + - {x: 0.000046105375, y: 0, z: 1, w: -1} + - {x: 0.00004610538, y: 0, z: 1, w: -1} + - {x: 0.00004610538, y: 0, z: 1, w: -1} + - {x: -0.7548111, y: -0.3981283, z: -0.52130044, w: -1} + - {x: -0.7543135, y: -0.41126925, z: -0.51173115, w: -1} + - {x: -0.5554409, y: -0.011473052, z: -0.83147687, w: -1} + - {x: -0.7581182, y: -0.34951305, z: -0.5505429, w: -1} + - {x: -0.7543143, y: -0.41126868, z: -0.51173043, w: -1} + - {x: -0.4835158, y: -0.07887849, z: -0.8717744, w: -1} + - {x: -0.10479116, y: 0.19314477, z: -0.9755582, w: -1} + - {x: -0.47830316, y: -0.08426724, z: -0.87414247, w: -1} + - {x: -0.10479143, y: 0.19314528, z: -0.97555816, w: -1} + - {x: -0.11156456, y: 0.18846679, z: -0.97572213, w: -1} + - {x: -0.10660638, y: 0.18969923, z: -0.97603756, w: -1} + - {x: -0.3744592, y: -0.17260091, z: -0.91103745, w: -1} + - {x: -0.99901885, y: -0.023736663, z: -0.03738931, w: -1} + - {x: -0.8332363, y: 0.55160266, z: -0.038101044, w: -1} + - {x: -0.17689724, y: -0.29288673, z: -0.9396407, w: -1} + - {x: -0.01044185, y: -0.007841875, z: -0.99991477, w: -1} + - {x: -0.000036386744, y: 0.0000072428024, z: -1, w: -1} + - {x: -0.000034789875, y: 0.0000065336894, z: -1, w: -1} + - {x: -0.000046083223, y: -0.000000040852665, z: -1, w: -1} + - {x: -0.00004610538, y: 0, z: -1, w: -1} + - {x: -0.00004610538, y: 0, z: -1, w: -1} + - {x: -0.00004610538, y: 0, z: -1, w: -1} + - {x: -0.00004610538, y: 0, z: -1, w: -1} + - {x: -0.000046105375, y: 0, z: -1, w: -1} + - {x: -0.91452515, y: -0.3372705, z: -0.22336628, w: -1} + - {x: -0.9298235, y: -0.30009812, z: -0.2130008, w: -1} + - {x: -0.8370893, y: -0.54550266, z: -0.041331057, w: -1} + - {x: -0.6238584, y: -0.7792801, z: -0.059356965, w: -1} + - {x: -0.9457253, y: -0.27691513, z: -0.17006356, w: -1} + - {x: -0.9564741, y: -0.17712028, z: -0.2319174, w: -1} + - {x: -0.9417992, y: -0.28860986, z: -0.17239073, w: -1} + - {x: -0.8242236, y: -0.5587618, z: -0.0918738, w: -1} + - {x: -0.92036396, y: -0.314601, z: -0.23228523, w: -1} + - {x: -0.855379, y: -0.50446165, z: -0.117665924, w: -1} + - {x: -0.68693775, y: -0.71807617, z: -0.11172777, w: -1} + - {x: -0.86391705, y: -0.4784924, z: 0.15713805, w: -1} + - {x: -0.69396293, y: -0.7164669, z: 0.071348846, w: -1} + - {x: -0.5383543, y: -0.83580047, z: 0.10775995, w: -1} + - {x: -0.6426356, y: -0.7587524, z: 0.106368735, w: -1} + - {x: -0.8361793, y: -0.5465862, z: -0.045250386, w: -1} + - {x: -0.021659134, y: -0.026753353, z: 0.9994073, w: -1} + - {x: -0.09009876, y: 0.18819611, z: 0.97799003, w: -1} + - {x: -0.1507361, y: 0.07430701, z: 0.98577744, w: -1} + - {x: -0.07427898, y: 0.023069412, z: 0.9969706, w: -1} + - {x: -0.05657766, y: 0.0031006746, z: 0.99839336, w: -1} + - {x: 0.00001567516, y: 3.0549108e-20, z: 1, w: -1} + - {x: 0.000015653184, y: 0, z: 1, w: -1} + - {x: 0.000015697131, y: 0, z: 1, w: -1} + - {x: 0.000015741078, y: 0, z: 1, w: -1} + - {x: 0.000015719106, y: 0, z: 1, w: -1} + - {x: -0.84010816, y: 0.54078054, z: 0.042128503, w: -1} + - {x: -0.570814, y: 0.8191883, z: 0.055694897, w: -1} + - {x: -0.83798283, y: 0.53738666, z: 0.0948709, w: -1} + - {x: -0.9744037, y: 0.22022828, z: -0.04513338, w: -1} + - {x: -0.5691983, y: 0.8148558, z: 0.1096502, w: -1} + - {x: -0.50606763, y: 0.85514075, z: 0.11238256, w: -1} + - {x: -0.6219045, y: 0.7760243, z: 0.10498131, w: -1} + - {x: -0.8299248, y: 0.5578641, z: -0.0035291356, w: -1} + - {x: -0.62273526, y: 0.7794329, z: 0.068448834, w: -1} + - {x: -0.8942061, y: 0.4455564, z: -0.043300774, w: -1} + - {x: -0.9506764, y: 0.29929802, z: -0.08145608, w: -1} + - {x: -0.8302477, y: 0.55739397, z: -0.00091831095, w: -1} + - {x: -0.96598023, y: 0.2535436, z: 0.05096956, w: -1} + - {x: -0.99915475, y: 0.019922456, z: -0.035954345, w: -1} + - {x: -0.97984254, y: 0.19841744, z: 0.023217235, w: -1} + - {x: -0.8378973, y: 0.5378947, z: 0.092721425, w: -1} + - {x: -0.000026985257, y: -0.0000066542752, z: -1, w: -1} + - {x: -0.000025417285, y: -0.000007299087, z: -1, w: -1} + - {x: -0.000015741101, y: 0, z: -1, w: -1} + - {x: -0.000015741101, y: -4.0701955e-13, z: -1, w: -1} + - {x: 0.03146989, y: 0.025013674, z: -0.99919164, w: -1} + - {x: -0.00001565314, y: 0, z: -1, w: -1} + - {x: -0.000015675136, y: 2.853288e-20, z: -1, w: -1} + - {x: -0.000015719128, y: 0, z: -1, w: -1} + - {x: -0.000015741125, y: 0, z: -1, w: -1} + - {x: -0.000015697131, y: 1.2681281e-20, z: -1, w: -1} + - {x: -0.5092773, y: -0.8346044, z: -0.20993374, w: -1} + - {x: -0.6714057, y: -0.7072863, z: -0.2212703, w: -1} + - {x: -0.8982011, y: -0.42655662, z: -0.106227376, w: -1} + - {x: -0.5772932, y: -0.78737885, z: -0.21625717, w: -1} + - {x: -0.9992634, y: 0.014360696, z: -0.035588674, w: -1} + - {x: -0.8975322, y: -0.4328445, z: -0.08415236, w: -1} + - {x: -0.9929929, y: -0.044231188, z: 0.10958491, w: -1} + - {x: -0.9928879, y: -0.05770147, z: 0.10413438, w: -1} + - {x: -0.9928879, y: -0.057702843, z: 0.10413447, w: -1} + - {x: -0.8910366, y: -0.4539219, z: -0.0029252963, w: -1} + - {x: -0.9928879, y: -0.05770246, z: 0.104133785, w: -1} + - {x: -0.7698813, y: -0.6282698, z: -0.11207066, w: -1} + - {x: -0.57782114, y: -0.78865707, z: -0.21010198, w: -1} + - {x: -0.89602226, y: -0.44041586, z: -0.05637366, w: -1} + - {x: -0.03058942, y: 0.043546766, z: 0.998583, w: -1} + - {x: -0.052710593, y: 0.057163138, z: 0.9969724, w: -1} + - {x: 0.053945035, y: -0.012366645, z: 0.9984673, w: -1} + - {x: 0.18402065, y: -0.13652726, z: 0.9733944, w: -1} + - {x: 0.058243074, y: -0.014640322, z: 0.9981952, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.92810786, y: 0.2685334, z: 0.25788656, w: -1} + - {x: -0.99014944, y: 0.084910534, z: 0.11132945, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.9760198, y: -0.17466281, z: -0.12991643, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + m_Colors: [] + m_UnwrapParameters: + m_HardAngle: 88 + m_PackMargin: 20 + m_AngleError: 8 + m_AreaError: 15 + m_PreserveMeshAssetOnDestroy: 0 + assetGuid: + m_Mesh: {fileID: 0} + m_IsSelectable: 1 + m_SelectedFaces: + m_SelectedEdges: [] + m_SelectedVertices: +--- !u!23 &2703581847549424981 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2703581847549424984} + 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: c7d0747bd7053804da8250ca0ea203d4, 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!33 &2703581847549424986 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2703581847549424984} + m_Mesh: {fileID: 0} +--- !u!64 &2703581847549424987 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2703581847549424984} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 4 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 0} diff --git a/Assets/Scenes/ProMap/MainFloor.prefab.meta b/Assets/Scenes/ProMap/MainFloor.prefab.meta new file mode 100644 index 0000000..3d6b869 --- /dev/null +++ b/Assets/Scenes/ProMap/MainFloor.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ff191c4992b04ef96a5bed391134e44a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/ProMap/ProMap.meta b/Assets/Scenes/ProMap/ProMap.meta new file mode 100644 index 0000000..9b574da --- /dev/null +++ b/Assets/Scenes/ProMap/ProMap.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c0fd3ce7b782ad91e930541b8f1cd14c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/ProMap/ProMap.unity b/Assets/Scenes/ProMap/ProMap.unity new file mode 100644 index 0000000..6b604ef --- /dev/null +++ b/Assets/Scenes/ProMap/ProMap.unity @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7d3947d58cc999ee16d2e9cc99f8a9b0c06fa75a274024e82afcfa3875292b0 +size 2810946 diff --git a/Assets/Scenes/ProMap/ProMap.unity.meta b/Assets/Scenes/ProMap/ProMap.unity.meta new file mode 100644 index 0000000..1b002eb --- /dev/null +++ b/Assets/Scenes/ProMap/ProMap.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a32f424460b5a9b75bc2f9ba968ecbd5 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/ProMap/ProMap/LightingData.asset b/Assets/Scenes/ProMap/ProMap/LightingData.asset new file mode 100644 index 0000000..d6c7f45 Binary files /dev/null and b/Assets/Scenes/ProMap/ProMap/LightingData.asset differ diff --git a/Assets/Scenes/ProMap/ProMap/LightingData.asset.meta b/Assets/Scenes/ProMap/ProMap/LightingData.asset.meta new file mode 100644 index 0000000..3c7a68f --- /dev/null +++ b/Assets/Scenes/ProMap/ProMap/LightingData.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8a37cf84e8c63c4a7b925139bfe94641 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 112000000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/ProMap/ProMap/NavMesh.asset b/Assets/Scenes/ProMap/ProMap/NavMesh.asset new file mode 100644 index 0000000..0858c5c Binary files /dev/null and b/Assets/Scenes/ProMap/ProMap/NavMesh.asset differ diff --git a/Assets/Scenes/ProMap/ProMap/NavMesh.asset.meta b/Assets/Scenes/ProMap/ProMap/NavMesh.asset.meta new file mode 100644 index 0000000..9a40d82 --- /dev/null +++ b/Assets/Scenes/ProMap/ProMap/NavMesh.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e1099bb21c3e9c398771a65ae0c7f2b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 23800000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scenes/ProMap/ProMap/ReflectionProbe-0.exr b/Assets/Scenes/ProMap/ProMap/ReflectionProbe-0.exr new file mode 100644 index 0000000..cb3bced Binary files /dev/null and b/Assets/Scenes/ProMap/ProMap/ReflectionProbe-0.exr differ diff --git a/Assets/Scenes/ProMap/ProMap/ReflectionProbe-0.exr.meta b/Assets/Scenes/ProMap/ProMap/ReflectionProbe-0.exr.meta new file mode 100644 index 0000000..2693099 --- /dev/null +++ b/Assets/Scenes/ProMap/ProMap/ReflectionProbe-0.exr.meta @@ -0,0 +1,96 @@ +fileFormatVersion: 2 +guid: da7026a550a98c57e9fb58d38599b544 +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: 1 + seamlessCubemap: 1 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 2 + aniso: 0 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + 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: 2 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 100 + 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/Scenes/ProMap/Tower.prefab b/Assets/Scenes/ProMap/Tower.prefab new file mode 100644 index 0000000..ee80126 --- /dev/null +++ b/Assets/Scenes/ProMap/Tower.prefab @@ -0,0 +1,516 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4889090041426076454 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4889090041426076475} + - component: {fileID: 4889090041426076474} + - component: {fileID: 4889090041426076453} + - component: {fileID: 4889090041426076452} + - component: {fileID: 4889090041426076455} + m_Layer: 0 + m_Name: Tower + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4889090041426076475 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4889090041426076454} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -10.78, y: 164.01, z: -284.8} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &4889090041426076474 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4889090041426076454} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8233d90336aea43098adf6dbabd606a2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MeshFormatVersion: 1 + m_Faces: + - m_Indexes: 000000000100000002000000010000000300000002000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 040000000500000006000000050000000700000006000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 08000000090000000a000000090000000b0000000a000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 0c0000000d0000000e0000000d0000000f0000000e000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 100000001100000012000000110000001300000012000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 140000001500000016000000170000001400000016000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 1 + - m_Indexes: 20000000210000001e0000001f000000200000001e000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 1 + - m_Indexes: 260000002200000023000000260000002300000024000000250000002600000024000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 2b000000290000002a0000002b0000002700000029000000270000002800000029000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 2f000000300000002c0000002d0000002f0000002c0000002f0000002d0000002e000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 320000003500000031000000320000003400000035000000320000003300000034000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 18000000190000001a0000001b000000180000001a0000001b0000001a0000001c0000001d0000001b0000001c000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 1 + m_SharedVertices: + - m_Vertices: 00000000230000002d000000 + - m_Vertices: 01000000270000002c000000 + - m_Vertices: 020000000d0000001000000024000000 + - m_Vertices: 0300000008000000110000002b000000 + - m_Vertices: 040000000b00000035000000 + - m_Vertices: 050000000e00000034000000 + - m_Vertices: 060000000a00000013000000 + - m_Vertices: 070000000f00000012000000 + - m_Vertices: 090000001f0000002a00000031000000 + - m_Vertices: 0c0000001c0000002500000033000000 + - m_Vertices: 140000002800000030000000 + - m_Vertices: 15000000180000002f000000 + - m_Vertices: 160000001b00000021000000 + - m_Vertices: 170000002000000029000000 + - m_Vertices: 19000000220000002e000000 + - m_Vertices: 1a00000026000000 + - m_Vertices: 1d0000001e00000032000000 + m_SharedTextures: [] + m_Positions: + - {x: 25, y: 0, z: -25} + - {x: 0, y: 0, z: -25} + - {x: 25, y: 0.28945923, z: -25} + - {x: 0, y: 0.28945923, z: -25} + - {x: 6.0548897, y: 24.646301, z: -6.519287} + - {x: 18.636608, y: 24.646301, z: -6.519287} + - {x: 6.0548897, y: 24.646301, z: -18.473328} + - {x: 18.636608, y: 24.646301, z: -18.473328} + - {x: 0, y: 0.28945923, z: -25} + - {x: 0, y: 0.28945923, z: 0} + - {x: 6.0548897, y: 24.646301, z: -18.473328} + - {x: 6.0548897, y: 24.646301, z: -6.519287} + - {x: 25, y: 0.28945923, z: 0} + - {x: 25, y: 0.28945923, z: -25} + - {x: 18.636608, y: 24.646301, z: -6.519287} + - {x: 18.636608, y: 24.646301, z: -18.473328} + - {x: 25, y: 0.28945923, z: -25} + - {x: 0, y: 0.28945923, z: -25} + - {x: 18.636608, y: 24.646301, z: -18.473328} + - {x: 6.0548897, y: 24.646301, z: -18.473328} + - {x: 0, y: 0, z: 0} + - {x: 12.5, y: 0, z: 0} + - {x: 12.5, y: 0.14472961, z: 0} + - {x: 0, y: 0.14472961, z: 0} + - {x: 12.5, y: 0, z: 0} + - {x: 25, y: 0, z: 0} + - {x: 25, y: 0.14472961, z: 0} + - {x: 12.5, y: 0.14472961, z: 0} + - {x: 25, y: 0.28945923, z: 0} + - {x: 12.5, y: 0.28945923, z: 0} + - {x: 12.5, y: 0.28945923, z: 0} + - {x: 0, y: 0.28945923, z: 0} + - {x: 0, y: 0.14472961, z: 0} + - {x: 12.5, y: 0.14472961, z: 0} + - {x: 25, y: 0, z: 0} + - {x: 25, y: 0, z: -25} + - {x: 25, y: 0.28945923, z: -25} + - {x: 25, y: 0.28945923, z: 0} + - {x: 25, y: 0.14472961, z: 0} + - {x: 0, y: 0, z: -25} + - {x: 0, y: 0, z: 0} + - {x: 0, y: 0.14472961, z: 0} + - {x: 0, y: 0.28945923, z: 0} + - {x: 0, y: 0.28945923, z: -25} + - {x: 0, y: 0, z: -25} + - {x: 25, y: 0, z: -25} + - {x: 25, y: 0, z: 0} + - {x: 12.5, y: 0, z: 0} + - {x: 0, y: 0, z: 0} + - {x: 0, y: 0.28945923, z: 0} + - {x: 12.5, y: 0.28945923, z: 0} + - {x: 25, y: 0.28945923, z: 0} + - {x: 18.636608, y: 24.646301, z: -6.519287} + - {x: 6.0548897, y: 24.646301, z: -6.519287} + m_Textures0: + - {x: 25, y: 0} + - {x: 0, y: 0} + - {x: 25, y: 0.28945923} + - {x: 0, y: 0.28945923} + - {x: 6.0548897, y: -6.519287} + - {x: 18.636608, y: -6.519287} + - {x: 6.0548897, y: -18.473328} + - {x: 18.636608, y: -18.473328} + - {x: 25, y: 0.2809096} + - {x: 0, y: 0.2809096} + - {x: 18.473328, y: 25.379066} + - {x: 6.519287, y: 25.379066} + - {x: 0, y: -6.039258} + - {x: -25, y: -6.039258} + - {x: -6.519287, y: 19.135103} + - {x: -18.473328, y: 19.135103} + - {x: 25, y: -6.191137} + - {x: 0, y: -6.191137} + - {x: 18.636608, y: 19.024992} + - {x: 6.0548897, y: 19.024992} + - {x: 0, y: 0} + - {x: -12.5, y: 0} + - {x: -12.5, y: 0.14472961} + - {x: 0, y: 0.14472961} + - {x: -12.5, y: 0} + - {x: -25, y: 0} + - {x: -25, y: 0.14472961} + - {x: -12.5, y: 0.14472961} + - {x: -25, y: 0.28945923} + - {x: -12.5, y: 0.28945923} + - {x: -12.5, y: 0.28945923} + - {x: 0, y: 0.28945923} + - {x: 0, y: 0.14472961} + - {x: -12.5, y: 0.14472961} + - {x: 0, y: 0} + - {x: -25, y: 0} + - {x: -25, y: 0.28945923} + - {x: 0, y: 0.28945923} + - {x: 0, y: 0.14472961} + - {x: 25, y: 0} + - {x: 0, y: 0} + - {x: 0, y: 0.14472961} + - {x: 0, y: 0.28945923} + - {x: 25, y: 0.28945923} + - {x: 0, y: -25} + - {x: -25, y: -25} + - {x: -25, y: 0} + - {x: -12.5, y: 0} + - {x: 0, y: 0} + - {x: 0, y: 0.27961653} + - {x: -12.5, y: 0.27961653} + - {x: -25, y: 0.27961653} + - {x: -18.636608, y: 25.493835} + - {x: -6.0548897, y: 25.493835} + m_Textures2: [] + m_Textures3: [] + m_Tangents: + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + m_Colors: [] + m_UnwrapParameters: + m_HardAngle: 88 + m_PackMargin: 20 + m_AngleError: 8 + m_AreaError: 15 + m_PreserveMeshAssetOnDestroy: 0 + assetGuid: + m_Mesh: {fileID: 0} + m_IsSelectable: 1 + m_SelectedFaces: + m_SelectedEdges: [] + m_SelectedVertices: +--- !u!23 &4889090041426076453 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4889090041426076454} + 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: c22777d6e868e4f2fb421913386b154e, 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: 2 + 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!33 &4889090041426076452 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4889090041426076454} + m_Mesh: {fileID: 0} +--- !u!64 &4889090041426076455 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4889090041426076454} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 4 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 0} diff --git a/Assets/Scenes/ProMap/Tower.prefab.meta b/Assets/Scenes/ProMap/Tower.prefab.meta new file mode 100644 index 0000000..3f34d21 --- /dev/null +++ b/Assets/Scenes/ProMap/Tower.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6cb581df5ca7f41d98c3bb66878b7d6f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Standard Assets.meta b/Assets/Standard Assets.meta new file mode 100644 index 0000000..30a010a --- /dev/null +++ b/Assets/Standard Assets.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: c6195a43a0187a34e9c6be23520d3766 +folderAsset: yes +timeCreated: 1436977287 +licenseType: Store +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Standard Assets/Characters.meta b/Assets/Standard Assets/Characters.meta new file mode 100644 index 0000000..338184a --- /dev/null +++ b/Assets/Standard Assets/Characters.meta @@ -0,0 +1,6 @@ +fileFormatVersion: 2 +guid: 8c32f58513a41ef4dab9cb7704c5fb92 +folderAsset: yes +DefaultImporter: + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter.meta new file mode 100644 index 0000000..8d6d3a4 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter.meta @@ -0,0 +1,6 @@ +fileFormatVersion: 2 +guid: 8912f13e18e67bc478684ec30d73bc64 +folderAsset: yes +DefaultImporter: + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation.meta new file mode 100644 index 0000000..8057d11 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation.meta @@ -0,0 +1,6 @@ +fileFormatVersion: 2 +guid: eb0e763ded53048dd80e7b78c35ded56 +folderAsset: yes +DefaultImporter: + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidCrouch.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidCrouch.fbx new file mode 100644 index 0000000..7c64bcb --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidCrouch.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdcfc34fcf178fe9a20f60265f9504ada6978a58260eeff20b08138182f41fd5 +size 5422240 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidCrouch.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidCrouch.fbx.meta new file mode 100644 index 0000000..f614799 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidCrouch.fbx.meta @@ -0,0 +1,1147 @@ +fileFormatVersion: 2 +guid: d89ea37480b6d75458aa38843e9688dc +ModelImporter: + serializedVersion: 18 + fileIDToRecycleName: + 100000: Chest + 100002: //RootNode + 100004: Geo_grp + 100006: Head + 100008: Hips + 100010: Jaw + 100012: JawEND + 100014: Le_Eye_Mesh + 100016: LeftArm + 100018: LeftCheek + 100020: LeftEye + 100022: LeftEyelidLower + 100024: LeftEyelidUpper + 100026: LeftFoot + 100028: LeftForeArm + 100030: LeftHand + 100032: LeftHandIndex1 + 100034: LeftHandIndex2 + 100036: LeftHandIndex3 + 100038: LeftHandMiddle1 + 100040: LeftHandMiddle2 + 100042: LeftHandMiddle3 + 100044: LeftHandPinky1 + 100046: LeftHandPinky2 + 100048: LeftHandPinky3 + 100050: LeftHandRing1 + 100052: LeftHandRing2 + 100054: LeftHandRing3 + 100056: LeftHandThumb1 + 100058: LeftHandThumb2 + 100060: LeftHandThumb3 + 100062: LeftInnerBrow + 100064: LeftIOuterBrow + 100066: LeftLeg + 100068: LeftLipCorner + 100070: LeftLipLower + 100072: LeftLipUpper + 100074: LeftNostril + 100076: LeftShoulder + 100078: LeftToes + 100080: LeftUpLeg + 100082: Lw_Teeth_Mesh + 100084: Neck + 100086: Reference + 100088: Ri_Eye_Mesh + 100090: RightArm + 100092: RightCheek + 100094: RightEye + 100096: RightEyelidLower + 100098: RightEyelidUpper + 100100: RightFoot + 100102: RightForeArm + 100104: RightHand + 100106: RightHandIndex1 + 100108: RightHandIndex2 + 100110: RightHandIndex3 + 100112: RightHandMiddle1 + 100114: RightHandMiddle2 + 100116: RightHandMiddle3 + 100118: RightHandPinky1 + 100120: RightHandPinky2 + 100122: RightHandPinky3 + 100124: RightHandRing1 + 100126: RightHandRing2 + 100128: RightHandRing3 + 100130: RightHandThumb1 + 100132: RightHandThumb2 + 100134: RightHandThumb3 + 100136: RightInnerBrow + 100138: RightIOuterBrow + 100140: RightLeg + 100142: RightLipCorner + 100144: RightLipLower + 100146: RightLipUpper + 100148: RightNostril + 100150: RightShoulder + 100152: RightToes + 100154: RightUpLeg + 100156: Spine + 100158: TongueBack + 100160: TongueTip + 100162: Tounge_Mesh + 100164: Unity_Body_Mesh + 100166: Up_Teeth_Mesh + 400000: Chest + 400002: //RootNode + 400004: Geo_grp + 400006: Head + 400008: Hips + 400010: Jaw + 400012: JawEND + 400014: Le_Eye_Mesh + 400016: LeftArm + 400018: LeftCheek + 400020: LeftEye + 400022: LeftEyelidLower + 400024: LeftEyelidUpper + 400026: LeftFoot + 400028: LeftForeArm + 400030: LeftHand + 400032: LeftHandIndex1 + 400034: LeftHandIndex2 + 400036: LeftHandIndex3 + 400038: LeftHandMiddle1 + 400040: LeftHandMiddle2 + 400042: LeftHandMiddle3 + 400044: LeftHandPinky1 + 400046: LeftHandPinky2 + 400048: LeftHandPinky3 + 400050: LeftHandRing1 + 400052: LeftHandRing2 + 400054: LeftHandRing3 + 400056: LeftHandThumb1 + 400058: LeftHandThumb2 + 400060: LeftHandThumb3 + 400062: LeftInnerBrow + 400064: LeftIOuterBrow + 400066: LeftLeg + 400068: LeftLipCorner + 400070: LeftLipLower + 400072: LeftLipUpper + 400074: LeftNostril + 400076: LeftShoulder + 400078: LeftToes + 400080: LeftUpLeg + 400082: Lw_Teeth_Mesh + 400084: Neck + 400086: Reference + 400088: Ri_Eye_Mesh + 400090: RightArm + 400092: RightCheek + 400094: RightEye + 400096: RightEyelidLower + 400098: RightEyelidUpper + 400100: RightFoot + 400102: RightForeArm + 400104: RightHand + 400106: RightHandIndex1 + 400108: RightHandIndex2 + 400110: RightHandIndex3 + 400112: RightHandMiddle1 + 400114: RightHandMiddle2 + 400116: RightHandMiddle3 + 400118: RightHandPinky1 + 400120: RightHandPinky2 + 400122: RightHandPinky3 + 400124: RightHandRing1 + 400126: RightHandRing2 + 400128: RightHandRing3 + 400130: RightHandThumb1 + 400132: RightHandThumb2 + 400134: RightHandThumb3 + 400136: RightInnerBrow + 400138: RightIOuterBrow + 400140: RightLeg + 400142: RightLipCorner + 400144: RightLipLower + 400146: RightLipUpper + 400148: RightNostril + 400150: RightShoulder + 400152: RightToes + 400154: RightUpLeg + 400156: Spine + 400158: TongueBack + 400160: TongueTip + 400162: Tounge_Mesh + 400164: Unity_Body_Mesh + 400166: Up_Teeth_Mesh + 2300000: Le_Eye_Mesh + 2300002: Ri_Eye_Mesh + 3300000: Le_Eye_Mesh + 3300002: Ri_Eye_Mesh + 4300000: Unity_Body_Mesh + 4300002: Up_Teeth_Mesh + 4300004: Lw_Teeth_Mesh + 4300006: Tounge_Mesh + 4300008: Le_Eye_Mesh + 4300010: Ri_Eye_Mesh + 7400000: UNTY_Sneak_tk04 + 7400002: HumanoidCrouchIdle + 7400004: HumanoidCrouchWalk + 7400006: HumanoidCrouchWalkRight + 7400008: HumanoidCrouchWalkLeft + 7400010: HumanoidCrouchTurnRight + 7400012: HumanoidCrouchTurnLeft + 7400014: HumanoidCrouchWalkRightB + 9500000: //RootNode + 13700000: Lw_Teeth_Mesh + 13700002: Tounge_Mesh + 13700004: Unity_Body_Mesh + 13700006: Up_Teeth_Mesh + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + optimizeGameObjects: 0 + motionNodeName: + pivotNodeName: + animationCompression: 1 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: HumanoidCrouchIdle + takeName: Take 001 + firstFrame: 264 + lastFrame: 319 + wrapMode: 0 + orientationOffsetY: -38 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 1 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidCrouchWalk + takeName: Take 001 + firstFrame: 105 + lastFrame: 159 + wrapMode: 0 + orientationOffsetY: -38 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 1 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidCrouchWalkRight + takeName: Take 001 + firstFrame: 2193 + lastFrame: 2245 + wrapMode: 0 + orientationOffsetY: -38 + level: 0 + cycleOffset: .300000012 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 1 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidCrouchWalkLeft + takeName: Take 001 + firstFrame: 1542 + lastFrame: 1610 + wrapMode: 0 + orientationOffsetY: -38 + level: 0 + cycleOffset: .709999979 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidCrouchTurnRight + takeName: Take 001 + firstFrame: 1932 + lastFrame: 1976 + wrapMode: 0 + orientationOffsetY: -38 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidCrouchTurnLeft + takeName: Take 001 + firstFrame: 1932 + lastFrame: 1976 + wrapMode: 0 + orientationOffsetY: 38 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 1 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidCrouchWalkRightB + takeName: Take 001 + firstFrame: 1542 + lastFrame: 1610 + wrapMode: 0 + orientationOffsetY: 38 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 1 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: .00999999978 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: -40, y: -40, z: -40} + max: {x: 40, y: 40, z: 40} + value: {x: .0748809204, y: 0, z: .0374404602} + length: .0936011821 + modified: 1 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: -60.0000038, y: -60.0000038, z: -90} + max: {x: 60.0000038, y: 60.0000038, z: 50} + value: {x: .327766955, y: 0, z: .163883477} + length: .409708828 + modified: 1 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: -60.0000038, y: -60.0000038, z: -90} + max: {x: 60.0000038, y: 60.0000038, z: 50} + value: {x: .327766657, y: 0, z: .163883328} + length: .40970847 + modified: 1 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: -90, y: 0, z: -80} + max: {x: 90, y: 0, z: 80} + value: {x: .338686317, y: 0, z: .169343159} + length: .423358053 + modified: 1 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: -90, y: 0, z: -80} + max: {x: 90, y: 0, z: 80} + value: {x: .338686228, y: 0, z: .169343114} + length: .423357934 + modified: 1 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: -30.0000019, z: -50} + max: {x: 0, y: 30.0000019, z: 50} + value: {x: .0686752051, y: 0, z: .0343376026} + length: .0858440399 + modified: 1 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: -30.0000019, z: -50} + max: {x: 0, y: 30.0000019, z: 50} + value: {x: .0686753467, y: 0, z: .0343376733} + length: .0858442187 + modified: 1 + - boneName: Spine + humanName: Spine + limit: + min: {x: -40, y: -40, z: -40} + max: {x: 40, y: 40, z: 40} + value: {x: .131201908, y: 0, z: .065600954} + length: .164002463 + modified: 1 + - boneName: Chest + humanName: Chest + limit: + min: {x: -40, y: -40, z: -40} + max: {x: 40, y: 40, z: 40} + value: {x: .190353379, y: 0, z: .0951766893} + length: .237941802 + modified: 1 + - boneName: Neck + humanName: Neck + limit: + min: {x: -40, y: -40, z: -40} + max: {x: 40, y: 40, z: 40} + value: {x: .0855656564, y: 0, z: .0427828282} + length: .106957108 + modified: 1 + - boneName: Head + humanName: Head + limit: + min: {x: -40, y: -40, z: -40} + max: {x: 40, y: 40, z: 40} + value: {x: .0855656564, y: 0, z: .0427828282} + length: .106957108 + modified: 1 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: -15.000001, z: -15.000001} + max: {x: 0, y: 15.000001, z: 30.0000019} + value: {x: .0728295371, y: 0, z: .0364147685} + length: .0910369605 + modified: 1 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: -15.000001, z: -15.000001} + max: {x: 0, y: 15.000001, z: 30.0000019} + value: {x: .0728297681, y: 0, z: .036414884} + length: .0910372436 + modified: 1 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: -90, y: -100, z: -60.0000038} + max: {x: 90, y: 100, z: 100} + value: {x: .203239575, y: 0, z: .101619788} + length: .25404954 + modified: 1 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: -90, y: -100, z: -60.0000038} + max: {x: 90, y: 100, z: 100} + value: {x: .203239575, y: 0, z: .101619788} + length: .25404954 + modified: 1 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: -90, y: 0, z: -80} + max: {x: 90, y: 0, z: 80} + value: {x: .197111592, y: 0, z: .0985557958} + length: .246389553 + modified: 1 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: -90, y: 0, z: -80} + max: {x: 90, y: 0, z: 80} + value: {x: .197110742, y: 0, z: .0985553712} + length: .246388495 + modified: 1 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: -40, z: -80} + max: {x: 0, y: 40, z: 80} + value: {x: .0985557958, y: 0, z: .0492778979} + length: .123194776 + modified: 1 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: -40, z: -80} + max: {x: 0, y: 40, z: 80} + value: {x: .0985553712, y: 0, z: .0492776856} + length: .123194247 + modified: 1 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: -50} + max: {x: 0, y: 0, z: 50} + value: {x: .065187104, y: 0, z: .032593552} + length: .0814839154 + modified: 1 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: -50} + max: {x: 0, y: 0, z: 50} + value: {x: .0651872158, y: 0, z: .0325936079} + length: .081484057 + modified: 1 + - boneName: LeftCheek + humanName: LeftEye + limit: + min: {x: 0, y: -20, z: -10} + max: {x: 0, y: 20, z: 15.000001} + value: {x: .0799999759, y: 0, z: .0399999879} + length: .100000001 + modified: 1 + - boneName: RightCheek + humanName: RightEye + limit: + min: {x: 0, y: -20, z: -10} + max: {x: 0, y: 20, z: 15.000001} + value: {x: .0799999759, y: 0, z: .0399999879} + length: .100000001 + modified: 1 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: -10, z: -10} + max: {x: 0, y: 10, z: 10} + value: {x: .0799999759, y: 0, z: .0399999879} + length: .100000001 + modified: 1 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: -25, z: -20} + max: {x: 0, y: 25, z: 20} + value: {x: .0232954323, y: 0, z: .0116477162} + length: .0291192997 + modified: 1 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: -40} + max: {x: 0, y: 0, z: 35} + value: {x: .0270182174, y: 0, z: .0135091087} + length: .0337727815 + modified: 1 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: -40} + max: {x: 0, y: 0, z: 35} + value: {x: .0202636626, y: 0, z: .0101318313} + length: .0253295861 + modified: 1 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: -20, z: -50} + max: {x: 0, y: 20, z: 50} + value: {x: .0318517908, y: 0, z: .0159258954} + length: .0398147553 + modified: 1 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0223746132, y: 0, z: .0111873066} + length: .0279682763 + modified: 1 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0167809594, y: 0, z: .00839047972} + length: .0209762082 + modified: 1 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: -7.50000048, z: -50} + max: {x: 0, y: 7.50000048, z: 50} + value: {x: .0354253612, y: 0, z: .0177126806} + length: .0442817174 + modified: 1 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0271717981, y: 0, z: .013585899} + length: .0339647569 + modified: 1 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0203788485, y: 0, z: .0101894243} + length: .0254735686 + modified: 1 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: -7.50000048, z: -50} + max: {x: 0, y: 7.50000048, z: 50} + value: {x: .034554895, y: 0, z: .0172774475} + length: .0431936346 + modified: 1 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0246685278, y: 0, z: .0123342639} + length: .0308356676 + modified: 1 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0185013935, y: 0, z: .00925069675} + length: .0231267512 + modified: 1 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: -20, z: -50} + max: {x: 0, y: 20, z: 50} + value: {x: .024671454, y: 0, z: .012335727} + length: .0308393259 + modified: 1 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0184512939, y: 0, z: .00922564697} + length: .0230641253 + modified: 1 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0138384728, y: 0, z: .00691923639} + length: .0172980949 + modified: 1 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: -25, z: -20} + max: {x: 0, y: 25, z: 20} + value: {x: .0232955087, y: 0, z: .0116477543} + length: .0291193947 + modified: 1 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: -40} + max: {x: 0, y: 0, z: 35} + value: {x: .0270181522, y: 0, z: .0135090761} + length: .0337726995 + modified: 1 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: -40} + max: {x: 0, y: 0, z: 35} + value: {x: .0202636123, y: 0, z: .0101318061} + length: .0253295247 + modified: 1 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: -20, z: -50} + max: {x: 0, y: 20, z: 50} + value: {x: .0318510309, y: 0, z: .0159255154} + length: .0398138054 + modified: 1 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0223747212, y: 0, z: .0111873606} + length: .0279684104 + modified: 1 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0167810395, y: 0, z: .00839051977} + length: .0209763087 + modified: 1 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: -7.50000048, z: -50} + max: {x: 0, y: 7.50000048, z: 50} + value: {x: .0354258306, y: 0, z: .0177129153} + length: .044282306 + modified: 1 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0271718819, y: 0, z: .0135859409} + length: .0339648612 + modified: 1 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .02037891, y: 0, z: .010189455} + length: .0254736468 + modified: 1 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: -7.50000048, z: -50} + max: {x: 0, y: 7.50000048, z: 50} + value: {x: .0345548131, y: 0, z: .0172774065} + length: .043193534 + modified: 1 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .024668118, y: 0, z: .012334059} + length: .0308351573 + modified: 1 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0185010862, y: 0, z: .00925054308} + length: .0231263675 + modified: 1 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: -20, z: -50} + max: {x: 0, y: 20, z: 50} + value: {x: .0246717427, y: 0, z: .0123358713} + length: .0308396872 + modified: 1 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .0184513107, y: 0, z: .00922565535} + length: .0230641477 + modified: 1 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: -45} + max: {x: 0, y: 0, z: 45} + value: {x: .013838484, y: 0, z: .00691924198} + length: .0172981098 + modified: 1 + skeleton: + - name: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: .99999994} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Reference + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: 0, w: .99999994} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: 3.42077811e-09, y: .963793695, z: -.0235067811} + rotation: {x: 5.82076654e-09, y: 4.65661252e-08, z: -2.91038305e-09, w: .99999994} + scale: {x: .999999464, y: .999999464, z: .999999583} + transformModified: 1 + - name: LeftUpLeg + position: {x: -.0754494593, y: -.045663476, z: 4.68068517e-09} + rotation: {x: -4.07453626e-08, y: -3.4924593e-08, z: -4.3655735e-08, w: .99999994} + scale: {x: 1, y: 1.00000036, z: 1.00000036} + transformModified: 1 + - name: LeftLeg + position: {x: -.0205504373, y: -.409130454, z: .0071713319} + rotation: {x: 2.32830679e-08, y: -4.65661252e-08, z: 3.49245859e-08, w: .99999994} + scale: {x: 1.00000024, y: 1.00000024, z: .999999762} + transformModified: 1 + - name: LeftFoot + position: {x: -.00515303621, y: -.423155665, z: -.0120320953} + rotation: {x: 1.16415313e-08, y: 6.9849186e-08, z: 1.16529e-08, w: .99999994} + scale: {x: 1.00000012, y: 1.00000012, z: 1.00000012} + transformModified: 1 + - name: LeftToes + position: {x: -.00748698693, y: -.0731672943, z: .145427078} + rotation: {x: 4.54747316e-11, y: -1.16415313e-08, z: 7.20825038e-19, w: .99999994} + scale: {x: 1, y: 1.00000012, z: .99999994} + transformModified: 1 + - name: RightUpLeg + position: {x: .0754495189, y: -.045663774, z: 6.53003767e-08} + rotation: {x: -1.23691262e-08, y: -4.80213167e-08, z: -3.20142099e-08, w: .99999994} + scale: {x: 1, y: 1.00000024, z: .999999821} + transformModified: 1 + - name: RightLeg + position: {x: .0205504801, y: -.409130156, z: .00717126951} + rotation: {x: 1.23691271e-08, y: 1.45519141e-09, z: 3.4924593e-08, w: .99999994} + scale: {x: 1.00000012, y: 1, z: 1.00000024} + transformModified: 1 + - name: RightFoot + position: {x: .00515298778, y: -.423155665, z: -.0120320329} + rotation: {x: -6.91215929e-09, y: 1.16415331e-08, z: -2.28095782e-16, w: .99999994} + scale: {x: 1.00000012, y: 1.00000012, z: 1} + transformModified: 1 + - name: RightToes + position: {x: .00748700323, y: -.0731672719, z: .145427436} + rotation: {x: 1.13686816e-09, y: -1.77635673e-15, z: -4.52041241e-24, w: .99999994} + scale: {x: 1, y: 1.00000012, z: .999999881} + transformModified: 1 + - name: Spine + position: {x: -3.00148741e-08, y: .0922629237, z: .0157713275} + rotation: {x: -1.74622983e-08, y: -4.65661252e-08, z: 1.45519143e-08, w: .99999994} + scale: {x: .99999994, y: 1.00000024, z: 1} + transformModified: 1 + - name: Chest + position: {x: 1.17779621e-07, y: .162540436, z: .0218507703} + rotation: {x: -2.91038282e-09, y: 3.04931835e-16, z: -1.16415313e-08, w: .99999994} + scale: {x: 1, y: 1, z: 1.00000012} + transformModified: 1 + - name: LeftShoulder + position: {x: -.0382436588, y: .192178369, z: -.017063193} + rotation: {x: -.0140066501, y: -.0595066473, z: .228689954, w: .971577883} + scale: {x: 1.00000024, y: 1.00000012, z: 1.00000036} + transformModified: 1 + - name: LeftArm + position: {x: -.0835746303, y: .0360973217, z: 2.02652473e-08} + rotation: {x: .00946434215, y: .0436915196, z: -.223042428, w: .973783076} + scale: {x: 1.00000024, y: .999999881, z: .999999583} + transformModified: 1 + - name: LeftForeArm + position: {x: -.25404951, y: 1.22031747e-06, z: 3.19976436e-08} + rotation: {x: -.000616516976, y: .0220786054, z: -.0160702672, w: .999626815} + scale: {x: 1, y: 1.00000012, z: 1.00000012} + transformModified: 1 + - name: LeftHand + position: {x: -.246389613, y: -4.35680903e-07, z: -9.75885257e-08} + rotation: {x: -4.02154443e-09, y: -1.4466176e-09, z: -.0214135218, w: .999770641} + scale: {x: 1.00000012, y: .99999994, z: 1.00000012} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -.075125888, y: -.0078406008, z: .0326528661} + rotation: {x: -.00211889809, y: .080257535, z: .0175381638, w: .996617556} + scale: {x: .999999523, y: 1, z: .999999762} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -.0397970714, y: 4.91564933e-05, z: .0011855599} + rotation: {x: .000501967676, y: .0154704293, z: .0404186174, w: .999062896} + scale: {x: .999999821, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -.0279682875, y: -1.673816e-07, z: -6.32759711e-09} + rotation: {x: 3.69308495e-08, y: 6.05847372e-09, z: 7.44928075e-09, w: .99999994} + scale: {x: 1.00000012, y: .99999994, z: 1.00000024} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -.0760238469, y: -.00188483985, z: .0101411967} + rotation: {x: -.000768827042, y: .03332109, z: .0209074691, w: .999225616} + scale: {x: .999999702, y: 1.00000012, z: 1.00000012} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -.0442796722, y: 3.25862288e-06, z: -.000425204897} + rotation: {x: -.00136237638, y: -.0191563964, z: .0379062556, w: .999096692} + scale: {x: .999999821, y: .999999464, z: 1.00000012} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -.0339647718, y: 2.86249474e-07, z: -8.29717592e-08} + rotation: {x: 2.32546835e-08, y: 2.64777067e-09, z: 2.93403135e-10, w: .99999994} + scale: {x: .999999046, y: .999999762, z: .999999166} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -.0656595677, y: -.00782520603, z: -.0322510153} + rotation: {x: -.000914534612, y: .0121654291, z: .0212139543, w: .999700487} + scale: {x: .999999523, y: .999999821, z: .999999702} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -.0308053438, y: -3.20081381e-05, z: -.0014482754} + rotation: {x: -.000170624597, y: -.00966151059, z: -.00536243059, w: .999938905} + scale: {x: 1.00000024, y: 1.00000012, z: 1.00000024} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -.023064144, y: -6.31396097e-06, z: 1.49689924e-07} + rotation: {x: 2.02855333e-08, y: 5.32508655e-11, z: 1.8177555e-09, w: .99999994} + scale: {x: .99999994, y: .999999821, z: 1.00000012} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -.0703019649, y: -.00374631234, z: -.0114116408} + rotation: {x: -.000323360844, y: .0115971807, z: .024741888, w: .999626517} + scale: {x: .999999583, y: .999999881, z: .999999523} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -.0431358069, y: -1.94654622e-05, z: -.00223529967} + rotation: {x: -.00120297296, y: -.0231146254, z: .0409693159, w: .998892248} + scale: {x: 1, y: 1.00000024, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -.0308356825, y: 2.39532568e-07, z: -7.19476922e-09} + rotation: {x: -6.08837869e-10, y: 1.12349374e-08, z: -7.34940375e-09, w: .99999994} + scale: {x: 1.00000036, y: 1.0000006, z: 1.00000048} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -.0142304301, y: -.0123787876, z: .0255317632} + rotation: {x: -.012324756, y: -.00852822885, z: .0125762429, w: .99980849} + scale: {x: .999999583, y: .999999881, z: .999999404} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -.0163738672, y: -.00529063167, z: .02349131} + rotation: {x: -.0260513071, y: .0966911316, z: .00361812161, w: .994966805} + scale: {x: 1.00000048, y: 1, z: 1.00000036} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -.0254602432, y: -.00763921905, z: .0208331123} + rotation: {x: 2.46801015e-08, y: 6.89048749e-11, z: -2.14205915e-08, w: .99999994} + scale: {x: .999999821, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: -5.19688825e-08, y: .235723853, z: -.0324132778} + rotation: {x: -8.73114825e-09, y: -2.32830626e-08, z: 2.32830626e-08, w: .99999994} + scale: {x: 1.00000012, y: 1, z: 1.00000012} + transformModified: 1 + - name: Head + position: {x: 5.99316294e-08, y: .106355786, z: .0113267787} + rotation: {x: 1.16415313e-08, y: 1.16415313e-08, z: -1.74622965e-08, w: .99999994} + scale: {x: 1.00000012, y: 1, z: .99999994} + transformModified: 1 + - name: Jaw + position: {x: -1.07955245e-07, y: .0111267567, z: .0103275944} + rotation: {x: -1.7085941e-15, y: 1.16415313e-08, z: 1.35525285e-16, w: .99999994} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -.0542440563, y: .0337018967, z: .0594304204} + rotation: {x: -1.7085941e-15, y: 1.16415313e-08, z: 1.35525285e-16, w: .99999994} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: .0542399958, y: .0337027349, z: .0594274066} + rotation: {x: -8.20415731e-16, y: 1.16415313e-08, z: -3.08563885e-16, w: .99999994} + scale: {x: .999999881, y: 1, z: .999999881} + transformModified: 1 + - name: RightShoulder + position: {x: .038328331, y: .192176938, z: -.0170631427} + rotation: {x: .228671849, y: .971582115, z: -.0140056564, w: -.0595073961} + scale: {x: 1.0000006, y: 1.00000024, z: 1.00000048} + transformModified: 1 + - name: RightArm + position: {x: -.0835755765, y: .0360957384, z: -2.97162579e-08} + rotation: {x: -.211051971, y: -.974394083, z: .0173116866, w: -.0755877718} + scale: {x: .999999702, y: .999999821, z: .999999464} + transformModified: 1 + - name: RightForeArm + position: {x: .253428489, y: .00601179199, z: -.0167043842} + rotation: {x: -.000616500562, y: .0220786314, z: -.0160702001, w: .999626815} + scale: {x: .999999821, y: .999999881, z: 1.00000012} + transformModified: 1 + - name: RightHand + position: {x: .245373502, y: .0216428582, z: .00555044087} + rotation: {x: -8.05343081e-09, y: -3.4378973e-09, z: .021413656, w: .999770641} + scale: {x: 1.00000012, y: 1.00000012, z: .99999994} + transformModified: 1 + - name: RightHandIndex1 + position: {x: .0747696534, y: -.00124316232, z: .0343442895} + rotation: {x: -.00211893418, y: .0802575499, z: .0175381694, w: .996617556} + scale: {x: .999999821, y: .999999821, z: .999999821} + transformModified: 1 + - name: RightHandIndex2 + position: {x: .0370573327, y: .000723987061, z: .0145385358} + rotation: {x: -.00331782503, y: .0159309618, z: .0606124736, w: .998028696} + scale: {x: 1.00000012, y: 1, z: .999999881} + transformModified: 1 + - name: RightHandIndex3 + position: {x: .0252249315, y: -.00496666413, z: .0110121761} + rotation: {x: -7.26069649e-09, y: -1.4510702e-08, z: 2.18140634e-08, w: .99999994} + scale: {x: .999999583, y: 1.00000012, z: .999999821} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: .0756474659, y: .00478892541, z: .0118529648} + rotation: {x: -.000768840255, y: .0333211161, z: .0209074952, w: .999225616} + scale: {x: .999999404, y: .999999404, z: .999999642} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: .0438089147, y: .000194971071, z: .00645504799} + rotation: {x: -.00413233321, y: -.0335151851, z: .076134786, w: .996525466} + scale: {x: 1.00000036, y: 1, z: 1.00000024} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: .0330724642, y: -.00754786143, z: .00168993894} + rotation: {x: 7.69444419e-09, y: 1.25382789e-08, z: 1.49648791e-08, w: .99999994} + scale: {x: .999999881, y: 1.00000036, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: .0668035522, y: -.00199553184, z: -.0307564847} + rotation: {x: .00317373709, y: -.192002267, z: .0450988412, w: .980352521} + scale: {x: .999999881, y: .999999583, z: .999999642} + transformModified: 1 + - name: RightHandPinky2 + position: {x: .0285310671, y: -.00139647431, z: -.0116238724} + rotation: {x: -.000170635802, y: -.00966133457, z: -.00536238402, w: .999938905} + scale: {x: 1.00000012, y: 1, z: 1.00000012} + transformModified: 1 + - name: RightHandPinky3 + position: {x: .0214269906, y: -.000553206133, z: -.00851669535} + rotation: {x: 3.90360597e-08, y: -6.2735811e-10, z: -1.86674836e-08, w: .99999994} + scale: {x: 1.00000012, y: 1, z: .999999881} + transformModified: 1 + - name: RightHandRing1 + position: {x: .0705985799, y: .00245708786, z: -.00982159749} + rotation: {x: .000709679676, y: -.0543408655, z: .034945406, w: .9979105} + scale: {x: 1.00000012, y: .999999821, z: .999999881} + transformModified: 1 + - name: RightHandRing2 + position: {x: .0428873822, y: -.0013771269, z: -.00494583743} + rotation: {x: .000481452531, y: -.021291228, z: .0698404461, w: .997330785} + scale: {x: .999999404, y: .999999702, z: .999999702} + transformModified: 1 + - name: RightHandRing3 + position: {x: .0295002013, y: -.00769287953, z: -.00462228199} + rotation: {x: -3.35127268e-08, y: 2.45900145e-09, z: -1.36025351e-08, w: .99999994} + scale: {x: 1.00000024, y: .999999881, z: .999999881} + transformModified: 1 + - name: RightHandThumb1 + position: {x: .0146845682, y: -.0111069884, z: .0258579385} + rotation: {x: -.0128122158, y: -.00325594051, z: .0314567909, w: .999417603} + scale: {x: .999999702, y: .999999821, z: .999999583} + transformModified: 1 + - name: RightHandThumb2 + position: {x: .0163738634, y: -.00529022701, z: .0234914869} + rotation: {x: -.0260586143, y: -.0966913998, z: -.00361187197, w: .994966626} + scale: {x: .999999881, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: .0254600979, y: -.00763982628, z: .0208329968} + rotation: {x: 2.29152075e-08, y: 4.65800554e-08, z: -4.59895189e-09, w: .99999994} + scale: {x: 1.00000024, y: .999999821, z: 1} + transformModified: 1 + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 3 + additionalBone: 0 + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdle.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdle.fbx new file mode 100644 index 0000000..36d13c1 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdle.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55c5d08704969f926602ba46de9370d2e02f70fb456a0691290e63991f0a7fef +size 1411008 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdle.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdle.fbx.meta new file mode 100644 index 0000000..c2b8dde --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdle.fbx.meta @@ -0,0 +1,1379 @@ +fileFormatVersion: 2 +guid: dffa50cfe77e0434bbfa71245b3dd529 +ModelImporter: + serializedVersion: 18 + fileIDToRecycleName: + 100000: Chest + 100002: chestProxy_geo + 100004: //RootNode + 100006: Head + 100008: headProxy_geo + 100010: HeadTop_End + 100012: Hips + 100014: Jaw + 100016: JawEND + 100018: jawProxy_geo + 100020: l_ankleProxy_geo + 100022: l_ballProxy_geo + 100024: l_clavicleProxy_geo + 100026: l_erbowProxy_geo + 100028: l_hipProxy_geo + 100030: l_indexProxy_01_geo + 100032: l_indexProxy_02_geo + 100034: l_indexProxy_03_geo + 100036: l_kneeProxy_geo + 100038: l_middleProxy_01_geo + 100040: l_middleProxy_02_geo + 100042: l_middleProxy_03_geo + 100044: l_pinkyProxy_01_geo + 100046: l_pinkyProxy_02_geo + 100048: l_pinkyProxy_03_geo + 100050: l_ringProxy_01_geo + 100052: l_ringProxy_02_geo + 100054: l_ringProxy_03_geo + 100056: l_shourderProxy_geo + 100058: l_thumbProxy_01_geo + 100060: l_thumbProxy_02_geo + 100062: l_thumbProxy_03_geo + 100064: l_UNI_eye + 100066: l_wristProxy_geo + 100068: LeftArm + 100070: LeftCheek + 100072: LeftEye + 100074: LeftEyelidLower + 100076: LeftEyelidUpper + 100078: LeftFoot + 100080: LeftForeArm + 100082: LeftHand + 100084: LeftHandIndex1 + 100086: LeftHandIndex13 + 100088: LeftHandIndex17 + 100090: LeftHandIndex2 + 100092: LeftHandIndex3 + 100094: LeftHandMiddle1 + 100096: LeftHandMiddle13 + 100098: LeftHandMiddle17 + 100100: LeftHandMiddle2 + 100102: LeftHandMiddle3 + 100104: LeftHandPinky1 + 100106: LeftHandPinky13 + 100108: LeftHandPinky17 + 100110: LeftHandPinky2 + 100112: LeftHandPinky3 + 100114: LeftHandRing1 + 100116: LeftHandRing13 + 100118: LeftHandRing17 + 100120: LeftHandRing2 + 100122: LeftHandRing3 + 100124: LeftHandThumb1 + 100126: LeftHandThumb13 + 100128: LeftHandThumb17 + 100130: LeftHandThumb2 + 100132: LeftHandThumb3 + 100134: LeftInnerBrow + 100136: LeftIOuterBrow + 100138: LeftLeg + 100140: LeftLipCorner + 100142: LeftLipLower + 100144: LeftLipUpper + 100146: LeftNostril + 100148: LeftShoulder + 100150: LeftToes + 100152: LeftUpLeg + 100154: LToeBase_End2 + 100156: LToeBase_End3 + 100158: Neck + 100160: neckProxy_geo + 100162: pelvisProxy_geo + 100164: Pivot + 100166: r_ankleProxy_geo + 100168: r_ballProxy_geo + 100170: r_clavicleProxy_geo + 100172: r_erbowProxy_geo + 100174: r_hipProxy_geo + 100176: r_indexProxy_01_geo + 100178: r_indexProxy_02_geo + 100180: r_indexProxy_03_geo + 100182: r_kneeProxy_geo + 100184: r_middleProxy_01_geo + 100186: r_middleProxy_02_geo + 100188: r_middleProxy_03_geo + 100190: r_pinkyProxy_01_geo + 100192: r_pinkyProxy_02_geo + 100194: r_pinkyProxy_03_geo + 100196: r_ringProxy_01_geo + 100198: r_ringProxy_02_geo + 100200: r_ringProxy_03_geo + 100202: r_shourderProxy_geo + 100204: r_thumbProxy_01_geo + 100206: r_thumbProxy_02_geo + 100208: r_thumbProxy_03_geo + 100210: r_UNI_eye + 100212: r_wristProxy_geo + 100214: Reference + 100216: RightArm + 100218: RightCheek + 100220: RightEye + 100222: RightEyelidLower + 100224: RightEyelidUpper + 100226: RightFoot + 100228: RightForeArm + 100230: RightHand + 100232: RightHandIndex1 + 100234: RightHandIndex2 + 100236: RightHandIndex3 + 100238: RightHandMiddle1 + 100240: RightHandMiddle2 + 100242: RightHandMiddle3 + 100244: RightHandPinky1 + 100246: RightHandPinky2 + 100248: RightHandPinky3 + 100250: RightHandRing1 + 100252: RightHandRing2 + 100254: RightHandRing3 + 100256: RightHandThumb1 + 100258: RightHandThumb2 + 100260: RightHandThumb3 + 100262: RightInnerBrow + 100264: RightIOuterBrow + 100266: RightLeg + 100268: RightLipCorner + 100270: RightLipLower + 100272: RightLipUpper + 100274: RightNostril + 100276: RightShoulder + 100278: RightToes + 100280: RightUpLeg + 100282: Root + 100284: Spine + 100286: spineProxy_geo + 100288: TongueBack + 100290: TongueTip + 100292: UNI_01_Lower_teethProxy + 100294: UNI_01_TongueBaseProxy + 100296: UNI_01_TongueTipProxy + 100298: UNI_01_Upper_teethProxy + 400000: Chest + 400002: chestProxy_geo + 400004: //RootNode + 400006: Head + 400008: headProxy_geo + 400010: HeadTop_End + 400012: Hips + 400014: Jaw + 400016: JawEND + 400018: jawProxy_geo + 400020: l_ankleProxy_geo + 400022: l_ballProxy_geo + 400024: l_clavicleProxy_geo + 400026: l_erbowProxy_geo + 400028: l_hipProxy_geo + 400030: l_indexProxy_01_geo + 400032: l_indexProxy_02_geo + 400034: l_indexProxy_03_geo + 400036: l_kneeProxy_geo + 400038: l_middleProxy_01_geo + 400040: l_middleProxy_02_geo + 400042: l_middleProxy_03_geo + 400044: l_pinkyProxy_01_geo + 400046: l_pinkyProxy_02_geo + 400048: l_pinkyProxy_03_geo + 400050: l_ringProxy_01_geo + 400052: l_ringProxy_02_geo + 400054: l_ringProxy_03_geo + 400056: l_shourderProxy_geo + 400058: l_thumbProxy_01_geo + 400060: l_thumbProxy_02_geo + 400062: l_thumbProxy_03_geo + 400064: l_UNI_eye + 400066: l_wristProxy_geo + 400068: LeftArm + 400070: LeftCheek + 400072: LeftEye + 400074: LeftEyelidLower + 400076: LeftEyelidUpper + 400078: LeftFoot + 400080: LeftForeArm + 400082: LeftHand + 400084: LeftHandIndex1 + 400086: LeftHandIndex13 + 400088: LeftHandIndex17 + 400090: LeftHandIndex2 + 400092: LeftHandIndex3 + 400094: LeftHandMiddle1 + 400096: LeftHandMiddle13 + 400098: LeftHandMiddle17 + 400100: LeftHandMiddle2 + 400102: LeftHandMiddle3 + 400104: LeftHandPinky1 + 400106: LeftHandPinky13 + 400108: LeftHandPinky17 + 400110: LeftHandPinky2 + 400112: LeftHandPinky3 + 400114: LeftHandRing1 + 400116: LeftHandRing13 + 400118: LeftHandRing17 + 400120: LeftHandRing2 + 400122: LeftHandRing3 + 400124: LeftHandThumb1 + 400126: LeftHandThumb13 + 400128: LeftHandThumb17 + 400130: LeftHandThumb2 + 400132: LeftHandThumb3 + 400134: LeftInnerBrow + 400136: LeftIOuterBrow + 400138: LeftLeg + 400140: LeftLipCorner + 400142: LeftLipLower + 400144: LeftLipUpper + 400146: LeftNostril + 400148: LeftShoulder + 400150: LeftToes + 400152: LeftUpLeg + 400154: LToeBase_End2 + 400156: LToeBase_End3 + 400158: Neck + 400160: neckProxy_geo + 400162: pelvisProxy_geo + 400164: Pivot + 400166: r_ankleProxy_geo + 400168: r_ballProxy_geo + 400170: r_clavicleProxy_geo + 400172: r_erbowProxy_geo + 400174: r_hipProxy_geo + 400176: r_indexProxy_01_geo + 400178: r_indexProxy_02_geo + 400180: r_indexProxy_03_geo + 400182: r_kneeProxy_geo + 400184: r_middleProxy_01_geo + 400186: r_middleProxy_02_geo + 400188: r_middleProxy_03_geo + 400190: r_pinkyProxy_01_geo + 400192: r_pinkyProxy_02_geo + 400194: r_pinkyProxy_03_geo + 400196: r_ringProxy_01_geo + 400198: r_ringProxy_02_geo + 400200: r_ringProxy_03_geo + 400202: r_shourderProxy_geo + 400204: r_thumbProxy_01_geo + 400206: r_thumbProxy_02_geo + 400208: r_thumbProxy_03_geo + 400210: r_UNI_eye + 400212: r_wristProxy_geo + 400214: Reference + 400216: RightArm + 400218: RightCheek + 400220: RightEye + 400222: RightEyelidLower + 400224: RightEyelidUpper + 400226: RightFoot + 400228: RightForeArm + 400230: RightHand + 400232: RightHandIndex1 + 400234: RightHandIndex2 + 400236: RightHandIndex3 + 400238: RightHandMiddle1 + 400240: RightHandMiddle2 + 400242: RightHandMiddle3 + 400244: RightHandPinky1 + 400246: RightHandPinky2 + 400248: RightHandPinky3 + 400250: RightHandRing1 + 400252: RightHandRing2 + 400254: RightHandRing3 + 400256: RightHandThumb1 + 400258: RightHandThumb2 + 400260: RightHandThumb3 + 400262: RightInnerBrow + 400264: RightIOuterBrow + 400266: RightLeg + 400268: RightLipCorner + 400270: RightLipLower + 400272: RightLipUpper + 400274: RightNostril + 400276: RightShoulder + 400278: RightToes + 400280: RightUpLeg + 400282: Root + 400284: Spine + 400286: spineProxy_geo + 400288: TongueBack + 400290: TongueTip + 400292: UNI_01_Lower_teethProxy + 400294: UNI_01_TongueBaseProxy + 400296: UNI_01_TongueTipProxy + 400298: UNI_01_Upper_teethProxy + 2300000: chestProxy_geo + 2300002: headProxy_geo + 2300004: jawProxy_geo + 2300006: l_ankleProxy_geo + 2300008: l_ballProxy_geo + 2300010: l_clavicleProxy_geo + 2300012: l_erbowProxy_geo + 2300014: l_hipProxy_geo + 2300016: l_indexProxy_01_geo + 2300018: l_indexProxy_02_geo + 2300020: l_indexProxy_03_geo + 2300022: l_kneeProxy_geo + 2300024: l_middleProxy_01_geo + 2300026: l_middleProxy_02_geo + 2300028: l_middleProxy_03_geo + 2300030: l_pinkyProxy_01_geo + 2300032: l_pinkyProxy_02_geo + 2300034: l_pinkyProxy_03_geo + 2300036: l_ringProxy_01_geo + 2300038: l_ringProxy_02_geo + 2300040: l_ringProxy_03_geo + 2300042: l_shourderProxy_geo + 2300044: l_thumbProxy_01_geo + 2300046: l_thumbProxy_02_geo + 2300048: l_thumbProxy_03_geo + 2300050: l_UNI_eye + 2300052: l_wristProxy_geo + 2300054: neckProxy_geo + 2300056: pelvisProxy_geo + 2300058: r_ankleProxy_geo + 2300060: r_ballProxy_geo + 2300062: r_clavicleProxy_geo + 2300064: r_erbowProxy_geo + 2300066: r_hipProxy_geo + 2300068: r_indexProxy_01_geo + 2300070: r_indexProxy_02_geo + 2300072: r_indexProxy_03_geo + 2300074: r_kneeProxy_geo + 2300076: r_middleProxy_01_geo + 2300078: r_middleProxy_02_geo + 2300080: r_middleProxy_03_geo + 2300082: r_pinkyProxy_01_geo + 2300084: r_pinkyProxy_02_geo + 2300086: r_pinkyProxy_03_geo + 2300088: r_ringProxy_01_geo + 2300090: r_ringProxy_02_geo + 2300092: r_ringProxy_03_geo + 2300094: r_shourderProxy_geo + 2300096: r_thumbProxy_01_geo + 2300098: r_thumbProxy_02_geo + 2300100: r_thumbProxy_03_geo + 2300102: r_UNI_eye + 2300104: r_wristProxy_geo + 2300106: spineProxy_geo + 2300108: UNI_01_Lower_teethProxy + 2300110: UNI_01_TongueBaseProxy + 2300112: UNI_01_TongueTipProxy + 2300114: UNI_01_Upper_teethProxy + 3300000: chestProxy_geo + 3300002: headProxy_geo + 3300004: jawProxy_geo + 3300006: l_ankleProxy_geo + 3300008: l_ballProxy_geo + 3300010: l_clavicleProxy_geo + 3300012: l_erbowProxy_geo + 3300014: l_hipProxy_geo + 3300016: l_indexProxy_01_geo + 3300018: l_indexProxy_02_geo + 3300020: l_indexProxy_03_geo + 3300022: l_kneeProxy_geo + 3300024: l_middleProxy_01_geo + 3300026: l_middleProxy_02_geo + 3300028: l_middleProxy_03_geo + 3300030: l_pinkyProxy_01_geo + 3300032: l_pinkyProxy_02_geo + 3300034: l_pinkyProxy_03_geo + 3300036: l_ringProxy_01_geo + 3300038: l_ringProxy_02_geo + 3300040: l_ringProxy_03_geo + 3300042: l_shourderProxy_geo + 3300044: l_thumbProxy_01_geo + 3300046: l_thumbProxy_02_geo + 3300048: l_thumbProxy_03_geo + 3300050: l_UNI_eye + 3300052: l_wristProxy_geo + 3300054: neckProxy_geo + 3300056: pelvisProxy_geo + 3300058: r_ankleProxy_geo + 3300060: r_ballProxy_geo + 3300062: r_clavicleProxy_geo + 3300064: r_erbowProxy_geo + 3300066: r_hipProxy_geo + 3300068: r_indexProxy_01_geo + 3300070: r_indexProxy_02_geo + 3300072: r_indexProxy_03_geo + 3300074: r_kneeProxy_geo + 3300076: r_middleProxy_01_geo + 3300078: r_middleProxy_02_geo + 3300080: r_middleProxy_03_geo + 3300082: r_pinkyProxy_01_geo + 3300084: r_pinkyProxy_02_geo + 3300086: r_pinkyProxy_03_geo + 3300088: r_ringProxy_01_geo + 3300090: r_ringProxy_02_geo + 3300092: r_ringProxy_03_geo + 3300094: r_shourderProxy_geo + 3300096: r_thumbProxy_01_geo + 3300098: r_thumbProxy_02_geo + 3300100: r_thumbProxy_03_geo + 3300102: r_UNI_eye + 3300104: r_wristProxy_geo + 3300106: spineProxy_geo + 3300108: UNI_01_Lower_teethProxy + 3300110: UNI_01_TongueBaseProxy + 3300112: UNI_01_TongueTipProxy + 3300114: UNI_01_Upper_teethProxy + 4300000: l_UNI_eye + 4300002: r_UNI_eye + 4300004: UNI_01_TongueBaseProxy + 4300006: UNI_01_TongueTipProxy + 4300008: UNI_01_Lower_teethProxy + 4300010: jawProxy_geo + 4300012: headProxy_geo + 4300014: UNI_01_Upper_teethProxy + 4300016: neckProxy_geo + 4300018: r_pinkyProxy_03_geo + 4300020: r_pinkyProxy_02_geo + 4300022: r_pinkyProxy_01_geo + 4300024: r_ringProxy_03_geo + 4300026: r_ringProxy_02_geo + 4300028: r_ringProxy_01_geo + 4300030: r_middleProxy_03_geo + 4300032: r_middleProxy_02_geo + 4300034: r_middleProxy_01_geo + 4300036: r_indexProxy_03_geo + 4300038: r_indexProxy_02_geo + 4300040: r_indexProxy_01_geo + 4300042: r_thumbProxy_03_geo + 4300044: r_thumbProxy_02_geo + 4300046: r_thumbProxy_01_geo + 4300048: r_wristProxy_geo + 4300050: r_erbowProxy_geo + 4300052: r_shourderProxy_geo + 4300054: r_clavicleProxy_geo + 4300056: chestProxy_geo + 4300058: l_pinkyProxy_03_geo + 4300060: l_pinkyProxy_02_geo + 4300062: l_pinkyProxy_01_geo + 4300064: l_ringProxy_03_geo + 4300066: l_ringProxy_02_geo + 4300068: l_ringProxy_01_geo + 4300070: l_middleProxy_03_geo + 4300072: l_middleProxy_02_geo + 4300074: l_middleProxy_01_geo + 4300076: l_indexProxy_03_geo + 4300078: l_indexProxy_02_geo + 4300080: l_indexProxy_01_geo + 4300082: l_thumbProxy_03_geo + 4300084: l_thumbProxy_02_geo + 4300086: l_thumbProxy_01_geo + 4300088: l_wristProxy_geo + 4300090: l_erbowProxy_geo + 4300092: l_shourderProxy_geo + 4300094: l_clavicleProxy_geo + 4300096: spineProxy_geo + 4300098: r_ballProxy_geo + 4300100: r_ankleProxy_geo + 4300102: r_kneeProxy_geo + 4300104: r_hipProxy_geo + 4300106: pelvisProxy_geo + 4300108: l_ballProxy_geo + 4300110: l_ankleProxy_geo + 4300112: l_kneeProxy_geo + 4300114: l_hipProxy_geo + 7400000: HumanoidIdle + 7400002: Idle_Glance + 9500000: //RootNode + 11100000: //RootNode + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + optimizeGameObjects: 0 + motionNodeName: + pivotNodeName: + animationCompression: 1 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: HumanoidIdle + takeName: _87_a_U1_M_P_idle_Neutral__Fb_p0_No_1 + firstFrame: 445 + lastFrame: 517 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 1 + loopBlendPositionY: 1 + loopBlendPositionXZ: 1 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: .00999999978 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Idle(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: 0, y: .960555851, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftUpLeg + position: {x: -.0754494965, y: -.0456640199, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLeg + position: {x: -.0205504987, y: -.409129977, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftFoot + position: {x: -.00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftToes + position: {x: -.00748699997, y: -.0731673017, z: .145427123} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightUpLeg + position: {x: .0754495338, y: -.0456639901, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLeg + position: {x: .0205504671, y: -.409130007, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightFoot + position: {x: .00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightToes + position: {x: .00748699997, y: -.0731673017, z: .145427495} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Spine + position: {x: 2.6469779e-25, y: .0922631845, z: .0157713313} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Chest + position: {x: -0, y: .162540287, z: -.00165605545} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftShoulder + position: {x: -.0382859968, y: .221622497, z: -.017063085} + rotation: {x: -.0231816266, y: -.0412397236, z: .155462489, w: .986708343} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftArm + position: {x: -.100502051, y: 5.68434176e-16, z: -3.330669e-18} + rotation: {x: .0886180326, y: .0276504513, z: -.142930597, w: .985369623} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftForeArm + position: {x: -.254049301, y: 5.68434176e-16, z: 1.11022296e-17} + rotation: {x: .124834061, y: .031358555, z: .00281256856, w: .99167794} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHand + position: {x: -.24638927, y: 0, z: -1.99840139e-16} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -.0751257986, y: -.00784140453, z: .0326526426} + rotation: {x: .00608505122, y: -.0167607125, z: .0568631738, w: .998222768} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036} + rotation: {x: -.0674880594, y: .0152272331, z: .0327193551, w: .997067153} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -.0279684775, y: -6.28122487e-09, z: -5.17186614e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -.0760238245, y: -.00188513438, z: .0101412293} + rotation: {x: -.00380875752, y: .0447872244, z: .0881900042, w: .995088995} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -.0442804359, y: 4.79887422e-06, z: -.000425400125} + rotation: {x: -.0125460858, y: -.00755280908, z: .0314764269, w: .999397218} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -.0339648277, y: -1.21979289e-08, z: 3.75648268e-09} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -.0656599477, y: -.00782510638, z: -.0322512463} + rotation: {x: -.0661564544, y: .0816889778, z: .0931312442, w: .990089357} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775} + rotation: {x: .0470220037, y: -.0211624149, z: .0376887321, w: .997958302} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -.0230640266, y: -6.40258077e-06, z: 1.8332095e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -.0703021064, y: -.00374530931, z: -.0114117917} + rotation: {x: -.0202594865, y: .0722944736, z: .090059869, w: .993102431} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837} + rotation: {x: .018373603, y: -.0256185681, z: .0339712389, w: .998925507} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -.0308355652, y: 7.71032613e-11, z: -1.64932707e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -.0142312413, y: -.0123778246, z: .0255316682} + rotation: {x: -.102060832, y: -.0509465337, z: -.102719858, w: .988148153} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -.0163739994, y: -.00528999977, z: .0234914087} + rotation: {x: -.0260625444, y: .096688956, z: .00360701559, w: .994966805} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -.0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: -0, y: .259009302, z: -.0324132554} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Head + position: {x: -2.6469779e-25, y: .0830703825, z: .0113267815} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Jaw + position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431} + rotation: {x: .219240054, y: -0, z: -0, w: .975670993} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: JawEND + position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipCorner + position: {x: -.032843262, y: -.01657876, z: .0661217645} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipLower + position: {x: -.0142508168, y: -.0216887593, z: .0822406337} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipCorner + position: {x: .0328399986, y: -.01657876, z: .0661187842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipLower + position: {x: .0142508168, y: -.0216887593, z: .0822387859} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueBack + position: {x: -1.73472344e-20, y: -.022869369, z: .0100954091} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueTip + position: {x: -1.73472344e-20, y: -.0232788119, z: .0383227095} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -.0542440265, y: .0337019488, z: .0594304018} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEye + position: {x: -.0208482333, y: .0825027004, z: .0554274321} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidLower + position: {x: -.0356189571, y: .0650736615, z: .076234743} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidUpper + position: {x: -.0344068967, y: .10060814, z: .0802053064} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftInnerBrow + position: {x: -.0120626912, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftIOuterBrow + position: {x: -.0550398715, y: .114825293, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipUpper + position: {x: -.0145013221, y: -.00511181122, z: .094618842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftNostril + position: {x: -.0178999994, y: .0263128281, z: .0908674002} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: .0542399958, y: .033702828, z: .0594273992} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEye + position: {x: .020849999, y: .082502827, z: .0554273985} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidLower + position: {x: .0356200002, y: .065072827, z: .0762374029} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidUpper + position: {x: .0344099998, y: .100612827, z: .0802073926} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightInnerBrow + position: {x: .0120626874, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightIOuterBrow + position: {x: .0550400019, y: .114822827, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipUpper + position: {x: .0145013221, y: -.00510717137, z: .094617404} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightNostril + position: {x: .0178999994, y: .0263089053, z: .0908706188} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightShoulder + position: {x: .0382860154, y: .221621141, z: -.017063085} + rotation: {x: .156615213, y: .987296224, z: -.0141431456, w: -.0227564517} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightArm + position: {x: -.100501455, y: -2.49955224e-06, z: -5.15574072e-08} + rotation: {x: .128958732, y: .988591135, z: -.0591316372, w: .0506025925} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightForeArm + position: {x: .253428251, y: .00601135287, z: -.0167045239} + rotation: {x: .173002034, y: .0184975266, z: -.0264111329, w: .984393537} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHand + position: {x: .245373696, y: .0216417722, z: .00555046508} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex1 + position: {x: .0747694969, y: -.00124305359, z: .0343444981} + rotation: {x: -.00425036438, y: .162121609, z: -.0406839401, w: .985922575} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex2 + position: {x: .0370584019, y: .00072612107, z: .0145388944} + rotation: {x: -.0775998086, y: .0223485287, z: .0409148932, w: .995893955} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex3 + position: {x: .0252250377, y: -.00496646529, z: .0110121462} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: .0756476447, y: .00479140272, z: .0118531818} + rotation: {x: -.00183081278, y: .0143531328, z: -.0478143916, w: .998751462} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: .0438090637, y: .000194188149, z: .00645493623} + rotation: {x: -.01889815, y: -.0441117585, z: .0829459056, w: .995397985} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: .0330724716, y: -.00754753686, z: .00168984616} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: .0668033436, y: -.00199410878, z: -.0307561457} + rotation: {x: -.0619647875, y: -.25861457, z: -.0167126823, w: .963846266} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky2 + position: {x: .0285308417, y: -.001397143, z: -.0116237961} + rotation: {x: .029886473, y: .000801108778, z: -.0616784878, w: .997648239} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky3 + position: {x: .0214268602, y: -.000553508929, z: -.00851660781} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing1 + position: {x: .0705984756, y: .00245709647, z: -.00982145779} + rotation: {x: -.0148130022, y: -.115992621, z: -.0297175236, w: .992694914} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing2 + position: {x: .0428871848, y: -.00137538207, z: -.00494585792} + rotation: {x: .0208193418, y: -.0215571187, z: .0755800083, w: .99668926} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing3 + position: {x: .0295006037, y: -.00769293541, z: -.00462225592} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb1 + position: {x: .0146849155, y: -.0111049423, z: .0258580949} + rotation: {x: -.120005637, y: .0336783491, z: .148804903, w: .980979919} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb2 + position: {x: .0163739994, y: -.00528999977, z: .0234913602} + rotation: {x: -.0260625705, y: -.0966919959, z: -.00360832806, w: .994966567} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: .0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: e8914d097ece7cc48a83d5fccd4098c0, + type: 3} + animationType: 3 + additionalBone: 0 + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdleJumpUp.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdleJumpUp.fbx new file mode 100644 index 0000000..fd8beef --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdleJumpUp.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b4bd552a135146187d011c68c617554076e73cef41592313d665f794b67492 +size 467824 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdleJumpUp.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdleJumpUp.fbx.meta new file mode 100644 index 0000000..ae618a7 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidIdleJumpUp.fbx.meta @@ -0,0 +1,2385 @@ +fileFormatVersion: 2 +guid: 0d9d26e2162aa4d11ab075b34c029673 +ModelImporter: + serializedVersion: 18 + fileIDToRecycleName: + 100000: //RootNode + 100002: l_hipProxy_geo + 100004: l_kneeProxy_geo + 100006: l_ankleProxy_geo + 100008: l_ballProxy_geo + 100010: LToeBase_End2 + 100012: LeftToes + 100014: LeftFoot + 100016: LeftLeg + 100018: LeftUpLeg + 100020: pelvisProxy_geo + 100022: r_hipProxy_geo + 100024: r_kneeProxy_geo + 100026: r_ankleProxy_geo + 100028: r_ballProxy_geo + 100030: LToeBase_End3 + 100032: RightToes + 100034: RightFoot + 100036: RightLeg + 100038: RightUpLeg + 100040: spineProxy_geo + 100042: l_clavicleProxy_geo + 100044: l_shourderProxy_geo + 100046: l_erbowProxy_geo + 100048: l_wristProxy_geo + 100050: l_thumbProxy_01_geo + 100052: l_thumbProxy_02_geo + 100054: l_thumbProxy_03_geo + 100056: LeftHandThumb13 + 100058: LeftHandThumb3 + 100060: LeftHandThumb2 + 100062: LeftHandThumb1 + 100064: l_indexProxy_01_geo + 100066: l_indexProxy_02_geo + 100068: l_indexProxy_03_geo + 100070: LeftHandIndex13 + 100072: LeftHandIndex3 + 100074: LeftHandIndex2 + 100076: LeftHandIndex1 + 100078: l_middleProxy_01_geo + 100080: l_middleProxy_02_geo + 100082: l_middleProxy_03_geo + 100084: LeftHandMiddle13 + 100086: LeftHandMiddle3 + 100088: LeftHandMiddle2 + 100090: LeftHandMiddle1 + 100092: l_ringProxy_01_geo + 100094: l_ringProxy_02_geo + 100096: l_ringProxy_03_geo + 100098: LeftHandRing13 + 100100: LeftHandRing3 + 100102: LeftHandRing2 + 100104: LeftHandRing1 + 100106: l_pinkyProxy_01_geo + 100108: l_pinkyProxy_02_geo + 100110: l_pinkyProxy_03_geo + 100112: LeftHandPinky13 + 100114: LeftHandPinky3 + 100116: LeftHandPinky2 + 100118: LeftHandPinky1 + 100120: LeftHand + 100122: LeftForeArm + 100124: LeftArm + 100126: LeftShoulder + 100128: chestProxy_geo + 100130: r_clavicleProxy_geo + 100132: r_shourderProxy_geo + 100134: r_erbowProxy_geo + 100136: r_wristProxy_geo + 100138: r_thumbProxy_01_geo + 100140: r_thumbProxy_02_geo + 100142: r_thumbProxy_03_geo + 100144: LeftHandThumb17 + 100146: RightHandThumb3 + 100148: RightHandThumb2 + 100150: RightHandThumb1 + 100152: r_indexProxy_01_geo + 100154: r_indexProxy_02_geo + 100156: r_indexProxy_03_geo + 100158: LeftHandIndex17 + 100160: RightHandIndex3 + 100162: RightHandIndex2 + 100164: RightHandIndex1 + 100166: r_middleProxy_01_geo + 100168: r_middleProxy_02_geo + 100170: r_middleProxy_03_geo + 100172: LeftHandMiddle17 + 100174: RightHandMiddle3 + 100176: RightHandMiddle2 + 100178: RightHandMiddle1 + 100180: r_ringProxy_01_geo + 100182: r_ringProxy_02_geo + 100184: r_ringProxy_03_geo + 100186: LeftHandRing17 + 100188: RightHandRing3 + 100190: RightHandRing2 + 100192: RightHandRing1 + 100194: r_pinkyProxy_01_geo + 100196: r_pinkyProxy_02_geo + 100198: r_pinkyProxy_03_geo + 100200: LeftHandPinky17 + 100202: RightHandPinky3 + 100204: RightHandPinky2 + 100206: RightHandPinky1 + 100208: RightHand + 100210: RightForeArm + 100212: RightArm + 100214: RightShoulder + 100216: neckProxy_geo + 100218: UNI_01_Upper_teethProxy + 100220: headProxy_geo + 100222: RightLipUpper + 100224: RightNostril + 100226: RightCheek + 100228: RightEyelidLower + 100230: RightEyelidUpper + 100232: RightIOuterBrow + 100234: RightInnerBrow + 100236: LeftIOuterBrow + 100238: LeftInnerBrow + 100240: LeftEyelidUpper + 100242: LeftEyelidLower + 100244: LeftCheek + 100246: LeftNostril + 100248: LeftLipUpper + 100250: jawProxy_geo + 100252: UNI_01_Lower_teethProxy + 100254: LeftLipCorner + 100256: RightLipCorner + 100258: RightLipLower + 100260: JawEND + 100262: LeftLipLower + 100264: UNI_01_TongueTipProxy + 100266: TongueTip + 100268: UNI_01_TongueBaseProxy + 100270: TongueBack + 100272: Jaw + 100274: r_UNI_eye + 100276: RightEye + 100278: l_UNI_eye + 100280: LeftEye + 100282: HeadTop_End + 100284: Head + 100286: Neck + 100288: Chest + 100290: Spine + 100292: Hips + 100294: Reference + 400000: //RootNode + 400002: l_hipProxy_geo + 400004: l_kneeProxy_geo + 400006: l_ankleProxy_geo + 400008: l_ballProxy_geo + 400010: LToeBase_End2 + 400012: LeftToes + 400014: LeftFoot + 400016: LeftLeg + 400018: LeftUpLeg + 400020: pelvisProxy_geo + 400022: r_hipProxy_geo + 400024: r_kneeProxy_geo + 400026: r_ankleProxy_geo + 400028: r_ballProxy_geo + 400030: LToeBase_End3 + 400032: RightToes + 400034: RightFoot + 400036: RightLeg + 400038: RightUpLeg + 400040: spineProxy_geo + 400042: l_clavicleProxy_geo + 400044: l_shourderProxy_geo + 400046: l_erbowProxy_geo + 400048: l_wristProxy_geo + 400050: l_thumbProxy_01_geo + 400052: l_thumbProxy_02_geo + 400054: l_thumbProxy_03_geo + 400056: LeftHandThumb13 + 400058: LeftHandThumb3 + 400060: LeftHandThumb2 + 400062: LeftHandThumb1 + 400064: l_indexProxy_01_geo + 400066: l_indexProxy_02_geo + 400068: l_indexProxy_03_geo + 400070: LeftHandIndex13 + 400072: LeftHandIndex3 + 400074: LeftHandIndex2 + 400076: LeftHandIndex1 + 400078: l_middleProxy_01_geo + 400080: l_middleProxy_02_geo + 400082: l_middleProxy_03_geo + 400084: LeftHandMiddle13 + 400086: LeftHandMiddle3 + 400088: LeftHandMiddle2 + 400090: LeftHandMiddle1 + 400092: l_ringProxy_01_geo + 400094: l_ringProxy_02_geo + 400096: l_ringProxy_03_geo + 400098: LeftHandRing13 + 400100: LeftHandRing3 + 400102: LeftHandRing2 + 400104: LeftHandRing1 + 400106: l_pinkyProxy_01_geo + 400108: l_pinkyProxy_02_geo + 400110: l_pinkyProxy_03_geo + 400112: LeftHandPinky13 + 400114: LeftHandPinky3 + 400116: LeftHandPinky2 + 400118: LeftHandPinky1 + 400120: LeftHand + 400122: LeftForeArm + 400124: LeftArm + 400126: LeftShoulder + 400128: chestProxy_geo + 400130: r_clavicleProxy_geo + 400132: r_shourderProxy_geo + 400134: r_erbowProxy_geo + 400136: r_wristProxy_geo + 400138: r_thumbProxy_01_geo + 400140: r_thumbProxy_02_geo + 400142: r_thumbProxy_03_geo + 400144: LeftHandThumb17 + 400146: RightHandThumb3 + 400148: RightHandThumb2 + 400150: RightHandThumb1 + 400152: r_indexProxy_01_geo + 400154: r_indexProxy_02_geo + 400156: r_indexProxy_03_geo + 400158: LeftHandIndex17 + 400160: RightHandIndex3 + 400162: RightHandIndex2 + 400164: RightHandIndex1 + 400166: r_middleProxy_01_geo + 400168: r_middleProxy_02_geo + 400170: r_middleProxy_03_geo + 400172: LeftHandMiddle17 + 400174: RightHandMiddle3 + 400176: RightHandMiddle2 + 400178: RightHandMiddle1 + 400180: r_ringProxy_01_geo + 400182: r_ringProxy_02_geo + 400184: r_ringProxy_03_geo + 400186: LeftHandRing17 + 400188: RightHandRing3 + 400190: RightHandRing2 + 400192: RightHandRing1 + 400194: r_pinkyProxy_01_geo + 400196: r_pinkyProxy_02_geo + 400198: r_pinkyProxy_03_geo + 400200: LeftHandPinky17 + 400202: RightHandPinky3 + 400204: RightHandPinky2 + 400206: RightHandPinky1 + 400208: RightHand + 400210: RightForeArm + 400212: RightArm + 400214: RightShoulder + 400216: neckProxy_geo + 400218: UNI_01_Upper_teethProxy + 400220: headProxy_geo + 400222: RightLipUpper + 400224: RightNostril + 400226: RightCheek + 400228: RightEyelidLower + 400230: RightEyelidUpper + 400232: RightIOuterBrow + 400234: RightInnerBrow + 400236: LeftIOuterBrow + 400238: LeftInnerBrow + 400240: LeftEyelidUpper + 400242: LeftEyelidLower + 400244: LeftCheek + 400246: LeftNostril + 400248: LeftLipUpper + 400250: jawProxy_geo + 400252: UNI_01_Lower_teethProxy + 400254: LeftLipCorner + 400256: RightLipCorner + 400258: RightLipLower + 400260: JawEND + 400262: LeftLipLower + 400264: UNI_01_TongueTipProxy + 400266: TongueTip + 400268: UNI_01_TongueBaseProxy + 400270: TongueBack + 400272: Jaw + 400274: r_UNI_eye + 400276: RightEye + 400278: l_UNI_eye + 400280: LeftEye + 400282: HeadTop_End + 400284: Head + 400286: Neck + 400288: Chest + 400290: Spine + 400292: Hips + 400294: Reference + 2300000: l_hipProxy_geo + 2300002: l_kneeProxy_geo + 2300004: l_ankleProxy_geo + 2300006: l_ballProxy_geo + 2300008: pelvisProxy_geo + 2300010: r_hipProxy_geo + 2300012: r_kneeProxy_geo + 2300014: r_ankleProxy_geo + 2300016: r_ballProxy_geo + 2300018: spineProxy_geo + 2300020: l_clavicleProxy_geo + 2300022: l_shourderProxy_geo + 2300024: l_erbowProxy_geo + 2300026: l_wristProxy_geo + 2300028: l_thumbProxy_01_geo + 2300030: l_thumbProxy_02_geo + 2300032: l_thumbProxy_03_geo + 2300034: l_indexProxy_01_geo + 2300036: l_indexProxy_02_geo + 2300038: l_indexProxy_03_geo + 2300040: l_middleProxy_01_geo + 2300042: l_middleProxy_02_geo + 2300044: l_middleProxy_03_geo + 2300046: l_ringProxy_01_geo + 2300048: l_ringProxy_02_geo + 2300050: l_ringProxy_03_geo + 2300052: l_pinkyProxy_01_geo + 2300054: l_pinkyProxy_02_geo + 2300056: l_pinkyProxy_03_geo + 2300058: chestProxy_geo + 2300060: r_clavicleProxy_geo + 2300062: r_shourderProxy_geo + 2300064: r_erbowProxy_geo + 2300066: r_wristProxy_geo + 2300068: r_thumbProxy_01_geo + 2300070: r_thumbProxy_02_geo + 2300072: r_thumbProxy_03_geo + 2300074: r_indexProxy_01_geo + 2300076: r_indexProxy_02_geo + 2300078: r_indexProxy_03_geo + 2300080: r_middleProxy_01_geo + 2300082: r_middleProxy_02_geo + 2300084: r_middleProxy_03_geo + 2300086: r_ringProxy_01_geo + 2300088: r_ringProxy_02_geo + 2300090: r_ringProxy_03_geo + 2300092: r_pinkyProxy_01_geo + 2300094: r_pinkyProxy_02_geo + 2300096: r_pinkyProxy_03_geo + 2300098: neckProxy_geo + 2300100: UNI_01_Upper_teethProxy + 2300102: headProxy_geo + 2300104: jawProxy_geo + 2300106: UNI_01_Lower_teethProxy + 2300108: UNI_01_TongueTipProxy + 2300110: UNI_01_TongueBaseProxy + 2300112: r_UNI_eye + 2300114: l_UNI_eye + 3300000: l_hipProxy_geo + 3300002: l_kneeProxy_geo + 3300004: l_ankleProxy_geo + 3300006: l_ballProxy_geo + 3300008: pelvisProxy_geo + 3300010: r_hipProxy_geo + 3300012: r_kneeProxy_geo + 3300014: r_ankleProxy_geo + 3300016: r_ballProxy_geo + 3300018: spineProxy_geo + 3300020: l_clavicleProxy_geo + 3300022: l_shourderProxy_geo + 3300024: l_erbowProxy_geo + 3300026: l_wristProxy_geo + 3300028: l_thumbProxy_01_geo + 3300030: l_thumbProxy_02_geo + 3300032: l_thumbProxy_03_geo + 3300034: l_indexProxy_01_geo + 3300036: l_indexProxy_02_geo + 3300038: l_indexProxy_03_geo + 3300040: l_middleProxy_01_geo + 3300042: l_middleProxy_02_geo + 3300044: l_middleProxy_03_geo + 3300046: l_ringProxy_01_geo + 3300048: l_ringProxy_02_geo + 3300050: l_ringProxy_03_geo + 3300052: l_pinkyProxy_01_geo + 3300054: l_pinkyProxy_02_geo + 3300056: l_pinkyProxy_03_geo + 3300058: chestProxy_geo + 3300060: r_clavicleProxy_geo + 3300062: r_shourderProxy_geo + 3300064: r_erbowProxy_geo + 3300066: r_wristProxy_geo + 3300068: r_thumbProxy_01_geo + 3300070: r_thumbProxy_02_geo + 3300072: r_thumbProxy_03_geo + 3300074: r_indexProxy_01_geo + 3300076: r_indexProxy_02_geo + 3300078: r_indexProxy_03_geo + 3300080: r_middleProxy_01_geo + 3300082: r_middleProxy_02_geo + 3300084: r_middleProxy_03_geo + 3300086: r_ringProxy_01_geo + 3300088: r_ringProxy_02_geo + 3300090: r_ringProxy_03_geo + 3300092: r_pinkyProxy_01_geo + 3300094: r_pinkyProxy_02_geo + 3300096: r_pinkyProxy_03_geo + 3300098: neckProxy_geo + 3300100: UNI_01_Upper_teethProxy + 3300102: headProxy_geo + 3300104: jawProxy_geo + 3300106: UNI_01_Lower_teethProxy + 3300108: UNI_01_TongueTipProxy + 3300110: UNI_01_TongueBaseProxy + 3300112: r_UNI_eye + 3300114: l_UNI_eye + 4300000: l_UNI_eye + 4300002: r_UNI_eye + 4300004: UNI_01_TongueBaseProxy + 4300006: UNI_01_TongueTipProxy + 4300008: UNI_01_Lower_teethProxy + 4300010: jawProxy_geo + 4300012: headProxy_geo + 4300014: UNI_01_Upper_teethProxy + 4300016: neckProxy_geo + 4300018: r_pinkyProxy_03_geo + 4300020: r_pinkyProxy_02_geo + 4300022: r_pinkyProxy_01_geo + 4300024: r_ringProxy_03_geo + 4300026: r_ringProxy_02_geo + 4300028: r_ringProxy_01_geo + 4300030: r_middleProxy_03_geo + 4300032: r_middleProxy_02_geo + 4300034: r_middleProxy_01_geo + 4300036: r_indexProxy_03_geo + 4300038: r_indexProxy_02_geo + 4300040: r_indexProxy_01_geo + 4300042: r_thumbProxy_03_geo + 4300044: r_thumbProxy_02_geo + 4300046: r_thumbProxy_01_geo + 4300048: r_wristProxy_geo + 4300050: r_erbowProxy_geo + 4300052: r_shourderProxy_geo + 4300054: r_clavicleProxy_geo + 4300056: chestProxy_geo + 4300058: l_pinkyProxy_03_geo + 4300060: l_pinkyProxy_02_geo + 4300062: l_pinkyProxy_01_geo + 4300064: l_ringProxy_03_geo + 4300066: l_ringProxy_02_geo + 4300068: l_ringProxy_01_geo + 4300070: l_middleProxy_03_geo + 4300072: l_middleProxy_02_geo + 4300074: l_middleProxy_01_geo + 4300076: l_indexProxy_03_geo + 4300078: l_indexProxy_02_geo + 4300080: l_indexProxy_01_geo + 4300082: l_thumbProxy_03_geo + 4300084: l_thumbProxy_02_geo + 4300086: l_thumbProxy_01_geo + 4300088: l_wristProxy_geo + 4300090: l_erbowProxy_geo + 4300092: l_shourderProxy_geo + 4300094: l_clavicleProxy_geo + 4300096: spineProxy_geo + 4300098: r_ballProxy_geo + 4300100: r_ankleProxy_geo + 4300102: r_kneeProxy_geo + 4300104: r_hipProxy_geo + 4300106: pelvisProxy_geo + 4300108: l_ballProxy_geo + 4300110: l_ankleProxy_geo + 4300112: l_kneeProxy_geo + 4300114: l_hipProxy_geo + 7400000: __preview___207_Idle_JumpUpMedium_NoHands1Step_Idle + 7400002: HumanoidIdleJumpUp + 7400004: HumanoidFall + 7400006: HumanoidJumpUp + 7400008: HumanoidMidAir + 9500000: //RootNode + 11100000: //RootNode + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 3 + bakeSimulation: 0 + optimizeGameObjects: 0 + motionNodeName: + pivotNodeName: + animationCompression: 1 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: HumanoidIdleJumpUp + takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle + firstFrame: 56 + lastFrame: 233 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 0 + loopBlend: 0 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidFall + takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle + firstFrame: 127 + lastFrame: 129 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: Reference + weight: 1 + - path: Reference/Hips + weight: 1 + - path: Reference/Hips/LeftUpLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2 + weight: 0 + - path: Reference/Hips/pelvisProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/r_hipProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3 + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo + weight: 0 + - path: Reference/Hips/Spine + weight: 1 + - path: Reference/Hips/Spine/Chest + weight: 1 + - path: Reference/Hips/Spine/Chest/chestProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13 + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/spineProxy_geo + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidJumpUp + takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle + firstFrame: 125 + lastFrame: 127 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: Reference + weight: 1 + - path: Reference/Hips + weight: 1 + - path: Reference/Hips/LeftUpLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2 + weight: 0 + - path: Reference/Hips/pelvisProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/r_hipProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3 + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo + weight: 0 + - path: Reference/Hips/Spine + weight: 1 + - path: Reference/Hips/Spine/Chest + weight: 1 + - path: Reference/Hips/Spine/Chest/chestProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13 + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/spineProxy_geo + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidMidAir + takeName: _207_Idle_JumpUpMedium_NoHands1Step_Idle + firstFrame: 131 + lastFrame: 133 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: Reference + weight: 1 + - path: Reference/Hips + weight: 1 + - path: Reference/Hips/LeftUpLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/l_hipProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/l_kneeProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/l_ankleProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/l_ballProxy_geo + weight: 0 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2 + weight: 0 + - path: Reference/Hips/pelvisProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/r_hipProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/r_kneeProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/r_ankleProxy_geo + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3 + weight: 0 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes/r_ballProxy_geo + weight: 0 + - path: Reference/Hips/Spine + weight: 1 + - path: Reference/Hips/Spine/Chest + weight: 1 + - path: Reference/Hips/Spine/Chest/chestProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/l_clavicleProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/l_shourderProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/l_erbowProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/l_wristProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/l_indexProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/l_indexProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/l_indexProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/l_middleProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/l_middleProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/l_middleProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/l_pinkyProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/l_pinkyProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/l_pinkyProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/l_ringProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/l_ringProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/l_ringProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13 + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/l_thumbProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/l_thumbProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/l_thumbProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13 + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/headProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/HeadTop_End + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/jawProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/UNI_01_TongueBaseProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueTip/UNI_01_TongueTipProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/UNI_01_Lower_teethProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/l_UNI_eye + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/r_UNI_eye + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/UNI_01_Upper_teethProxy + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/neckProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/r_clavicleProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/r_shourderProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/r_erbowProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/r_wristProxy_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/r_indexProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/r_indexProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/r_indexProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/r_middleProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/r_middleProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/r_middleProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/r_pinkyProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/r_pinkyProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/r_pinkyProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/r_ringProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/r_ringProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/r_ringProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/r_thumbProxy_01_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/r_thumbProxy_02_geo + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17 + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/r_thumbProxy_03_geo + weight: 0 + - path: Reference/Hips/Spine/spineProxy_geo + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: .00999999978 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: IdleJumpAndFall(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: 0, y: .968897998, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftUpLeg + position: {x: -.0754494965, y: -.0456640199, z: 3.5527136e-17} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLeg + position: {x: -.0205504987, y: -.409129977, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftFoot + position: {x: -.00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftToes + position: {x: -.00748699997, y: -.0731673017, z: .145427123} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LToeBase_End2 + position: {x: .0126400003, y: -.0131357787, z: .0358933695} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightUpLeg + position: {x: .0754495338, y: -.0456639901, z: -7.1054272e-17} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLeg + position: {x: .0205504671, y: -.409130007, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightFoot + position: {x: .00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightToes + position: {x: .00748699997, y: -.0731673017, z: .145427495} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LToeBase_End3 + position: {x: -.0126400003, y: -.0131357787, z: .0358929969} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Spine + position: {x: -3.55271347e-16, y: .0922631845, z: .0157713313} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Chest + position: {x: -0, y: .162540287, z: -.00165605545} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftShoulder + position: {x: -.0382859968, y: .221622497, z: -.017063085} + rotation: {x: .0136282137, y: -.00334516051, z: .160349578, w: .98696053} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftArm + position: {x: -.100502051, y: 8.52651264e-16, z: -1.91846525e-15} + rotation: {x: .375911772, y: -.0545923635, z: -.131713077, w: .915620983} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftForeArm + position: {x: -.254049301, y: -5.6772363e-14, z: -7.74633667e-13} + rotation: {x: -.0333359092, y: .0206441227, z: -.0173483491, w: .99908036} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHand + position: {x: -.24638927, y: -1.34519945e-12, z: -1.48500223e-11} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -.0751257986, y: -.00784140453, z: .0326526426} + rotation: {x: -.0308350436, y: .0179687776, z: .0871932581, w: .995551944} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036} + rotation: {x: -.0689338297, y: .0147136617, z: .0279492512, w: .997121096} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -.0279684775, y: -6.28308783e-09, z: -5.17217202e-08} + rotation: {x: -1.98371708e-07, y: .07579723, z: .08633665, w: .99337852} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex13 + position: {x: -.0186619665, y: .00437385263, z: -.00384002505} + rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -.0760238245, y: -.00188513438, z: .0101412293} + rotation: {x: -.0157175697, y: .0537212379, z: .0864731297, w: .994680524} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -.0442804359, y: 4.79887376e-06, z: -.000425400125} + rotation: {x: -.0084464848, y: -.00629218388, z: .0269988962, w: .999579966} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -.0339648277, y: -1.2198452e-08, z: 3.7516088e-09} + rotation: {x: 0, y: .0085622156, z: .0601554625, w: .998152316} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle13 + position: {x: -.0196715724, y: .00392557262, z: -.000558814383} + rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -.0656599477, y: -.00782510638, z: -.0322512463} + rotation: {x: -.0464278534, y: .075739637, z: .0861574858, w: .992312968} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775} + rotation: {x: .0492938273, y: -.0217208154, z: .0329489894, w: .998004377} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -.0230640266, y: -6.40258258e-06, z: 1.8330093e-08} + rotation: {x: 1.6131904e-05, y: -.0589529239, z: .0381713584, w: .997530699} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky13 + position: {x: -.0169719923, y: .00202882662, z: .00314032286} + rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -.0703021064, y: -.00374530931, z: -.0114117917} + rotation: {x: -.0137463454, y: .0746484697, z: .0850590393, w: .993480563} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837} + rotation: {x: .0193215031, y: -.0256576315, z: .0290472321, w: .999061942} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -.0308355652, y: 7.67334946e-11, z: -1.64974168e-08} + rotation: {x: 2.46800482e-08, y: -.0178757682, z: .0421800427, w: .998950183} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing13 + position: {x: -.0205416381, y: .00325422082, z: .00137918338} + rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -.0142312413, y: -.0123778246, z: .0255316682} + rotation: {x: -.18747139, y: -.0952679813, z: -.186436191, w: .959697902} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -.0163739994, y: -.00528999977, z: .0234914087} + rotation: {x: -.0260623731, y: .0966885313, z: .00360709149, w: .994966924} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -.0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: .00545273209, y: .000443113851, z: .00682628015, w: .999961734} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb13 + position: {x: -.031868957, y: -.0052999449, z: .0258005001} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: 4.26325632e-16, y: .259009302, z: -.0324132554} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Head + position: {x: 1.27897687e-15, y: .0830703825, z: .0113267815} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: HeadTop_End + position: {x: -5.17045827e-18, y: .188178778, z: .0121086892} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Jaw + position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431} + rotation: {x: .219240054, y: -0, z: -0, w: .975670993} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: JawEND + position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipCorner + position: {x: -.032843262, y: -.01657876, z: .0661217645} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipLower + position: {x: -.0142508168, y: -.0216887593, z: .0822406337} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipCorner + position: {x: .0328399986, y: -.01657876, z: .0661187842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipLower + position: {x: .0142508168, y: -.0216887593, z: .0822387859} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -.0542440265, y: .0337019488, z: .0594304018} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEye + position: {x: -.0208482333, y: .0825027004, z: .0554274321} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidLower + position: {x: -.0356189571, y: .0650736615, z: .076234743} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidUpper + position: {x: -.0344068967, y: .10060814, z: .0802053064} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftInnerBrow + position: {x: -.0120626912, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftIOuterBrow + position: {x: -.0550398715, y: .114825293, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipUpper + position: {x: -.0145013221, y: -.00511181122, z: .094618842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftNostril + position: {x: -.0178999994, y: .0263128281, z: .0908674002} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: .0542399958, y: .033702828, z: .0594273992} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEye + position: {x: .020849999, y: .082502827, z: .0554273985} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidLower + position: {x: .0356200002, y: .065072827, z: .0762374029} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidUpper + position: {x: .0344099998, y: .100612827, z: .0802073926} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightInnerBrow + position: {x: .0120626874, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightIOuterBrow + position: {x: .0550400019, y: .114822827, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipUpper + position: {x: .0145013221, y: -.00510717137, z: .094617404} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightNostril + position: {x: .0178999994, y: .0263089053, z: .0908706188} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightShoulder + position: {x: .0382860154, y: .221621141, z: -.017063085} + rotation: {x: .156456366, y: .987114966, z: .0289233401, w: .0169999544} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightArm + position: {x: -.100501455, y: -2.49955224e-06, z: -5.15574072e-08} + rotation: {x: .105774529, y: .952139974, z: -.285703897, w: -.0247889012} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightForeArm + position: {x: .253428251, y: .00601135287, z: -.0167045239} + rotation: {x: .00553037226, y: .0252947882, z: -.014007926, w: .999566615} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHand + position: {x: .245373696, y: .0216417722, z: .00555046508} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex1 + position: {x: .0747694969, y: -.00124305359, z: .0343444981} + rotation: {x: -.0270000603, y: .134704068, z: -.0601686388, w: .988688886} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex2 + position: {x: .0370584019, y: .00072612107, z: .0145388944} + rotation: {x: -.0803579837, y: .0230234303, z: .0437483452, w: .995539427} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex3 + position: {x: .0252250377, y: -.00496646529, z: .0110121462} + rotation: {x: .0205338672, y: -.0777156726, z: -.0820851624, w: .99337846} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex17 + position: {x: .019119978, y: .000846308249, z: .00398164755} + rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: .0756476447, y: .00479140272, z: .0118531818} + rotation: {x: -.0139238043, y: .00904238503, z: -.0464301668, w: .998783588} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: .0438090637, y: .000194188149, z: .00645493623} + rotation: {x: -.0214388501, y: -.0445624664, z: .0864190832, w: .99503082} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: .0330724716, y: -.00754753686, z: .00168984616} + rotation: {x: .00108970981, y: -.00868779328, z: -.0601257607, w: .998152435} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle17 + position: {x: .0200548954, y: -.000547108881, z: .000442590448} + rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: .0668033436, y: -.00199410878, z: -.0307561457} + rotation: {x: -.0533693507, y: -.255000859, z: -.0125746699, w: .96538502} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky2 + position: {x: .0285308417, y: -.001397143, z: -.0116237961} + rotation: {x: .0333432369, y: .00105855579, z: -.0586744659, w: .997719646} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky3 + position: {x: .0214268602, y: -.000553508929, z: -.00851660781} + rotation: {x: -.0126836589, y: .0591125637, z: -.0357522406, w: .997530282} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky17 + position: {x: .016975116, y: .00161137758, z: -.00335797085} + rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing1 + position: {x: .0705984756, y: .00245709647, z: -.00982145779} + rotation: {x: -.014535781, y: -.117996089, z: -.0257448405, w: .992573857} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing2 + position: {x: .0428871848, y: -.00137538207, z: -.00494585792} + rotation: {x: .0220796783, y: -.0216961354, z: .0796110034, w: .996345222} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing3 + position: {x: .0295006037, y: -.00769293541, z: -.00462225592} + rotation: {x: -.00186281116, y: .0181142092, z: -.0420369543, w: .998950124} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing17 + position: {x: .0206709336, y: -.00200043293, z: -.00177803368} + rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb1 + position: {x: .0146849155, y: -.0111049423, z: .0258580949} + rotation: {x: -.184676751, y: .0523882434, z: .193273544, w: .962182641} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb2 + position: {x: .0163739994, y: -.00528999977, z: .0234913602} + rotation: {x: -.0260629468, y: -.0966878831, z: -.00360650336, w: .994966984} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: .0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: .00545433257, y: -.000443138037, z: -.00682824804, w: .999961793} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb17 + position: {x: .0318690389, y: -.00529994583, z: .0258005001} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: d89ea37480b6d75458aa38843e9688dc, + type: 3} + animationType: 3 + additionalBone: 0 + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidJumpAndFall.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidJumpAndFall.fbx new file mode 100644 index 0000000..c18152c --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidJumpAndFall.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff1d45c9ae4b5d5eb6cf9cce87116f5dabdb28b72a4b1bb275e5efce6b3cf2e0 +size 957744 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidJumpAndFall.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidJumpAndFall.fbx.meta new file mode 100644 index 0000000..c7b736d --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidJumpAndFall.fbx.meta @@ -0,0 +1,1838 @@ +fileFormatVersion: 2 +guid: 51dd2e4c869794f75a0df7d54b210214 +ModelImporter: + serializedVersion: 18 + fileIDToRecycleName: + 100000: Chest + 100002: Geo_grp + 100004: Head + 100006: Hips + 100008: //RootNode + 100010: Jaw + 100012: JawEND + 100014: Le_Eye_Mesh + 100016: LeftArm + 100018: LeftCheek + 100020: LeftEye + 100022: LeftEyelidLower + 100024: LeftEyelidUpper + 100026: LeftFoot + 100028: LeftForeArm + 100030: LeftHand + 100032: LeftHandIndex1 + 100034: LeftHandIndex2 + 100036: LeftHandIndex3 + 100038: LeftHandMiddle1 + 100040: LeftHandMiddle2 + 100042: LeftHandMiddle3 + 100044: LeftHandPinky1 + 100046: LeftHandPinky2 + 100048: LeftHandPinky3 + 100050: LeftHandRing1 + 100052: LeftHandRing2 + 100054: LeftHandRing3 + 100056: LeftHandThumb1 + 100058: LeftHandThumb2 + 100060: LeftHandThumb3 + 100062: LeftInnerBrow + 100064: LeftIOuterBrow + 100066: LeftLeg + 100068: LeftLipCorner + 100070: LeftLipLower + 100072: LeftLipUpper + 100074: LeftNostril + 100076: LeftShoulder + 100078: LeftToes + 100080: LeftUpLeg + 100082: Lw_Teeth_Mesh + 100084: Neck + 100086: Reference + 100088: Ri_Eye_Mesh + 100090: RightArm + 100092: RightCheek + 100094: RightEye + 100096: RightEyelidLower + 100098: RightEyelidUpper + 100100: RightFoot + 100102: RightForeArm + 100104: RightHand + 100106: RightHandIndex1 + 100108: RightHandIndex2 + 100110: RightHandIndex3 + 100112: RightHandMiddle1 + 100114: RightHandMiddle2 + 100116: RightHandMiddle3 + 100118: RightHandPinky1 + 100120: RightHandPinky2 + 100122: RightHandPinky3 + 100124: RightHandRing1 + 100126: RightHandRing2 + 100128: RightHandRing3 + 100130: RightHandThumb1 + 100132: RightHandThumb2 + 100134: RightHandThumb3 + 100136: RightInnerBrow + 100138: RightIOuterBrow + 100140: RightLeg + 100142: RightLipCorner + 100144: RightLipLower + 100146: RightLipUpper + 100148: RightNostril + 100150: RightShoulder + 100152: RightToes + 100154: RightUpLeg + 100156: Spine + 100158: TongueBack + 100160: TongueTip + 100162: Tounge_Mesh + 100164: Unity_Body_Mesh + 100166: Up_Teeth_Mesh + 400000: Chest + 400002: Geo_grp + 400004: Head + 400006: Hips + 400008: //RootNode + 400010: Jaw + 400012: JawEND + 400014: Le_Eye_Mesh + 400016: LeftArm + 400018: LeftCheek + 400020: LeftEye + 400022: LeftEyelidLower + 400024: LeftEyelidUpper + 400026: LeftFoot + 400028: LeftForeArm + 400030: LeftHand + 400032: LeftHandIndex1 + 400034: LeftHandIndex2 + 400036: LeftHandIndex3 + 400038: LeftHandMiddle1 + 400040: LeftHandMiddle2 + 400042: LeftHandMiddle3 + 400044: LeftHandPinky1 + 400046: LeftHandPinky2 + 400048: LeftHandPinky3 + 400050: LeftHandRing1 + 400052: LeftHandRing2 + 400054: LeftHandRing3 + 400056: LeftHandThumb1 + 400058: LeftHandThumb2 + 400060: LeftHandThumb3 + 400062: LeftInnerBrow + 400064: LeftIOuterBrow + 400066: LeftLeg + 400068: LeftLipCorner + 400070: LeftLipLower + 400072: LeftLipUpper + 400074: LeftNostril + 400076: LeftShoulder + 400078: LeftToes + 400080: LeftUpLeg + 400082: Lw_Teeth_Mesh + 400084: Neck + 400086: Reference + 400088: Ri_Eye_Mesh + 400090: RightArm + 400092: RightCheek + 400094: RightEye + 400096: RightEyelidLower + 400098: RightEyelidUpper + 400100: RightFoot + 400102: RightForeArm + 400104: RightHand + 400106: RightHandIndex1 + 400108: RightHandIndex2 + 400110: RightHandIndex3 + 400112: RightHandMiddle1 + 400114: RightHandMiddle2 + 400116: RightHandMiddle3 + 400118: RightHandPinky1 + 400120: RightHandPinky2 + 400122: RightHandPinky3 + 400124: RightHandRing1 + 400126: RightHandRing2 + 400128: RightHandRing3 + 400130: RightHandThumb1 + 400132: RightHandThumb2 + 400134: RightHandThumb3 + 400136: RightInnerBrow + 400138: RightIOuterBrow + 400140: RightLeg + 400142: RightLipCorner + 400144: RightLipLower + 400146: RightLipUpper + 400148: RightNostril + 400150: RightShoulder + 400152: RightToes + 400154: RightUpLeg + 400156: Spine + 400158: TongueBack + 400160: TongueTip + 400162: Tounge_Mesh + 400164: Unity_Body_Mesh + 400166: Up_Teeth_Mesh + 2300000: Le_Eye_Mesh + 2300002: Ri_Eye_Mesh + 3300000: Le_Eye_Mesh + 3300002: Ri_Eye_Mesh + 4300000: Le_Eye_Mesh + 4300002: Ri_Eye_Mesh + 4300004: Unity_Body_Mesh + 4300006: Up_Teeth_Mesh + 4300008: Lw_Teeth_Mesh + 4300010: Tounge_Mesh + 7400000: HumanoidJumpForwardLeft + 7400002: HumanoidFallLeft + 7400004: HumanoidJumpForwardRight + 7400006: HumanoidFallRight + 9500000: //RootNode + 13700000: Lw_Teeth_Mesh + 13700002: Tounge_Mesh + 13700004: Unity_Body_Mesh + 13700006: Up_Teeth_Mesh + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + optimizeGameObjects: 0 + motionNodeName: + pivotNodeName: + animationCompression: 1 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: HumanoidJumpForwardLeft + takeName: idle_jumpFwd_idle_tk01 + firstFrame: 350 + lastFrame: 352 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: Geo_grp + weight: 0 + - path: Geo_grp/Lw_Teeth_Mesh + weight: 0 + - path: Geo_grp/Tounge_Mesh + weight: 0 + - path: Geo_grp/Unity_Body_Mesh + weight: 0 + - path: Geo_grp/Up_Teeth_Mesh + weight: 0 + - path: Reference + weight: 1 + - path: Reference/Hips + weight: 1 + - path: Reference/Hips/LeftUpLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes + weight: 1 + - path: Reference/Hips/RightUpLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes + weight: 1 + - path: Reference/Hips/Spine + weight: 1 + - path: Reference/Hips/Spine/Chest + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3 + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/TongueTip + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/Le_Eye_Mesh + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/Ri_Eye_Mesh + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3 + weight: 1 + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidFallLeft + takeName: idle_jumpFwd_idle_tk01 + firstFrame: 355 + lastFrame: 357 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 1 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: Geo_grp + weight: 0 + - path: Geo_grp/Lw_Teeth_Mesh + weight: 0 + - path: Geo_grp/Tounge_Mesh + weight: 0 + - path: Geo_grp/Unity_Body_Mesh + weight: 0 + - path: Geo_grp/Up_Teeth_Mesh + weight: 0 + - path: Reference + weight: 1 + - path: Reference/Hips + weight: 1 + - path: Reference/Hips/LeftUpLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes + weight: 1 + - path: Reference/Hips/RightUpLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes + weight: 1 + - path: Reference/Hips/Spine + weight: 1 + - path: Reference/Hips/Spine/Chest + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3 + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/TongueTip + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/Le_Eye_Mesh + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/Ri_Eye_Mesh + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3 + weight: 1 + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidJumpForwardRight + takeName: idle_jumpFwd_idle_tk01 + firstFrame: 350 + lastFrame: 352 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 1 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: Geo_grp + weight: 0 + - path: Geo_grp/Lw_Teeth_Mesh + weight: 0 + - path: Geo_grp/Tounge_Mesh + weight: 0 + - path: Geo_grp/Unity_Body_Mesh + weight: 0 + - path: Geo_grp/Up_Teeth_Mesh + weight: 0 + - path: Reference + weight: 1 + - path: Reference/Hips + weight: 1 + - path: Reference/Hips/LeftUpLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes + weight: 1 + - path: Reference/Hips/RightUpLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes + weight: 1 + - path: Reference/Hips/Spine + weight: 1 + - path: Reference/Hips/Spine/Chest + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3 + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/TongueTip + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/Le_Eye_Mesh + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/Ri_Eye_Mesh + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3 + weight: 1 + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidFallRight + takeName: idle_jumpFwd_idle_tk01 + firstFrame: 355 + lastFrame: 357 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 1 + keepOriginalPositionXZ: 0 + heightFromFeet: 0 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: Geo_grp + weight: 0 + - path: Geo_grp/Lw_Teeth_Mesh + weight: 0 + - path: Geo_grp/Tounge_Mesh + weight: 0 + - path: Geo_grp/Unity_Body_Mesh + weight: 0 + - path: Geo_grp/Up_Teeth_Mesh + weight: 0 + - path: Reference + weight: 1 + - path: Reference/Hips + weight: 1 + - path: Reference/Hips/LeftUpLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot + weight: 1 + - path: Reference/Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes + weight: 1 + - path: Reference/Hips/RightUpLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot + weight: 1 + - path: Reference/Hips/RightUpLeg/RightLeg/RightFoot/RightToes + weight: 1 + - path: Reference/Hips/Spine + weight: 1 + - path: Reference/Hips/Spine/Chest + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3 + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/JawEND + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/Jaw/TongueBack/TongueTip + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEye/Le_Eye_Mesh + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/LeftNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightCheek + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye + weight: 1 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEye/Ri_Eye_Mesh + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidLower + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightEyelidUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightInnerBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightIOuterBrow + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightLipUpper + weight: 0 + - path: Reference/Hips/Spine/Chest/Neck/Head/RightNostril + weight: 0 + - path: Reference/Hips/Spine/Chest/RightShoulder + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2 + weight: 1 + - path: Reference/Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3 + weight: 1 + maskType: 0 + maskSource: {instanceID: 0} + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: .00999999978 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: HumanoidJumpAndFall(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: -1.86264515e-08, y: .960032225, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftUpLeg + position: {x: -.0754494965, y: -.0456640199, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLeg + position: {x: -.0205504987, y: -.409129977, z: .00717136543} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftFoot + position: {x: -.00515299942, y: -.423155904, z: -.0120320888} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftToes + position: {x: -.00748699997, y: -.0731673017, z: .145427123} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightUpLeg + position: {x: .0754495338, y: -.0456639901, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLeg + position: {x: .0205504671, y: -.409130007, z: .00717136543} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightFoot + position: {x: .00515299942, y: -.423155904, z: -.0120320888} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightToes + position: {x: .00748699997, y: -.0731673017, z: .145427495} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Spine + position: {x: -0, y: .0922631845, z: .0157713313} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Chest + position: {x: -0, y: .162540287, z: .0218507219} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftShoulder + position: {x: -.0382435061, y: .192178085, z: -.017063085} + rotation: {x: -.00121677481, y: -.00917607173, z: .327255577, w: .944890559} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftArm + position: {x: -.0835747719, y: .036097575, z: 0} + rotation: {x: .208304122, y: -.055566486, z: -.310117185, w: .925931454} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftForeArm + position: {x: -.254049301, y: 0, z: 0} + rotation: {x: .00065340061, y: .0216908138, z: -.0116735483, w: .999696374} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHand + position: {x: -.24638927, y: 0, z: 0} + rotation: {x: .00174571283, y: -.0316711254, z: .0242843106, w: .999201775} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -.0751257986, y: -.00784140453, z: .0326526426} + rotation: {x: -.00211892044, y: .0802574381, z: .0175381862, w: .996617615} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036} + rotation: {x: .000501934439, y: .0154705783, z: .0404105186, w: .999063313} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -.0279684775, y: -6.28122399e-09, z: -5.17186614e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -.0760238245, y: -.00188513438, z: .0101412293} + rotation: {x: -.000768873433, y: .0333210826, z: .020907538, w: .999225736} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -.0442804359, y: 4.79887422e-06, z: -.000425400125} + rotation: {x: -.00136209256, y: -.0191520527, z: .0378838927, w: .999097645} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -.0339648277, y: -1.21979289e-08, z: 3.75648268e-09} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -.0656599477, y: -.00782510638, z: -.0322512463} + rotation: {x: -.000912672316, y: .0121611441, z: .0212233849, w: .999700367} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775} + rotation: {x: -.000226802338, y: -.00969417952, z: .000434517511, w: .999952912} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -.0230640266, y: -6.40258077e-06, z: 1.8332095e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -.0703021064, y: -.00374530931, z: -.0114117917} + rotation: {x: -.000324145716, y: .0115975412, z: .0247372258, w: .999626696} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837} + rotation: {x: -.00120344944, y: -.0231133532, z: .0409869365, w: .998891592} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -.0308355652, y: 7.71049682e-11, z: -1.64932707e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -.0142312413, y: -.0123778246, z: .0255316682} + rotation: {x: -.1395832, y: -.0351250619, z: -.0833107978, w: .98607409} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -.0163739994, y: -.00528999977, z: .0234914087} + rotation: {x: -.026061492, y: .0966902077, z: .00360864005, w: .994966805} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -.0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: -0, y: .235723898, z: -.0324132554} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Head + position: {x: -0, y: .106355801, z: .0113267815} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Jaw + position: {x: -0, y: .0111267585, z: .0103275431} + rotation: {x: .219240054, y: -0, z: -0, w: .975670993} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: JawEND + position: {x: -0, y: -.0482887588, z: .071851708} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipCorner + position: {x: -.032843262, y: -.01657876, z: .0661217645} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipLower + position: {x: -.0142508168, y: -.0216887593, z: .0822406337} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipCorner + position: {x: .0328399986, y: -.01657876, z: .0661187842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipLower + position: {x: .0142508168, y: -.0216887593, z: .0822387859} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueBack + position: {x: -0, y: -.022869369, z: .0100954091} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueTip + position: {x: -0, y: -.000409444125, z: .0282272995} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -.0542440265, y: .0337019488, z: .0594304018} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEye + position: {x: -.0208482333, y: .0825027004, z: .0554274321} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidLower + position: {x: -.0356189571, y: .0650736615, z: .076234743} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidUpper + position: {x: -.0344068967, y: .10060814, z: .0802053064} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftInnerBrow + position: {x: -.0120626912, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftIOuterBrow + position: {x: -.0550398715, y: .114825293, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipUpper + position: {x: -.0145013221, y: -.00511181122, z: .094618842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftNostril + position: {x: -.0178999994, y: .0263128281, z: .0908674002} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: .0542399958, y: .033702828, z: .0594273992} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEye + position: {x: .020849999, y: .082502827, z: .0554273985} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidLower + position: {x: .0356200002, y: .065072827, z: .0762374029} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidUpper + position: {x: .0344099998, y: .100612827, z: .0802073926} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightInnerBrow + position: {x: .0120626874, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightIOuterBrow + position: {x: .0550400019, y: .114822827, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipUpper + position: {x: .0145013221, y: -.00510717137, z: .094617404} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightNostril + position: {x: .0178999994, y: .0263089053, z: .0908706188} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightShoulder + position: {x: .0383285098, y: .192176744, z: -.017063085} + rotation: {x: .290413886, y: .956010222, z: .0322408788, w: -.02578477} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightArm + position: {x: -.0835755169, y: .0360957012, z: -5.15574072e-08} + rotation: {x: .263129145, y: .953624487, z: -.146085501, w: .00475239567} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightForeArm + position: {x: .253428251, y: .00601135287, z: -.0167045239} + rotation: {x: -.0153278718, y: .0147472881, z: -.0201126598, w: .999571443} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHand + position: {x: .245373696, y: .0216417722, z: .00555046508} + rotation: {x: .000613642507, y: .036897447, z: -.0569219254, w: .9976964} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex1 + position: {x: .0747694969, y: -.00124305359, z: .0343444981} + rotation: {x: -.00211892044, y: .0802574381, z: .0175381862, w: .996617615} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex2 + position: {x: .0370584019, y: .00072612107, z: .0145388944} + rotation: {x: -.00332621601, y: .0159315318, z: .060632892, w: .998027444} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex3 + position: {x: .0252250377, y: -.00496646529, z: .0110121462} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: .0756476447, y: .00479140272, z: .0118531818} + rotation: {x: -.000768873433, y: .0333210826, z: .020907538, w: .999225736} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: .0438090637, y: .000194188149, z: .00645493623} + rotation: {x: -.00413046591, y: -.0335116945, z: .0761208013, w: .996526778} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: .0330724716, y: -.00754753686, z: .00168984616} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: .0668033436, y: -.00199410878, z: -.0307561457} + rotation: {x: .0031761073, y: -.192005888, z: .0451137684, w: .98035115} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky2 + position: {x: .0285308417, y: -.001397143, z: -.0116237961} + rotation: {x: -.00225326815, y: -.00959618483, z: -.0107575748, w: .999893546} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky3 + position: {x: .0214268602, y: -.000553508929, z: -.00851660781} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing1 + position: {x: .0705984756, y: .00245709647, z: -.00982145779} + rotation: {x: .000710848777, y: -.0543420911, z: .0349445045, w: .997910559} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing2 + position: {x: .0428871848, y: -.00137538207, z: -.00494585792} + rotation: {x: .000484766497, y: -.0212895721, z: .0698628947, w: .997329295} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing3 + position: {x: .0295006037, y: -.00769293541, z: -.00462225592} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb1 + position: {x: .0146849155, y: -.0111049423, z: .0258580949} + rotation: {x: -.108707562, y: .00948966853, z: .100395039, w: .988945663} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb2 + position: {x: .0163739994, y: -.00528999977, z: .0234913602} + rotation: {x: -.0260640942, y: -.0966886356, z: -.00360555435, w: .994966805} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: .0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: 9bde93922c5ea4196b87f9b5593da1dc, + type: 3} + animationType: 3 + additionalBone: 0 + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidMidAir.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidMidAir.fbx new file mode 100644 index 0000000..915a006 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidMidAir.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89fab31bc5b8423573432171d65e97d20b788933164958474c7698a8091d8437 +size 654976 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidMidAir.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidMidAir.fbx.meta new file mode 100644 index 0000000..a6f3c3c --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidMidAir.fbx.meta @@ -0,0 +1,1646 @@ +fileFormatVersion: 2 +guid: f03e10c73f30b4ab4aa8ea8f1cc16d36 +ModelImporter: + serializedVersion: 18 + fileIDToRecycleName: + 100000: //RootNode + 100002: l_hipProxy_geo + 100004: l_kneeProxy_geo + 100006: l_ankleProxy_geo + 100008: l_ballProxy_geo + 100010: LToeBase_End2 + 100012: LeftToes + 100014: LeftFoot + 100016: LeftLeg + 100018: LeftUpLeg + 100020: pelvisProxy_geo + 100022: r_hipProxy_geo + 100024: r_kneeProxy_geo + 100026: r_ankleProxy_geo + 100028: r_ballProxy_geo + 100030: LToeBase_End3 + 100032: RightToes + 100034: RightFoot + 100036: RightLeg + 100038: RightUpLeg + 100040: spineProxy_geo + 100042: l_clavicleProxy_geo + 100044: l_shourderProxy_geo + 100046: l_erbowProxy_geo + 100048: l_wristProxy_geo + 100050: l_thumbProxy_01_geo + 100052: l_thumbProxy_02_geo + 100054: l_thumbProxy_03_geo + 100056: LeftHandThumb13 + 100058: LeftHandThumb3 + 100060: LeftHandThumb2 + 100062: LeftHandThumb1 + 100064: l_indexProxy_01_geo + 100066: l_indexProxy_02_geo + 100068: l_indexProxy_03_geo + 100070: LeftHandIndex13 + 100072: LeftHandIndex3 + 100074: LeftHandIndex2 + 100076: LeftHandIndex1 + 100078: l_middleProxy_01_geo + 100080: l_middleProxy_02_geo + 100082: l_middleProxy_03_geo + 100084: LeftHandMiddle13 + 100086: LeftHandMiddle3 + 100088: LeftHandMiddle2 + 100090: LeftHandMiddle1 + 100092: l_ringProxy_01_geo + 100094: l_ringProxy_02_geo + 100096: l_ringProxy_03_geo + 100098: LeftHandRing13 + 100100: LeftHandRing3 + 100102: LeftHandRing2 + 100104: LeftHandRing1 + 100106: l_pinkyProxy_01_geo + 100108: l_pinkyProxy_02_geo + 100110: l_pinkyProxy_03_geo + 100112: LeftHandPinky13 + 100114: LeftHandPinky3 + 100116: LeftHandPinky2 + 100118: LeftHandPinky1 + 100120: LeftHand + 100122: LeftForeArm + 100124: LeftArm + 100126: LeftShoulder + 100128: chestProxy_geo + 100130: r_clavicleProxy_geo + 100132: r_shourderProxy_geo + 100134: r_erbowProxy_geo + 100136: r_wristProxy_geo + 100138: r_thumbProxy_01_geo + 100140: r_thumbProxy_02_geo + 100142: r_thumbProxy_03_geo + 100144: LeftHandThumb17 + 100146: RightHandThumb3 + 100148: RightHandThumb2 + 100150: RightHandThumb1 + 100152: r_indexProxy_01_geo + 100154: r_indexProxy_02_geo + 100156: r_indexProxy_03_geo + 100158: LeftHandIndex17 + 100160: RightHandIndex3 + 100162: RightHandIndex2 + 100164: RightHandIndex1 + 100166: r_middleProxy_01_geo + 100168: r_middleProxy_02_geo + 100170: r_middleProxy_03_geo + 100172: LeftHandMiddle17 + 100174: RightHandMiddle3 + 100176: RightHandMiddle2 + 100178: RightHandMiddle1 + 100180: r_ringProxy_01_geo + 100182: r_ringProxy_02_geo + 100184: r_ringProxy_03_geo + 100186: LeftHandRing17 + 100188: RightHandRing3 + 100190: RightHandRing2 + 100192: RightHandRing1 + 100194: r_pinkyProxy_01_geo + 100196: r_pinkyProxy_02_geo + 100198: r_pinkyProxy_03_geo + 100200: LeftHandPinky17 + 100202: RightHandPinky3 + 100204: RightHandPinky2 + 100206: RightHandPinky1 + 100208: RightHand + 100210: RightForeArm + 100212: RightArm + 100214: RightShoulder + 100216: neckProxy_geo + 100218: UNI_01_Upper_teethProxy + 100220: headProxy_geo + 100222: RightLipUpper + 100224: RightNostril + 100226: RightCheek + 100228: RightEyelidLower + 100230: RightEyelidUpper + 100232: RightIOuterBrow + 100234: RightInnerBrow + 100236: LeftIOuterBrow + 100238: LeftInnerBrow + 100240: LeftEyelidUpper + 100242: LeftEyelidLower + 100244: LeftCheek + 100246: LeftNostril + 100248: LeftLipUpper + 100250: jawProxy_geo + 100252: UNI_01_Lower_teethProxy + 100254: LeftLipCorner + 100256: RightLipCorner + 100258: RightLipLower + 100260: JawEND + 100262: LeftLipLower + 100264: UNI_01_TongueTipProxy + 100266: TongueTip + 100268: UNI_01_TongueBaseProxy + 100270: TongueBack + 100272: Jaw + 100274: r_UNI_eye + 100276: RightEye + 100278: l_UNI_eye + 100280: LeftEye + 100282: HeadTop_End + 100284: Head + 100286: Neck + 100288: Chest + 100290: Spine + 100292: Hips + 100294: Reference + 400000: //RootNode + 400002: l_hipProxy_geo + 400004: l_kneeProxy_geo + 400006: l_ankleProxy_geo + 400008: l_ballProxy_geo + 400010: LToeBase_End2 + 400012: LeftToes + 400014: LeftFoot + 400016: LeftLeg + 400018: LeftUpLeg + 400020: pelvisProxy_geo + 400022: r_hipProxy_geo + 400024: r_kneeProxy_geo + 400026: r_ankleProxy_geo + 400028: r_ballProxy_geo + 400030: LToeBase_End3 + 400032: RightToes + 400034: RightFoot + 400036: RightLeg + 400038: RightUpLeg + 400040: spineProxy_geo + 400042: l_clavicleProxy_geo + 400044: l_shourderProxy_geo + 400046: l_erbowProxy_geo + 400048: l_wristProxy_geo + 400050: l_thumbProxy_01_geo + 400052: l_thumbProxy_02_geo + 400054: l_thumbProxy_03_geo + 400056: LeftHandThumb13 + 400058: LeftHandThumb3 + 400060: LeftHandThumb2 + 400062: LeftHandThumb1 + 400064: l_indexProxy_01_geo + 400066: l_indexProxy_02_geo + 400068: l_indexProxy_03_geo + 400070: LeftHandIndex13 + 400072: LeftHandIndex3 + 400074: LeftHandIndex2 + 400076: LeftHandIndex1 + 400078: l_middleProxy_01_geo + 400080: l_middleProxy_02_geo + 400082: l_middleProxy_03_geo + 400084: LeftHandMiddle13 + 400086: LeftHandMiddle3 + 400088: LeftHandMiddle2 + 400090: LeftHandMiddle1 + 400092: l_ringProxy_01_geo + 400094: l_ringProxy_02_geo + 400096: l_ringProxy_03_geo + 400098: LeftHandRing13 + 400100: LeftHandRing3 + 400102: LeftHandRing2 + 400104: LeftHandRing1 + 400106: l_pinkyProxy_01_geo + 400108: l_pinkyProxy_02_geo + 400110: l_pinkyProxy_03_geo + 400112: LeftHandPinky13 + 400114: LeftHandPinky3 + 400116: LeftHandPinky2 + 400118: LeftHandPinky1 + 400120: LeftHand + 400122: LeftForeArm + 400124: LeftArm + 400126: LeftShoulder + 400128: chestProxy_geo + 400130: r_clavicleProxy_geo + 400132: r_shourderProxy_geo + 400134: r_erbowProxy_geo + 400136: r_wristProxy_geo + 400138: r_thumbProxy_01_geo + 400140: r_thumbProxy_02_geo + 400142: r_thumbProxy_03_geo + 400144: LeftHandThumb17 + 400146: RightHandThumb3 + 400148: RightHandThumb2 + 400150: RightHandThumb1 + 400152: r_indexProxy_01_geo + 400154: r_indexProxy_02_geo + 400156: r_indexProxy_03_geo + 400158: LeftHandIndex17 + 400160: RightHandIndex3 + 400162: RightHandIndex2 + 400164: RightHandIndex1 + 400166: r_middleProxy_01_geo + 400168: r_middleProxy_02_geo + 400170: r_middleProxy_03_geo + 400172: LeftHandMiddle17 + 400174: RightHandMiddle3 + 400176: RightHandMiddle2 + 400178: RightHandMiddle1 + 400180: r_ringProxy_01_geo + 400182: r_ringProxy_02_geo + 400184: r_ringProxy_03_geo + 400186: LeftHandRing17 + 400188: RightHandRing3 + 400190: RightHandRing2 + 400192: RightHandRing1 + 400194: r_pinkyProxy_01_geo + 400196: r_pinkyProxy_02_geo + 400198: r_pinkyProxy_03_geo + 400200: LeftHandPinky17 + 400202: RightHandPinky3 + 400204: RightHandPinky2 + 400206: RightHandPinky1 + 400208: RightHand + 400210: RightForeArm + 400212: RightArm + 400214: RightShoulder + 400216: neckProxy_geo + 400218: UNI_01_Upper_teethProxy + 400220: headProxy_geo + 400222: RightLipUpper + 400224: RightNostril + 400226: RightCheek + 400228: RightEyelidLower + 400230: RightEyelidUpper + 400232: RightIOuterBrow + 400234: RightInnerBrow + 400236: LeftIOuterBrow + 400238: LeftInnerBrow + 400240: LeftEyelidUpper + 400242: LeftEyelidLower + 400244: LeftCheek + 400246: LeftNostril + 400248: LeftLipUpper + 400250: jawProxy_geo + 400252: UNI_01_Lower_teethProxy + 400254: LeftLipCorner + 400256: RightLipCorner + 400258: RightLipLower + 400260: JawEND + 400262: LeftLipLower + 400264: UNI_01_TongueTipProxy + 400266: TongueTip + 400268: UNI_01_TongueBaseProxy + 400270: TongueBack + 400272: Jaw + 400274: r_UNI_eye + 400276: RightEye + 400278: l_UNI_eye + 400280: LeftEye + 400282: HeadTop_End + 400284: Head + 400286: Neck + 400288: Chest + 400290: Spine + 400292: Hips + 400294: Reference + 2300000: l_hipProxy_geo + 2300002: l_kneeProxy_geo + 2300004: l_ankleProxy_geo + 2300006: l_ballProxy_geo + 2300008: pelvisProxy_geo + 2300010: r_hipProxy_geo + 2300012: r_kneeProxy_geo + 2300014: r_ankleProxy_geo + 2300016: r_ballProxy_geo + 2300018: spineProxy_geo + 2300020: l_clavicleProxy_geo + 2300022: l_shourderProxy_geo + 2300024: l_erbowProxy_geo + 2300026: l_wristProxy_geo + 2300028: l_thumbProxy_01_geo + 2300030: l_thumbProxy_02_geo + 2300032: l_thumbProxy_03_geo + 2300034: l_indexProxy_01_geo + 2300036: l_indexProxy_02_geo + 2300038: l_indexProxy_03_geo + 2300040: l_middleProxy_01_geo + 2300042: l_middleProxy_02_geo + 2300044: l_middleProxy_03_geo + 2300046: l_ringProxy_01_geo + 2300048: l_ringProxy_02_geo + 2300050: l_ringProxy_03_geo + 2300052: l_pinkyProxy_01_geo + 2300054: l_pinkyProxy_02_geo + 2300056: l_pinkyProxy_03_geo + 2300058: chestProxy_geo + 2300060: r_clavicleProxy_geo + 2300062: r_shourderProxy_geo + 2300064: r_erbowProxy_geo + 2300066: r_wristProxy_geo + 2300068: r_thumbProxy_01_geo + 2300070: r_thumbProxy_02_geo + 2300072: r_thumbProxy_03_geo + 2300074: r_indexProxy_01_geo + 2300076: r_indexProxy_02_geo + 2300078: r_indexProxy_03_geo + 2300080: r_middleProxy_01_geo + 2300082: r_middleProxy_02_geo + 2300084: r_middleProxy_03_geo + 2300086: r_ringProxy_01_geo + 2300088: r_ringProxy_02_geo + 2300090: r_ringProxy_03_geo + 2300092: r_pinkyProxy_01_geo + 2300094: r_pinkyProxy_02_geo + 2300096: r_pinkyProxy_03_geo + 2300098: neckProxy_geo + 2300100: UNI_01_Upper_teethProxy + 2300102: headProxy_geo + 2300104: jawProxy_geo + 2300106: UNI_01_Lower_teethProxy + 2300108: UNI_01_TongueTipProxy + 2300110: UNI_01_TongueBaseProxy + 2300112: r_UNI_eye + 2300114: l_UNI_eye + 3300000: l_hipProxy_geo + 3300002: l_kneeProxy_geo + 3300004: l_ankleProxy_geo + 3300006: l_ballProxy_geo + 3300008: pelvisProxy_geo + 3300010: r_hipProxy_geo + 3300012: r_kneeProxy_geo + 3300014: r_ankleProxy_geo + 3300016: r_ballProxy_geo + 3300018: spineProxy_geo + 3300020: l_clavicleProxy_geo + 3300022: l_shourderProxy_geo + 3300024: l_erbowProxy_geo + 3300026: l_wristProxy_geo + 3300028: l_thumbProxy_01_geo + 3300030: l_thumbProxy_02_geo + 3300032: l_thumbProxy_03_geo + 3300034: l_indexProxy_01_geo + 3300036: l_indexProxy_02_geo + 3300038: l_indexProxy_03_geo + 3300040: l_middleProxy_01_geo + 3300042: l_middleProxy_02_geo + 3300044: l_middleProxy_03_geo + 3300046: l_ringProxy_01_geo + 3300048: l_ringProxy_02_geo + 3300050: l_ringProxy_03_geo + 3300052: l_pinkyProxy_01_geo + 3300054: l_pinkyProxy_02_geo + 3300056: l_pinkyProxy_03_geo + 3300058: chestProxy_geo + 3300060: r_clavicleProxy_geo + 3300062: r_shourderProxy_geo + 3300064: r_erbowProxy_geo + 3300066: r_wristProxy_geo + 3300068: r_thumbProxy_01_geo + 3300070: r_thumbProxy_02_geo + 3300072: r_thumbProxy_03_geo + 3300074: r_indexProxy_01_geo + 3300076: r_indexProxy_02_geo + 3300078: r_indexProxy_03_geo + 3300080: r_middleProxy_01_geo + 3300082: r_middleProxy_02_geo + 3300084: r_middleProxy_03_geo + 3300086: r_ringProxy_01_geo + 3300088: r_ringProxy_02_geo + 3300090: r_ringProxy_03_geo + 3300092: r_pinkyProxy_01_geo + 3300094: r_pinkyProxy_02_geo + 3300096: r_pinkyProxy_03_geo + 3300098: neckProxy_geo + 3300100: UNI_01_Upper_teethProxy + 3300102: headProxy_geo + 3300104: jawProxy_geo + 3300106: UNI_01_Lower_teethProxy + 3300108: UNI_01_TongueTipProxy + 3300110: UNI_01_TongueBaseProxy + 3300112: r_UNI_eye + 3300114: l_UNI_eye + 4300000: l_UNI_eye + 4300002: r_UNI_eye + 4300004: UNI_01_TongueBaseProxy + 4300006: UNI_01_TongueTipProxy + 4300008: UNI_01_Lower_teethProxy + 4300010: jawProxy_geo + 4300012: headProxy_geo + 4300014: UNI_01_Upper_teethProxy + 4300016: neckProxy_geo + 4300018: r_pinkyProxy_03_geo + 4300020: r_pinkyProxy_02_geo + 4300022: r_pinkyProxy_01_geo + 4300024: r_ringProxy_03_geo + 4300026: r_ringProxy_02_geo + 4300028: r_ringProxy_01_geo + 4300030: r_middleProxy_03_geo + 4300032: r_middleProxy_02_geo + 4300034: r_middleProxy_01_geo + 4300036: r_indexProxy_03_geo + 4300038: r_indexProxy_02_geo + 4300040: r_indexProxy_01_geo + 4300042: r_thumbProxy_03_geo + 4300044: r_thumbProxy_02_geo + 4300046: r_thumbProxy_01_geo + 4300048: r_wristProxy_geo + 4300050: r_erbowProxy_geo + 4300052: r_shourderProxy_geo + 4300054: r_clavicleProxy_geo + 4300056: chestProxy_geo + 4300058: l_pinkyProxy_03_geo + 4300060: l_pinkyProxy_02_geo + 4300062: l_pinkyProxy_01_geo + 4300064: l_ringProxy_03_geo + 4300066: l_ringProxy_02_geo + 4300068: l_ringProxy_01_geo + 4300070: l_middleProxy_03_geo + 4300072: l_middleProxy_02_geo + 4300074: l_middleProxy_01_geo + 4300076: l_indexProxy_03_geo + 4300078: l_indexProxy_02_geo + 4300080: l_indexProxy_01_geo + 4300082: l_thumbProxy_03_geo + 4300084: l_thumbProxy_02_geo + 4300086: l_thumbProxy_01_geo + 4300088: l_wristProxy_geo + 4300090: l_erbowProxy_geo + 4300092: l_shourderProxy_geo + 4300094: l_clavicleProxy_geo + 4300096: spineProxy_geo + 4300098: r_ballProxy_geo + 4300100: r_ankleProxy_geo + 4300102: r_kneeProxy_geo + 4300104: r_hipProxy_geo + 4300106: pelvisProxy_geo + 4300108: l_ballProxy_geo + 4300110: l_ankleProxy_geo + 4300112: l_kneeProxy_geo + 4300114: l_hipProxy_geo + 7400000: __preview___209_Run_JumpDownLow_Run + 7400002: HumanoidMidAirRight + 7400004: HumanoidMidAirLeft + 9500000: //RootNode + 11100000: //RootNode + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 3 + bakeSimulation: 0 + optimizeGameObjects: 0 + motionNodeName: + pivotNodeName: + animationCompression: 3 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: HumanoidMidAirRight + takeName: _209_Run_JumpDownLow_Run + firstFrame: 118 + lastFrame: 120 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 1 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 0 + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidMidAirLeft + takeName: _209_Run_JumpDownLow_Run + firstFrame: 118 + lastFrame: 120 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 0 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 1 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: + - path: + weight: 1 + - path: Hips + weight: 1 + - path: Hips/Spine + weight: 1 + - path: Hips/Spine/Chest + weight: 1 + - path: Hips/Spine/Chest/Neck + weight: 1 + - path: Hips/Spine/Chest/Neck/Head + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/HeadTop_End + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/LeftEye + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/RightEye + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/Jaw + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/Jaw/TongueBack + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/Jaw/TongueTip + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/Jaw/LeftLipLower + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/Jaw/JawEND + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/Jaw/RightLipLower + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/Jaw/RightLipCorner + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/Jaw/LeftLipCorner + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/LeftLipUpper + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/LeftNostril + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/LeftCheek + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/LeftEyelidLower + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/LeftEyelidUpper + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/LeftInnerBrow + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/LeftIOuterBrow + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/RightInnerBrow + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/RightIOuterBrow + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/RightEyelidUpper + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/RightEyelidLower + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/RightCheek + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/RightNostril + weight: 1 + - path: Hips/Spine/Chest/Neck/Head/RightLipUpper + weight: 1 + - path: Hips/Spine/Chest/RightShoulder + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandPinky1/RightHandPinky2/RightHandPinky3/LeftHandPinky17 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandRing1/RightHandRing2/RightHandRing3/LeftHandRing17 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandMiddle1/RightHandMiddle2/RightHandMiddle3/LeftHandMiddle17 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandIndex1/RightHandIndex2/RightHandIndex3/LeftHandIndex17 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3 + weight: 1 + - path: Hips/Spine/Chest/RightShoulder/RightArm/RightForeArm/RightHand/RightHandThumb1/RightHandThumb2/RightHandThumb3/LeftHandThumb17 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandPinky1/LeftHandPinky2/LeftHandPinky3/LeftHandPinky13 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandRing1/LeftHandRing2/LeftHandRing3/LeftHandRing13 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandMiddle1/LeftHandMiddle2/LeftHandMiddle3/LeftHandMiddle13 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandIndex1/LeftHandIndex2/LeftHandIndex3/LeftHandIndex13 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3 + weight: 1 + - path: Hips/Spine/Chest/LeftShoulder/LeftArm/LeftForeArm/LeftHand/LeftHandThumb1/LeftHandThumb2/LeftHandThumb3/LeftHandThumb13 + weight: 1 + - path: Hips/RightUpLeg + weight: 1 + - path: Hips/RightUpLeg/RightLeg + weight: 1 + - path: Hips/RightUpLeg/RightLeg/RightFoot + weight: 1 + - path: Hips/RightUpLeg/RightLeg/RightFoot/RightToes + weight: 1 + - path: Hips/RightUpLeg/RightLeg/RightFoot/RightToes/LToeBase_End3 + weight: 1 + - path: Hips/LeftUpLeg + weight: 1 + - path: Hips/LeftUpLeg/LeftLeg + weight: 1 + - path: Hips/LeftUpLeg/LeftLeg/LeftFoot + weight: 1 + - path: Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes + weight: 1 + - path: Hips/LeftUpLeg/LeftLeg/LeftFoot/LeftToes/LToeBase_End2 + weight: 1 + maskType: 0 + maskSource: {instanceID: 0} + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: .00999999978 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: HumanoidMidAir(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: 0, y: .978280783, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftUpLeg + position: {x: -.0754494965, y: -.0456640199, z: 3.5527136e-17} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLeg + position: {x: -.0205504987, y: -.409129977, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftFoot + position: {x: -.00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftToes + position: {x: -.00748699997, y: -.0731673017, z: .145427123} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LToeBase_End2 + position: {x: .0126400003, y: -.0131357787, z: .0358933695} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightUpLeg + position: {x: .0754495338, y: -.0456639901, z: -7.1054272e-17} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLeg + position: {x: .0205504671, y: -.409130007, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightFoot + position: {x: .00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightToes + position: {x: .00748699997, y: -.0731673017, z: .145427495} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LToeBase_End3 + position: {x: -.0126400003, y: -.0131357787, z: .0358929969} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Spine + position: {x: -3.55271347e-16, y: .0922631845, z: .0157713313} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Chest + position: {x: -0, y: .162540287, z: -.00165605545} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftShoulder + position: {x: -.0382859968, y: .221622497, z: -.017063085} + rotation: {x: -.0169460457, y: -.0529774576, z: .15200372, w: .986813664} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftArm + position: {x: -.100502051, y: 8.52651264e-16, z: -1.91846525e-15} + rotation: {x: .303798467, y: .015646534, z: -.148740351, w: .940924048} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftForeArm + position: {x: -.254049301, y: -5.6772363e-14, z: -7.74633667e-13} + rotation: {x: .0051808483, y: .0260420516, z: -.0195699595, w: .999455869} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHand + position: {x: -.24638927, y: -1.34519945e-12, z: -1.48500223e-11} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -.0751257986, y: -.00784140453, z: .0326526426} + rotation: {x: -.0308351107, y: .0179683305, z: .0871939808, w: .995551884} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036} + rotation: {x: -.0689609796, y: .0147136748, z: .0279580243, w: .997119009} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -.0279684775, y: -6.28308783e-09, z: -5.17217202e-08} + rotation: {x: 4.9360068e-08, y: .0757969022, z: .0863323957, w: .993378937} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex13 + position: {x: -.0186619665, y: .00437385263, z: -.00384002505} + rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -.0760238245, y: -.00188513438, z: .0101412293} + rotation: {x: -.0157171767, y: .053721305, z: .0864773318, w: .994680226} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -.0442804359, y: 4.79887376e-06, z: -.000425400125} + rotation: {x: -.0151028167, y: -.00648156414, z: .0269547533, w: .999501586} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -.0339648277, y: -1.2198452e-08, z: 3.7516088e-09} + rotation: {x: -1.01979772e-07, y: .00856075436, z: .0601487383, w: .998152792} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle13 + position: {x: -.0196715724, y: .00392557262, z: -.000558814383} + rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -.0656599477, y: -.00782510638, z: -.0322512463} + rotation: {x: -.0464271381, y: .0757413954, z: .0861605853, w: .992312551} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775} + rotation: {x: .0494193174, y: -.0217061825, z: .0329463966, w: .997998536} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -.0230640266, y: -6.40258258e-06, z: 1.8330093e-08} + rotation: {x: 1.67766084e-05, y: -.0589505993, z: .0381766856, w: .997530639} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky13 + position: {x: -.0169719923, y: .00202882662, z: .00314032286} + rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -.0703021064, y: -.00374530931, z: -.0114117917} + rotation: {x: -.0137468018, y: .0746479779, z: .0850574374, w: .993480802} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837} + rotation: {x: .0193584226, y: -.0256355982, z: .0290550962, w: .999061465} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -.0308355652, y: 7.67334946e-11, z: -1.64974168e-08} + rotation: {x: -1.97207484e-07, y: -.0178757701, z: .0421713889, w: .998950541} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing13 + position: {x: -.0205416381, y: .00325422082, z: .00137918338} + rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -.0142312413, y: -.0123778246, z: .0255316682} + rotation: {x: -.158041775, y: -.0722015724, z: -.152828872, w: .972858191} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -.0163739994, y: -.00528999977, z: .0234914087} + rotation: {x: -.0260618888, y: .0966887325, z: .00360755436, w: .994966924} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -.0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: .00545194838, y: .000442996417, z: .00682530133, w: .999961793} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb13 + position: {x: -.031868957, y: -.0052999449, z: .0258005001} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: 4.26325632e-16, y: .259009302, z: -.0324132554} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Head + position: {x: 1.27897687e-15, y: .0830703825, z: .0113267815} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: HeadTop_End + position: {x: -5.17045827e-18, y: .188178778, z: .0121086892} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Jaw + position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431} + rotation: {x: .219240054, y: -0, z: -0, w: .975670993} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: JawEND + position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipCorner + position: {x: -.032843262, y: -.01657876, z: .0661217645} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipLower + position: {x: -.0142508168, y: -.0216887593, z: .0822406337} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipCorner + position: {x: .0328399986, y: -.01657876, z: .0661187842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipLower + position: {x: .0142508168, y: -.0216887593, z: .0822387859} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueBack + position: {x: -1.73472344e-20, y: -.022869369, z: .0100954091} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueTip + position: {x: -1.73472344e-20, y: -.0232788119, z: .0383227095} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -.0542440265, y: .0337019488, z: .0594304018} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEye + position: {x: -.0208482333, y: .0825027004, z: .0554274321} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidLower + position: {x: -.0356189571, y: .0650736615, z: .076234743} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidUpper + position: {x: -.0344068967, y: .10060814, z: .0802053064} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftInnerBrow + position: {x: -.0120626912, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftIOuterBrow + position: {x: -.0550398715, y: .114825293, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipUpper + position: {x: -.0145013221, y: -.00511181122, z: .094618842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftNostril + position: {x: -.0178999994, y: .0263128281, z: .0908674002} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: .0542399958, y: .033702828, z: .0594273992} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEye + position: {x: .020849999, y: .082502827, z: .0554273985} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidLower + position: {x: .0356200002, y: .065072827, z: .0762374029} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidUpper + position: {x: .0344099998, y: .100612827, z: .0802073926} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightInnerBrow + position: {x: .0120626874, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightIOuterBrow + position: {x: .0550400019, y: .114822827, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipUpper + position: {x: .0145013221, y: -.00510717137, z: .094617404} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightNostril + position: {x: .0178999994, y: .0263089053, z: .0908706188} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightShoulder + position: {x: .0382860154, y: .221621141, z: -.017063085} + rotation: {x: .148889691, y: .986841977, z: -.0191342514, w: -.0600721166} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightArm + position: {x: -.100501455, y: -2.49955224e-06, z: -5.15574072e-08} + rotation: {x: .12166404, y: .961327732, z: -.242588788, w: .0468774885} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightForeArm + position: {x: .253428251, y: .00601135287, z: -.0167045239} + rotation: {x: .0546663813, y: .0180182401, z: -.0126463044, w: .998261988} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHand + position: {x: .245373696, y: .0216417722, z: .00555046508} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex1 + position: {x: .0747694969, y: -.00124305359, z: .0343444981} + rotation: {x: -.0269991793, y: .134705037, z: -.0601718239, w: .988688529} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex2 + position: {x: .0370584019, y: .00072612107, z: .0145388944} + rotation: {x: -.0803585127, y: .0230226964, z: .0437488221, w: .995539308} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex3 + position: {x: .0252250377, y: -.00496646529, z: .0110121462} + rotation: {x: .0205331407, y: -.0777122155, z: -.0820826665, w: .993378937} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex17 + position: {x: .019119978, y: .000846308249, z: .00398164755} + rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: .0756476447, y: .00479140272, z: .0118531818} + rotation: {x: -.0139232948, y: .00904202927, z: -.0464321077, w: .998783469} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: .0438090637, y: .000194188149, z: .00645493623} + rotation: {x: -.0214098375, y: -.044567503, z: .0864230916, w: .99503088} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: .0330724716, y: -.00754753686, z: .00168984616} + rotation: {x: .00108972914, y: -.00868750364, z: -.060128659, w: .998152256} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle17 + position: {x: .0200548954, y: -.000547108881, z: .000442590448} + rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: .0668033436, y: -.00199410878, z: -.0307561457} + rotation: {x: -.0533694737, y: -.255000681, z: -.0125761544, w: .96538502} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky2 + position: {x: .0285308417, y: -.001397143, z: -.0116237961} + rotation: {x: .0333825685, y: .00105689454, z: -.0586909167, w: .997717321} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky3 + position: {x: .0214268602, y: -.000553508929, z: -.00851660781} + rotation: {x: -.0126826987, y: .0591077842, z: -.0357496776, w: .997530639} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky17 + position: {x: .016975116, y: .00161137758, z: -.00335797085} + rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing1 + position: {x: .0705984756, y: .00245709647, z: -.00982145779} + rotation: {x: -.0145361852, y: -.117994301, z: -.0257451385, w: .992574036} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing2 + position: {x: .0428871848, y: -.00137538207, z: -.00494585792} + rotation: {x: .0220804513, y: -.0216987785, z: .0796155706, w: .996344805} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing3 + position: {x: .0295006037, y: -.00769293541, z: -.00462225592} + rotation: {x: -.00186288042, y: .0181126203, z: -.0420350544, w: .998950243} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing17 + position: {x: .0206709336, y: -.00200043293, z: -.00177803368} + rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb1 + position: {x: .0146849155, y: -.0111049423, z: .0258580949} + rotation: {x: -.163419098, y: .0403524339, z: .173200503, w: .970395565} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb2 + position: {x: .0163739994, y: -.00528999977, z: .0234913602} + rotation: {x: -.0260617808, y: -.0966900066, z: -.00360842934, w: .994966745} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: .0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: .00545424689, y: -.000443457626, z: -.00682825595, w: .999961734} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb17 + position: {x: .0318690389, y: -.00529994583, z: .0258005001} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 3 + additionalBone: 0 + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRun.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRun.fbx new file mode 100644 index 0000000..8fa46cd --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRun.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0370d1e2f887533d3c306fbfb325e3a52019c7316b9aa0475d4b9f8bfc8b7886 +size 972704 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRun.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRun.fbx.meta new file mode 100644 index 0000000..547f74d --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRun.fbx.meta @@ -0,0 +1,1534 @@ +fileFormatVersion: 2 +guid: 1cb8ed3cbba15f0479fbae54e0a963df +ModelImporter: + serializedVersion: 19 + fileIDToRecycleName: + 100000: Character_Ctrl:Reference + 100002: Chest + 100004: ChestEndEffector + 100006: ChestOriginEffector + 100008: chestProxy_geo + 100010: //RootNode + 100012: Head + 100014: Head 1 + 100016: HeadEffector + 100018: headProxy_geo + 100020: HeadTop_End + 100022: Hips + 100024: Hips 1 + 100026: HipsEffector + 100028: Jaw + 100030: JawEND + 100032: jawProxy_geo + 100034: l_ankleProxy_geo + 100036: l_ballProxy_geo + 100038: l_clavicleProxy_geo + 100040: l_erbowProxy_geo + 100042: l_hipProxy_geo + 100044: l_indexProxy_01_geo + 100046: l_indexProxy_02_geo + 100048: l_indexProxy_03_geo + 100050: l_kneeProxy_geo + 100052: l_middleProxy_01_geo + 100054: l_middleProxy_02_geo + 100056: l_middleProxy_03_geo + 100058: l_pinkyProxy_01_geo + 100060: l_pinkyProxy_02_geo + 100062: l_pinkyProxy_03_geo + 100064: l_ringProxy_01_geo + 100066: l_ringProxy_02_geo + 100068: l_ringProxy_03_geo + 100070: l_shourderProxy_geo + 100072: l_thumbProxy_01_geo + 100074: l_thumbProxy_02_geo + 100076: l_thumbProxy_03_geo + 100078: l_UNI_eye + 100080: l_wristProxy_geo + 100082: LeftAnkleEffector + 100084: LeftArm + 100086: LeftArm 1 + 100088: LeftCheek + 100090: LeftElbowEffector + 100092: LeftEye + 100094: LeftEyelidLower + 100096: LeftEyelidUpper + 100098: LeftFoot + 100100: LeftFoot 1 + 100102: LeftForeArm + 100104: LeftForeArm 1 + 100106: LeftHand + 100108: LeftHand 1 + 100110: LeftHandIndex1 + 100112: LeftHandIndex13 + 100114: LeftHandIndex17 + 100116: LeftHandIndex2 + 100118: LeftHandIndex3 + 100120: LeftHandIndex4 + 100122: LeftHandIndex5 + 100124: LeftHandIndex6 + 100126: LeftHandIndexEffector + 100128: LeftHandMiddle1 + 100130: LeftHandMiddle13 + 100132: LeftHandMiddle17 + 100134: LeftHandMiddle2 + 100136: LeftHandMiddle3 + 100138: LeftHandMiddle4 + 100140: LeftHandMiddle5 + 100142: LeftHandMiddle6 + 100144: LeftHandMiddleEffector + 100146: LeftHandPinky1 + 100148: LeftHandPinky13 + 100150: LeftHandPinky17 + 100152: LeftHandPinky2 + 100154: LeftHandPinky3 + 100156: LeftHandPinky4 + 100158: LeftHandPinky5 + 100160: LeftHandPinky6 + 100162: LeftHandPinkyEffector + 100164: LeftHandRing1 + 100166: LeftHandRing13 + 100168: LeftHandRing17 + 100170: LeftHandRing2 + 100172: LeftHandRing3 + 100174: LeftHandRing4 + 100176: LeftHandRing5 + 100178: LeftHandRing6 + 100180: LeftHandRingEffector + 100182: LeftHandThumb1 + 100184: LeftHandThumb13 + 100186: LeftHandThumb17 + 100188: LeftHandThumb2 + 100190: LeftHandThumb3 + 100192: LeftHandThumb4 + 100194: LeftHandThumb5 + 100196: LeftHandThumb6 + 100198: LeftHandThumbEffector + 100200: LeftHipEffector + 100202: LeftInnerBrow + 100204: LeftIOuterBrow + 100206: LeftKneeEffector + 100208: LeftLeg + 100210: LeftLeg 1 + 100212: LeftLipCorner + 100214: LeftLipLower + 100216: LeftLipUpper + 100218: LeftNostril + 100220: LeftShoulder + 100222: LeftShoulder 1 + 100224: LeftShoulderEffector + 100226: LeftToes + 100228: LeftUpLeg + 100230: LeftUpLeg 1 + 100232: LeftWristEffector + 100234: LToeBase_End2 + 100236: LToeBase_End3 + 100238: Neck + 100240: Neck 1 + 100242: neckProxy_geo + 100244: pelvisProxy_geo + 100246: r_ankleProxy_geo + 100248: r_ballProxy_geo + 100250: r_clavicleProxy_geo + 100252: r_erbowProxy_geo + 100254: r_hipProxy_geo + 100256: r_indexProxy_01_geo + 100258: r_indexProxy_02_geo + 100260: r_indexProxy_03_geo + 100262: r_kneeProxy_geo + 100264: r_middleProxy_01_geo + 100266: r_middleProxy_02_geo + 100268: r_middleProxy_03_geo + 100270: r_pinkyProxy_01_geo + 100272: r_pinkyProxy_02_geo + 100274: r_pinkyProxy_03_geo + 100276: r_ringProxy_01_geo + 100278: r_ringProxy_02_geo + 100280: r_ringProxy_03_geo + 100282: r_shourderProxy_geo + 100284: r_thumbProxy_01_geo + 100286: r_thumbProxy_02_geo + 100288: r_thumbProxy_03_geo + 100290: r_UNI_eye + 100292: r_wristProxy_geo + 100294: Reference + 100296: RightAnkleEffector + 100298: RightArm + 100300: RightArm 1 + 100302: RightCheek + 100304: RightElbowEffector + 100306: RightEye + 100308: RightEyelidLower + 100310: RightEyelidUpper + 100312: RightFoot + 100314: RightFoot 1 + 100316: RightForeArm + 100318: RightForeArm 1 + 100320: RightHand + 100322: RightHand 1 + 100324: RightHandIndex1 + 100326: RightHandIndex2 + 100328: RightHandIndex3 + 100330: RightHandIndex4 + 100332: RightHandIndex5 + 100334: RightHandIndex6 + 100336: RightHandIndexEffector + 100338: RightHandMiddle1 + 100340: RightHandMiddle2 + 100342: RightHandMiddle3 + 100344: RightHandMiddle4 + 100346: RightHandMiddle5 + 100348: RightHandMiddle6 + 100350: RightHandMiddleEffector + 100352: RightHandPinky1 + 100354: RightHandPinky2 + 100356: RightHandPinky3 + 100358: RightHandPinky4 + 100360: RightHandPinky5 + 100362: RightHandPinky6 + 100364: RightHandPinkyEffector + 100366: RightHandRing1 + 100368: RightHandRing2 + 100370: RightHandRing3 + 100372: RightHandRing4 + 100374: RightHandRing5 + 100376: RightHandRing6 + 100378: RightHandRingEffector + 100380: RightHandThumb1 + 100382: RightHandThumb2 + 100384: RightHandThumb3 + 100386: RightHandThumb4 + 100388: RightHandThumb5 + 100390: RightHandThumb6 + 100392: RightHandThumbEffector + 100394: RightHipEffector + 100396: RightInnerBrow + 100398: RightIOuterBrow + 100400: RightKneeEffector + 100402: RightLeg + 100404: RightLeg 1 + 100406: RightLipCorner + 100408: RightLipLower + 100410: RightLipUpper + 100412: RightNostril + 100414: RightShoulder + 100416: RightShoulder 1 + 100418: RightShoulderEffector + 100420: RightToes + 100422: RightUpLeg + 100424: RightUpLeg 1 + 100426: RightWristEffector + 100428: Spine + 100430: Spine 1 + 100432: Spine1 + 100434: spineProxy_geo + 100436: TongueBack + 100438: TongueTip + 100440: UNI_01_Lower_teethProxy + 100442: UNI_01_TongueBaseProxy + 100444: UNI_01_TongueTipProxy + 100446: UNI_01_Upper_teethProxy + 400000: Character_Ctrl:Reference + 400002: Chest + 400004: ChestEndEffector + 400006: ChestOriginEffector + 400008: chestProxy_geo + 400010: //RootNode + 400012: Head + 400014: Head 1 + 400016: HeadEffector + 400018: headProxy_geo + 400020: HeadTop_End + 400022: Hips + 400024: Hips 1 + 400026: HipsEffector + 400028: Jaw + 400030: JawEND + 400032: jawProxy_geo + 400034: l_ankleProxy_geo + 400036: l_ballProxy_geo + 400038: l_clavicleProxy_geo + 400040: l_erbowProxy_geo + 400042: l_hipProxy_geo + 400044: l_indexProxy_01_geo + 400046: l_indexProxy_02_geo + 400048: l_indexProxy_03_geo + 400050: l_kneeProxy_geo + 400052: l_middleProxy_01_geo + 400054: l_middleProxy_02_geo + 400056: l_middleProxy_03_geo + 400058: l_pinkyProxy_01_geo + 400060: l_pinkyProxy_02_geo + 400062: l_pinkyProxy_03_geo + 400064: l_ringProxy_01_geo + 400066: l_ringProxy_02_geo + 400068: l_ringProxy_03_geo + 400070: l_shourderProxy_geo + 400072: l_thumbProxy_01_geo + 400074: l_thumbProxy_02_geo + 400076: l_thumbProxy_03_geo + 400078: l_UNI_eye + 400080: l_wristProxy_geo + 400082: LeftAnkleEffector + 400084: LeftArm + 400086: LeftArm 1 + 400088: LeftCheek + 400090: LeftElbowEffector + 400092: LeftEye + 400094: LeftEyelidLower + 400096: LeftEyelidUpper + 400098: LeftFoot + 400100: LeftFoot 1 + 400102: LeftForeArm + 400104: LeftForeArm 1 + 400106: LeftHand + 400108: LeftHand 1 + 400110: LeftHandIndex1 + 400112: LeftHandIndex13 + 400114: LeftHandIndex17 + 400116: LeftHandIndex2 + 400118: LeftHandIndex3 + 400120: LeftHandIndex4 + 400122: LeftHandIndex5 + 400124: LeftHandIndex6 + 400126: LeftHandIndexEffector + 400128: LeftHandMiddle1 + 400130: LeftHandMiddle13 + 400132: LeftHandMiddle17 + 400134: LeftHandMiddle2 + 400136: LeftHandMiddle3 + 400138: LeftHandMiddle4 + 400140: LeftHandMiddle5 + 400142: LeftHandMiddle6 + 400144: LeftHandMiddleEffector + 400146: LeftHandPinky1 + 400148: LeftHandPinky13 + 400150: LeftHandPinky17 + 400152: LeftHandPinky2 + 400154: LeftHandPinky3 + 400156: LeftHandPinky4 + 400158: LeftHandPinky5 + 400160: LeftHandPinky6 + 400162: LeftHandPinkyEffector + 400164: LeftHandRing1 + 400166: LeftHandRing13 + 400168: LeftHandRing17 + 400170: LeftHandRing2 + 400172: LeftHandRing3 + 400174: LeftHandRing4 + 400176: LeftHandRing5 + 400178: LeftHandRing6 + 400180: LeftHandRingEffector + 400182: LeftHandThumb1 + 400184: LeftHandThumb13 + 400186: LeftHandThumb17 + 400188: LeftHandThumb2 + 400190: LeftHandThumb3 + 400192: LeftHandThumb4 + 400194: LeftHandThumb5 + 400196: LeftHandThumb6 + 400198: LeftHandThumbEffector + 400200: LeftHipEffector + 400202: LeftInnerBrow + 400204: LeftIOuterBrow + 400206: LeftKneeEffector + 400208: LeftLeg + 400210: LeftLeg 1 + 400212: LeftLipCorner + 400214: LeftLipLower + 400216: LeftLipUpper + 400218: LeftNostril + 400220: LeftShoulder + 400222: LeftShoulder 1 + 400224: LeftShoulderEffector + 400226: LeftToes + 400228: LeftUpLeg + 400230: LeftUpLeg 1 + 400232: LeftWristEffector + 400234: LToeBase_End2 + 400236: LToeBase_End3 + 400238: Neck + 400240: Neck 1 + 400242: neckProxy_geo + 400244: pelvisProxy_geo + 400246: r_ankleProxy_geo + 400248: r_ballProxy_geo + 400250: r_clavicleProxy_geo + 400252: r_erbowProxy_geo + 400254: r_hipProxy_geo + 400256: r_indexProxy_01_geo + 400258: r_indexProxy_02_geo + 400260: r_indexProxy_03_geo + 400262: r_kneeProxy_geo + 400264: r_middleProxy_01_geo + 400266: r_middleProxy_02_geo + 400268: r_middleProxy_03_geo + 400270: r_pinkyProxy_01_geo + 400272: r_pinkyProxy_02_geo + 400274: r_pinkyProxy_03_geo + 400276: r_ringProxy_01_geo + 400278: r_ringProxy_02_geo + 400280: r_ringProxy_03_geo + 400282: r_shourderProxy_geo + 400284: r_thumbProxy_01_geo + 400286: r_thumbProxy_02_geo + 400288: r_thumbProxy_03_geo + 400290: r_UNI_eye + 400292: r_wristProxy_geo + 400294: Reference + 400296: RightAnkleEffector + 400298: RightArm + 400300: RightArm 1 + 400302: RightCheek + 400304: RightElbowEffector + 400306: RightEye + 400308: RightEyelidLower + 400310: RightEyelidUpper + 400312: RightFoot + 400314: RightFoot 1 + 400316: RightForeArm + 400318: RightForeArm 1 + 400320: RightHand + 400322: RightHand 1 + 400324: RightHandIndex1 + 400326: RightHandIndex2 + 400328: RightHandIndex3 + 400330: RightHandIndex4 + 400332: RightHandIndex5 + 400334: RightHandIndex6 + 400336: RightHandIndexEffector + 400338: RightHandMiddle1 + 400340: RightHandMiddle2 + 400342: RightHandMiddle3 + 400344: RightHandMiddle4 + 400346: RightHandMiddle5 + 400348: RightHandMiddle6 + 400350: RightHandMiddleEffector + 400352: RightHandPinky1 + 400354: RightHandPinky2 + 400356: RightHandPinky3 + 400358: RightHandPinky4 + 400360: RightHandPinky5 + 400362: RightHandPinky6 + 400364: RightHandPinkyEffector + 400366: RightHandRing1 + 400368: RightHandRing2 + 400370: RightHandRing3 + 400372: RightHandRing4 + 400374: RightHandRing5 + 400376: RightHandRing6 + 400378: RightHandRingEffector + 400380: RightHandThumb1 + 400382: RightHandThumb2 + 400384: RightHandThumb3 + 400386: RightHandThumb4 + 400388: RightHandThumb5 + 400390: RightHandThumb6 + 400392: RightHandThumbEffector + 400394: RightHipEffector + 400396: RightInnerBrow + 400398: RightIOuterBrow + 400400: RightKneeEffector + 400402: RightLeg + 400404: RightLeg 1 + 400406: RightLipCorner + 400408: RightLipLower + 400410: RightLipUpper + 400412: RightNostril + 400414: RightShoulder + 400416: RightShoulder 1 + 400418: RightShoulderEffector + 400420: RightToes + 400422: RightUpLeg + 400424: RightUpLeg 1 + 400426: RightWristEffector + 400428: Spine + 400430: Spine 1 + 400432: Spine1 + 400434: spineProxy_geo + 400436: TongueBack + 400438: TongueTip + 400440: UNI_01_Lower_teethProxy + 400442: UNI_01_TongueBaseProxy + 400444: UNI_01_TongueTipProxy + 400446: UNI_01_Upper_teethProxy + 2300000: chestProxy_geo + 2300002: headProxy_geo + 2300004: jawProxy_geo + 2300006: l_ankleProxy_geo + 2300008: l_ballProxy_geo + 2300010: l_clavicleProxy_geo + 2300012: l_erbowProxy_geo + 2300014: l_hipProxy_geo + 2300016: l_indexProxy_01_geo + 2300018: l_indexProxy_02_geo + 2300020: l_indexProxy_03_geo + 2300022: l_kneeProxy_geo + 2300024: l_middleProxy_01_geo + 2300026: l_middleProxy_02_geo + 2300028: l_middleProxy_03_geo + 2300030: l_pinkyProxy_01_geo + 2300032: l_pinkyProxy_02_geo + 2300034: l_pinkyProxy_03_geo + 2300036: l_ringProxy_01_geo + 2300038: l_ringProxy_02_geo + 2300040: l_ringProxy_03_geo + 2300042: l_shourderProxy_geo + 2300044: l_thumbProxy_01_geo + 2300046: l_thumbProxy_02_geo + 2300048: l_thumbProxy_03_geo + 2300050: l_UNI_eye + 2300052: l_wristProxy_geo + 2300054: neckProxy_geo + 2300056: pelvisProxy_geo + 2300058: r_ankleProxy_geo + 2300060: r_ballProxy_geo + 2300062: r_clavicleProxy_geo + 2300064: r_erbowProxy_geo + 2300066: r_hipProxy_geo + 2300068: r_indexProxy_01_geo + 2300070: r_indexProxy_02_geo + 2300072: r_indexProxy_03_geo + 2300074: r_kneeProxy_geo + 2300076: r_middleProxy_01_geo + 2300078: r_middleProxy_02_geo + 2300080: r_middleProxy_03_geo + 2300082: r_pinkyProxy_01_geo + 2300084: r_pinkyProxy_02_geo + 2300086: r_pinkyProxy_03_geo + 2300088: r_ringProxy_01_geo + 2300090: r_ringProxy_02_geo + 2300092: r_ringProxy_03_geo + 2300094: r_shourderProxy_geo + 2300096: r_thumbProxy_01_geo + 2300098: r_thumbProxy_02_geo + 2300100: r_thumbProxy_03_geo + 2300102: r_UNI_eye + 2300104: r_wristProxy_geo + 2300106: spineProxy_geo + 2300108: UNI_01_Lower_teethProxy + 2300110: UNI_01_TongueBaseProxy + 2300112: UNI_01_TongueTipProxy + 2300114: UNI_01_Upper_teethProxy + 3300000: chestProxy_geo + 3300002: headProxy_geo + 3300004: jawProxy_geo + 3300006: l_ankleProxy_geo + 3300008: l_ballProxy_geo + 3300010: l_clavicleProxy_geo + 3300012: l_erbowProxy_geo + 3300014: l_hipProxy_geo + 3300016: l_indexProxy_01_geo + 3300018: l_indexProxy_02_geo + 3300020: l_indexProxy_03_geo + 3300022: l_kneeProxy_geo + 3300024: l_middleProxy_01_geo + 3300026: l_middleProxy_02_geo + 3300028: l_middleProxy_03_geo + 3300030: l_pinkyProxy_01_geo + 3300032: l_pinkyProxy_02_geo + 3300034: l_pinkyProxy_03_geo + 3300036: l_ringProxy_01_geo + 3300038: l_ringProxy_02_geo + 3300040: l_ringProxy_03_geo + 3300042: l_shourderProxy_geo + 3300044: l_thumbProxy_01_geo + 3300046: l_thumbProxy_02_geo + 3300048: l_thumbProxy_03_geo + 3300050: l_UNI_eye + 3300052: l_wristProxy_geo + 3300054: neckProxy_geo + 3300056: pelvisProxy_geo + 3300058: r_ankleProxy_geo + 3300060: r_ballProxy_geo + 3300062: r_clavicleProxy_geo + 3300064: r_erbowProxy_geo + 3300066: r_hipProxy_geo + 3300068: r_indexProxy_01_geo + 3300070: r_indexProxy_02_geo + 3300072: r_indexProxy_03_geo + 3300074: r_kneeProxy_geo + 3300076: r_middleProxy_01_geo + 3300078: r_middleProxy_02_geo + 3300080: r_middleProxy_03_geo + 3300082: r_pinkyProxy_01_geo + 3300084: r_pinkyProxy_02_geo + 3300086: r_pinkyProxy_03_geo + 3300088: r_ringProxy_01_geo + 3300090: r_ringProxy_02_geo + 3300092: r_ringProxy_03_geo + 3300094: r_shourderProxy_geo + 3300096: r_thumbProxy_01_geo + 3300098: r_thumbProxy_02_geo + 3300100: r_thumbProxy_03_geo + 3300102: r_UNI_eye + 3300104: r_wristProxy_geo + 3300106: spineProxy_geo + 3300108: UNI_01_Lower_teethProxy + 3300110: UNI_01_TongueBaseProxy + 3300112: UNI_01_TongueTipProxy + 3300114: UNI_01_Upper_teethProxy + 4300000: l_UNI_eye + 4300002: r_UNI_eye + 4300004: UNI_01_TongueBaseProxy + 4300006: UNI_01_TongueTipProxy + 4300008: UNI_01_Lower_teethProxy + 4300010: jawProxy_geo + 4300012: headProxy_geo + 4300014: UNI_01_Upper_teethProxy + 4300016: neckProxy_geo + 4300018: r_pinkyProxy_03_geo + 4300020: r_pinkyProxy_02_geo + 4300022: r_pinkyProxy_01_geo + 4300024: r_ringProxy_03_geo + 4300026: r_ringProxy_02_geo + 4300028: r_ringProxy_01_geo + 4300030: r_middleProxy_03_geo + 4300032: r_middleProxy_02_geo + 4300034: r_middleProxy_01_geo + 4300036: r_indexProxy_03_geo + 4300038: r_indexProxy_02_geo + 4300040: r_indexProxy_01_geo + 4300042: r_thumbProxy_03_geo + 4300044: r_thumbProxy_02_geo + 4300046: r_thumbProxy_01_geo + 4300048: r_wristProxy_geo + 4300050: r_erbowProxy_geo + 4300052: r_shourderProxy_geo + 4300054: r_clavicleProxy_geo + 4300056: chestProxy_geo + 4300058: l_pinkyProxy_03_geo + 4300060: l_pinkyProxy_02_geo + 4300062: l_pinkyProxy_01_geo + 4300064: l_ringProxy_03_geo + 4300066: l_ringProxy_02_geo + 4300068: l_ringProxy_01_geo + 4300070: l_middleProxy_03_geo + 4300072: l_middleProxy_02_geo + 4300074: l_middleProxy_01_geo + 4300076: l_indexProxy_03_geo + 4300078: l_indexProxy_02_geo + 4300080: l_indexProxy_01_geo + 4300082: l_thumbProxy_03_geo + 4300084: l_thumbProxy_02_geo + 4300086: l_thumbProxy_01_geo + 4300088: l_wristProxy_geo + 4300090: l_erbowProxy_geo + 4300092: l_shourderProxy_geo + 4300094: l_clavicleProxy_geo + 4300096: spineProxy_geo + 4300098: r_ballProxy_geo + 4300100: r_ankleProxy_geo + 4300102: r_kneeProxy_geo + 4300104: r_hipProxy_geo + 4300106: pelvisProxy_geo + 4300108: l_ballProxy_geo + 4300110: l_ankleProxy_geo + 4300112: l_kneeProxy_geo + 4300114: l_hipProxy_geo + 7400000: HumanoidRun + 9500000: //RootNode + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleRotations: 1 + optimizeGameObjects: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + animationCompression: 0 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: HumanoidRun + takeName: _24_a_U1_M_P_RunForward_NtrlFaceFwd__Fb_p0_No_0_PJ_10 + firstFrame: 335.9 + lastFrame: 353.7 + wrapMode: 0 + orientationOffsetY: -1.2 + level: 0 + cycleOffset: 0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 1 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 88 + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 0.01 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 4 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Run(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: -0.000000020489097, y: 0.958501, z: 0.059998296} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftUpLeg + position: {x: -0.0754495, y: -0.04566402, z: -6.217249e-17} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLeg + position: {x: -0.020550499, y: -0.40912998, z: -0.00071864796} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftFoot + position: {x: -0.0051529994, y: -0.4231559, z: -0.027648851} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftToes + position: {x: -0.007487, y: -0.0731673, z: 0.14542712} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightUpLeg + position: {x: 0.075449534, y: -0.04566399, z: -6.217249e-17} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLeg + position: {x: 0.020550467, y: -0.40913, z: -0.00071864796} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightFoot + position: {x: 0.0051529994, y: -0.4231559, z: -0.027648851} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightToes + position: {x: 0.007487, y: -0.0731673, z: 0.1454275} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Spine + position: {x: -4.7739588e-17, y: 0.092263184, z: 0.015771331} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Chest + position: {x: 3.5527136e-17, y: 0.16254029, z: -0.0016560555} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftShoulder + position: {x: -0.038285997, y: 0.2216225, z: -0.017063085} + rotation: {x: -0.02901484, y: -0.07803791, z: 0.1478155, w: 0.9855044} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftArm + position: {x: -0.10050205, y: 0.000000001125083, z: -1.9039074e-10} + rotation: {x: 0.0065737762, y: 0.07236942, z: -0.1361931, w: 0.9880137} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftForeArm + position: {x: -0.2540493, y: -1.0551325e-10, z: 1.09112684e-10} + rotation: {x: 0.37014812, y: 0.03247756, z: -0.006699631, w: 0.9283807} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHand + position: {x: -0.24638927, y: -1.1574698e-10, z: 1.1358061e-11} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -0.0751258, y: -0.0078414045, z: 0.032652643} + rotation: {x: 0.042805295, y: 0.05632816, z: 0.06901114, w: 0.99510425} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -0.03979728, y: 0.000049808412, z: 0.0011857506} + rotation: {x: -0.11841995, y: 0.01500381, z: 0.016670156, w: 0.99271035} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -0.027968477, y: -0.000000006416276, z: -0.000000051434675} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -0.076023825, y: -0.0018851344, z: 0.010141229} + rotation: {x: -0.033341967, y: 0.07042229, z: 0.07230802, w: 0.9943342} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -0.044280436, y: 0.00000479887, z: -0.00042540036} + rotation: {x: -0.033172157, y: -0.0051259603, z: 0.011490114, w: 0.9993705} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -0.033964828, y: -0.000000012184439, z: 0.000000003753109} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -0.06565995, y: -0.007825106, z: -0.032251246} + rotation: {x: -0.110300295, y: 0.079448596, z: 0.0742732, w: 0.9879298} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -0.030805448, y: -0.000030874577, z: -0.0014480774} + rotation: {x: -0.072170265, y: -0.026308026, z: 0.013470372, w: 0.9969544} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -0.023064027, y: -0.0000064025903, z: 0.000000018201217} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -0.07030211, y: -0.0037453093, z: -0.011411792} + rotation: {x: 0.015795682, y: 0.09177202, z: 0.06791128, w: 0.9933361} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -0.043135457, y: -0.000020882291, z: -0.0022351781} + rotation: {x: -0.13446514, y: -0.026096364, z: 0.008734329, w: 0.9905361} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -0.030835565, y: 1.5784053e-10, z: -0.000000016455102} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -0.014231241, y: -0.012377825, z: 0.025531668} + rotation: {x: -0.2238929, y: -0.0758366, z: -0.1291156, w: 0.9630421} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -0.016374, y: -0.00529, z: 0.023491409} + rotation: {x: -0.0260623, y: 0.09668697, z: 0.0036068659, w: 0.9949671} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -0.02546, y: -0.00764, z: 0.020833} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: -0, y: 0.2590093, z: -0.032413255} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Head + position: {x: 5.7731595e-17, y: 0.08307038, z: 0.0113267815} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Jaw + position: {x: 1.7347234e-20, y: 0.0111267585, z: 0.010327543} + rotation: {x: 0.21924005, y: -0, z: -0, w: 0.975671} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: JawEND + position: {x: -1.7347234e-20, y: -0.04828876, z: 0.07185171} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipCorner + position: {x: -0.032843262, y: -0.01657876, z: 0.066121764} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipLower + position: {x: -0.014250817, y: -0.02168876, z: 0.08224063} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipCorner + position: {x: 0.03284, y: -0.01657876, z: 0.066118784} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipLower + position: {x: 0.014250817, y: -0.02168876, z: 0.082238786} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueBack + position: {x: -1.7347234e-20, y: -0.022869369, z: 0.010095409} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueTip + position: {x: -1.7347234e-20, y: -0.023278812, z: 0.03832271} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -0.054244027, y: 0.03370195, z: 0.0594304} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEye + position: {x: -0.020848233, y: 0.0825027, z: 0.055427432} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidLower + position: {x: -0.035618957, y: 0.06507366, z: 0.07623474} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidUpper + position: {x: -0.034406897, y: 0.10060814, z: 0.08020531} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftInnerBrow + position: {x: -0.012062691, y: 0.118765265, z: 0.093466826} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftIOuterBrow + position: {x: -0.05503987, y: 0.11482529, z: 0.061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipUpper + position: {x: -0.014501322, y: -0.005111811, z: 0.09461884} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftNostril + position: {x: -0.0179, y: 0.026312828, z: 0.0908674} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: 0.054239996, y: 0.033702828, z: 0.0594274} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEye + position: {x: 0.020849999, y: 0.08250283, z: 0.0554274} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidLower + position: {x: 0.03562, y: 0.06507283, z: 0.0762374} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidUpper + position: {x: 0.03441, y: 0.10061283, z: 0.08020739} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightInnerBrow + position: {x: 0.012062687, y: 0.118765265, z: 0.093466826} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightIOuterBrow + position: {x: 0.055040002, y: 0.11482283, z: 0.061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipUpper + position: {x: 0.014501322, y: -0.0051071714, z: 0.094617404} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightNostril + position: {x: 0.0179, y: 0.026308905, z: 0.09087062} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightShoulder + position: {x: 0.038286015, y: 0.22162114, z: -0.017063085} + rotation: {x: 0.1579978, y: 0.9867513, z: -0.013299583, w: -0.034375474} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightArm + position: {x: -0.100501455, y: -0.0000024966455, z: -0.00000005228366} + rotation: {x: 0.13541101, y: 0.98766977, z: -0.004818486, w: 0.07841701} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightForeArm + position: {x: 0.25342825, y: 0.006011353, z: -0.016704524} + rotation: {x: 0.25265744, y: 0.024327299, z: -0.026384478, w: 0.96689} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHand + position: {x: 0.2453737, y: 0.021641772, z: 0.005550465} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex1 + position: {x: 0.0747695, y: -0.0012430536, z: 0.034344498} + rotation: {x: 0.050132476, y: 0.10633009, z: -0.025096685, w: 0.99274915} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex2 + position: {x: 0.0370584, y: 0.00072612107, z: 0.014538894} + rotation: {x: -0.12210108, y: 0.026184548, z: 0.03848509, w: 0.99142563} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex3 + position: {x: 0.025225038, y: -0.0049664653, z: 0.011012146} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: 0.075647645, y: 0.0047914027, z: 0.011853182} + rotation: {x: -0.026879195, y: -0.0053047896, z: -0.033220712, w: 0.99907243} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: 0.043809064, y: 0.00019418815, z: 0.006454936} + rotation: {x: -0.039818257, y: -0.04374049, z: 0.09885875, w: 0.993342} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: 0.03307247, y: -0.007547537, z: 0.0016898462} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: 0.06680334, y: -0.0019941085, z: -0.030756146} + rotation: {x: -0.11187588, y: -0.25872952, z: 0.0088018915, w: 0.9594088} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky2 + position: {x: 0.028530842, y: -0.001397143, z: -0.011623796} + rotation: {x: -0.07357618, y: 0.009609909, z: 0.0022198618, w: 0.9972409} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky3 + position: {x: 0.02142686, y: -0.00055350893, z: -0.008516608} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing1 + position: {x: 0.070598476, y: 0.0024570965, z: -0.009821458} + rotation: {x: 0.01820465, y: -0.13375518, z: -0.008969554, w: 0.9908066} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing2 + position: {x: 0.042887185, y: -0.0013753821, z: -0.0049458584} + rotation: {x: -0.12681748, y: 0.0007345817, z: 0.115031, w: 0.98523337} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing3 + position: {x: 0.029500604, y: -0.0076929354, z: -0.004622256} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb1 + position: {x: 0.014684916, y: -0.011104942, z: 0.025858095} + rotation: {x: -0.16873905, y: 0.028051713, z: 0.11700559, w: 0.9782893} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb2 + position: {x: 0.016374, y: -0.00529, z: 0.02349136} + rotation: {x: -0.026062516, y: -0.09668957, z: -0.003607418, w: 0.99496675} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: 0.02546, y: -0.00764, z: 0.020833} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: e8914d097ece7cc48a83d5fccd4098c0, + type: 3} + animationType: 3 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurn.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurn.fbx new file mode 100644 index 0000000..ecd859b --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurn.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3488e1ef8e517e8c2de02c68cdc37b582c29fa417ea8705b385569601d499a1 +size 657424 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurn.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurn.fbx.meta new file mode 100644 index 0000000..481dd4d --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurn.fbx.meta @@ -0,0 +1,1469 @@ +fileFormatVersion: 2 +guid: 1062212255550964e974f3ffb3cbaae3 +ModelImporter: + serializedVersion: 18 + fileIDToRecycleName: + 100000: Chest + 100002: chestProxy_geo + 100004: //RootNode + 100006: Head + 100008: headProxy_geo + 100010: HeadTop_End + 100012: Hips + 100014: Jaw + 100016: JawEND + 100018: jawProxy_geo + 100020: l_ankleProxy_geo + 100022: l_ballProxy_geo + 100024: l_clavicleProxy_geo + 100026: l_erbowProxy_geo + 100028: l_hipProxy_geo + 100030: l_indexProxy_01_geo + 100032: l_indexProxy_02_geo + 100034: l_indexProxy_03_geo + 100036: l_kneeProxy_geo + 100038: l_middleProxy_01_geo + 100040: l_middleProxy_02_geo + 100042: l_middleProxy_03_geo + 100044: l_pinkyProxy_01_geo + 100046: l_pinkyProxy_02_geo + 100048: l_pinkyProxy_03_geo + 100050: l_ringProxy_01_geo + 100052: l_ringProxy_02_geo + 100054: l_ringProxy_03_geo + 100056: l_shourderProxy_geo + 100058: l_thumbProxy_01_geo + 100060: l_thumbProxy_02_geo + 100062: l_thumbProxy_03_geo + 100064: l_UNI_eye + 100066: l_wristProxy_geo + 100068: LeftArm + 100070: LeftCheek + 100072: LeftEye + 100074: LeftEyelidLower + 100076: LeftEyelidUpper + 100078: LeftFoot + 100080: LeftForeArm + 100082: LeftHand + 100084: LeftHandIndex1 + 100086: LeftHandIndex13 + 100088: LeftHandIndex17 + 100090: LeftHandIndex2 + 100092: LeftHandIndex3 + 100094: LeftHandMiddle1 + 100096: LeftHandMiddle13 + 100098: LeftHandMiddle17 + 100100: LeftHandMiddle2 + 100102: LeftHandMiddle3 + 100104: LeftHandPinky1 + 100106: LeftHandPinky13 + 100108: LeftHandPinky17 + 100110: LeftHandPinky2 + 100112: LeftHandPinky3 + 100114: LeftHandRing1 + 100116: LeftHandRing13 + 100118: LeftHandRing17 + 100120: LeftHandRing2 + 100122: LeftHandRing3 + 100124: LeftHandThumb1 + 100126: LeftHandThumb13 + 100128: LeftHandThumb17 + 100130: LeftHandThumb2 + 100132: LeftHandThumb3 + 100134: LeftInnerBrow + 100136: LeftIOuterBrow + 100138: LeftLeg + 100140: LeftLipCorner + 100142: LeftLipLower + 100144: LeftLipUpper + 100146: LeftNostril + 100148: LeftShoulder + 100150: LeftToes + 100152: LeftUpLeg + 100154: LToeBase_End2 + 100156: LToeBase_End3 + 100158: Neck + 100160: neckProxy_geo + 100162: pelvisProxy_geo + 100164: Pivot + 100166: r_ankleProxy_geo + 100168: r_ballProxy_geo + 100170: r_clavicleProxy_geo + 100172: r_erbowProxy_geo + 100174: r_hipProxy_geo + 100176: r_indexProxy_01_geo + 100178: r_indexProxy_02_geo + 100180: r_indexProxy_03_geo + 100182: r_kneeProxy_geo + 100184: r_middleProxy_01_geo + 100186: r_middleProxy_02_geo + 100188: r_middleProxy_03_geo + 100190: r_pinkyProxy_01_geo + 100192: r_pinkyProxy_02_geo + 100194: r_pinkyProxy_03_geo + 100196: r_ringProxy_01_geo + 100198: r_ringProxy_02_geo + 100200: r_ringProxy_03_geo + 100202: r_shourderProxy_geo + 100204: r_thumbProxy_01_geo + 100206: r_thumbProxy_02_geo + 100208: r_thumbProxy_03_geo + 100210: r_UNI_eye + 100212: r_wristProxy_geo + 100214: Reference + 100216: RightArm + 100218: RightCheek + 100220: RightEye + 100222: RightEyelidLower + 100224: RightEyelidUpper + 100226: RightFoot + 100228: RightForeArm + 100230: RightHand + 100232: RightHandIndex1 + 100234: RightHandIndex2 + 100236: RightHandIndex3 + 100238: RightHandMiddle1 + 100240: RightHandMiddle2 + 100242: RightHandMiddle3 + 100244: RightHandPinky1 + 100246: RightHandPinky2 + 100248: RightHandPinky3 + 100250: RightHandRing1 + 100252: RightHandRing2 + 100254: RightHandRing3 + 100256: RightHandThumb1 + 100258: RightHandThumb2 + 100260: RightHandThumb3 + 100262: RightInnerBrow + 100264: RightIOuterBrow + 100266: RightLeg + 100268: RightLipCorner + 100270: RightLipLower + 100272: RightLipUpper + 100274: RightNostril + 100276: RightShoulder + 100278: RightToes + 100280: RightUpLeg + 100282: Root + 100284: Spine + 100286: spineProxy_geo + 100288: TongueBack + 100290: TongueTip + 100292: UNI_01_Lower_teethProxy + 100294: UNI_01_TongueBaseProxy + 100296: UNI_01_TongueTipProxy + 100298: UNI_01_Upper_teethProxy + 400000: Chest + 400002: chestProxy_geo + 400004: //RootNode + 400006: Head + 400008: headProxy_geo + 400010: HeadTop_End + 400012: Hips + 400014: Jaw + 400016: JawEND + 400018: jawProxy_geo + 400020: l_ankleProxy_geo + 400022: l_ballProxy_geo + 400024: l_clavicleProxy_geo + 400026: l_erbowProxy_geo + 400028: l_hipProxy_geo + 400030: l_indexProxy_01_geo + 400032: l_indexProxy_02_geo + 400034: l_indexProxy_03_geo + 400036: l_kneeProxy_geo + 400038: l_middleProxy_01_geo + 400040: l_middleProxy_02_geo + 400042: l_middleProxy_03_geo + 400044: l_pinkyProxy_01_geo + 400046: l_pinkyProxy_02_geo + 400048: l_pinkyProxy_03_geo + 400050: l_ringProxy_01_geo + 400052: l_ringProxy_02_geo + 400054: l_ringProxy_03_geo + 400056: l_shourderProxy_geo + 400058: l_thumbProxy_01_geo + 400060: l_thumbProxy_02_geo + 400062: l_thumbProxy_03_geo + 400064: l_UNI_eye + 400066: l_wristProxy_geo + 400068: LeftArm + 400070: LeftCheek + 400072: LeftEye + 400074: LeftEyelidLower + 400076: LeftEyelidUpper + 400078: LeftFoot + 400080: LeftForeArm + 400082: LeftHand + 400084: LeftHandIndex1 + 400086: LeftHandIndex13 + 400088: LeftHandIndex17 + 400090: LeftHandIndex2 + 400092: LeftHandIndex3 + 400094: LeftHandMiddle1 + 400096: LeftHandMiddle13 + 400098: LeftHandMiddle17 + 400100: LeftHandMiddle2 + 400102: LeftHandMiddle3 + 400104: LeftHandPinky1 + 400106: LeftHandPinky13 + 400108: LeftHandPinky17 + 400110: LeftHandPinky2 + 400112: LeftHandPinky3 + 400114: LeftHandRing1 + 400116: LeftHandRing13 + 400118: LeftHandRing17 + 400120: LeftHandRing2 + 400122: LeftHandRing3 + 400124: LeftHandThumb1 + 400126: LeftHandThumb13 + 400128: LeftHandThumb17 + 400130: LeftHandThumb2 + 400132: LeftHandThumb3 + 400134: LeftInnerBrow + 400136: LeftIOuterBrow + 400138: LeftLeg + 400140: LeftLipCorner + 400142: LeftLipLower + 400144: LeftLipUpper + 400146: LeftNostril + 400148: LeftShoulder + 400150: LeftToes + 400152: LeftUpLeg + 400154: LToeBase_End2 + 400156: LToeBase_End3 + 400158: Neck + 400160: neckProxy_geo + 400162: pelvisProxy_geo + 400164: Pivot + 400166: r_ankleProxy_geo + 400168: r_ballProxy_geo + 400170: r_clavicleProxy_geo + 400172: r_erbowProxy_geo + 400174: r_hipProxy_geo + 400176: r_indexProxy_01_geo + 400178: r_indexProxy_02_geo + 400180: r_indexProxy_03_geo + 400182: r_kneeProxy_geo + 400184: r_middleProxy_01_geo + 400186: r_middleProxy_02_geo + 400188: r_middleProxy_03_geo + 400190: r_pinkyProxy_01_geo + 400192: r_pinkyProxy_02_geo + 400194: r_pinkyProxy_03_geo + 400196: r_ringProxy_01_geo + 400198: r_ringProxy_02_geo + 400200: r_ringProxy_03_geo + 400202: r_shourderProxy_geo + 400204: r_thumbProxy_01_geo + 400206: r_thumbProxy_02_geo + 400208: r_thumbProxy_03_geo + 400210: r_UNI_eye + 400212: r_wristProxy_geo + 400214: Reference + 400216: RightArm + 400218: RightCheek + 400220: RightEye + 400222: RightEyelidLower + 400224: RightEyelidUpper + 400226: RightFoot + 400228: RightForeArm + 400230: RightHand + 400232: RightHandIndex1 + 400234: RightHandIndex2 + 400236: RightHandIndex3 + 400238: RightHandMiddle1 + 400240: RightHandMiddle2 + 400242: RightHandMiddle3 + 400244: RightHandPinky1 + 400246: RightHandPinky2 + 400248: RightHandPinky3 + 400250: RightHandRing1 + 400252: RightHandRing2 + 400254: RightHandRing3 + 400256: RightHandThumb1 + 400258: RightHandThumb2 + 400260: RightHandThumb3 + 400262: RightInnerBrow + 400264: RightIOuterBrow + 400266: RightLeg + 400268: RightLipCorner + 400270: RightLipLower + 400272: RightLipUpper + 400274: RightNostril + 400276: RightShoulder + 400278: RightToes + 400280: RightUpLeg + 400282: Root + 400284: Spine + 400286: spineProxy_geo + 400288: TongueBack + 400290: TongueTip + 400292: UNI_01_Lower_teethProxy + 400294: UNI_01_TongueBaseProxy + 400296: UNI_01_TongueTipProxy + 400298: UNI_01_Upper_teethProxy + 2300000: chestProxy_geo + 2300002: headProxy_geo + 2300004: jawProxy_geo + 2300006: l_ankleProxy_geo + 2300008: l_ballProxy_geo + 2300010: l_clavicleProxy_geo + 2300012: l_erbowProxy_geo + 2300014: l_hipProxy_geo + 2300016: l_indexProxy_01_geo + 2300018: l_indexProxy_02_geo + 2300020: l_indexProxy_03_geo + 2300022: l_kneeProxy_geo + 2300024: l_middleProxy_01_geo + 2300026: l_middleProxy_02_geo + 2300028: l_middleProxy_03_geo + 2300030: l_pinkyProxy_01_geo + 2300032: l_pinkyProxy_02_geo + 2300034: l_pinkyProxy_03_geo + 2300036: l_ringProxy_01_geo + 2300038: l_ringProxy_02_geo + 2300040: l_ringProxy_03_geo + 2300042: l_shourderProxy_geo + 2300044: l_thumbProxy_01_geo + 2300046: l_thumbProxy_02_geo + 2300048: l_thumbProxy_03_geo + 2300050: l_UNI_eye + 2300052: l_wristProxy_geo + 2300054: neckProxy_geo + 2300056: pelvisProxy_geo + 2300058: r_ankleProxy_geo + 2300060: r_ballProxy_geo + 2300062: r_clavicleProxy_geo + 2300064: r_erbowProxy_geo + 2300066: r_hipProxy_geo + 2300068: r_indexProxy_01_geo + 2300070: r_indexProxy_02_geo + 2300072: r_indexProxy_03_geo + 2300074: r_kneeProxy_geo + 2300076: r_middleProxy_01_geo + 2300078: r_middleProxy_02_geo + 2300080: r_middleProxy_03_geo + 2300082: r_pinkyProxy_01_geo + 2300084: r_pinkyProxy_02_geo + 2300086: r_pinkyProxy_03_geo + 2300088: r_ringProxy_01_geo + 2300090: r_ringProxy_02_geo + 2300092: r_ringProxy_03_geo + 2300094: r_shourderProxy_geo + 2300096: r_thumbProxy_01_geo + 2300098: r_thumbProxy_02_geo + 2300100: r_thumbProxy_03_geo + 2300102: r_UNI_eye + 2300104: r_wristProxy_geo + 2300106: spineProxy_geo + 2300108: UNI_01_Lower_teethProxy + 2300110: UNI_01_TongueBaseProxy + 2300112: UNI_01_TongueTipProxy + 2300114: UNI_01_Upper_teethProxy + 3300000: chestProxy_geo + 3300002: headProxy_geo + 3300004: jawProxy_geo + 3300006: l_ankleProxy_geo + 3300008: l_ballProxy_geo + 3300010: l_clavicleProxy_geo + 3300012: l_erbowProxy_geo + 3300014: l_hipProxy_geo + 3300016: l_indexProxy_01_geo + 3300018: l_indexProxy_02_geo + 3300020: l_indexProxy_03_geo + 3300022: l_kneeProxy_geo + 3300024: l_middleProxy_01_geo + 3300026: l_middleProxy_02_geo + 3300028: l_middleProxy_03_geo + 3300030: l_pinkyProxy_01_geo + 3300032: l_pinkyProxy_02_geo + 3300034: l_pinkyProxy_03_geo + 3300036: l_ringProxy_01_geo + 3300038: l_ringProxy_02_geo + 3300040: l_ringProxy_03_geo + 3300042: l_shourderProxy_geo + 3300044: l_thumbProxy_01_geo + 3300046: l_thumbProxy_02_geo + 3300048: l_thumbProxy_03_geo + 3300050: l_UNI_eye + 3300052: l_wristProxy_geo + 3300054: neckProxy_geo + 3300056: pelvisProxy_geo + 3300058: r_ankleProxy_geo + 3300060: r_ballProxy_geo + 3300062: r_clavicleProxy_geo + 3300064: r_erbowProxy_geo + 3300066: r_hipProxy_geo + 3300068: r_indexProxy_01_geo + 3300070: r_indexProxy_02_geo + 3300072: r_indexProxy_03_geo + 3300074: r_kneeProxy_geo + 3300076: r_middleProxy_01_geo + 3300078: r_middleProxy_02_geo + 3300080: r_middleProxy_03_geo + 3300082: r_pinkyProxy_01_geo + 3300084: r_pinkyProxy_02_geo + 3300086: r_pinkyProxy_03_geo + 3300088: r_ringProxy_01_geo + 3300090: r_ringProxy_02_geo + 3300092: r_ringProxy_03_geo + 3300094: r_shourderProxy_geo + 3300096: r_thumbProxy_01_geo + 3300098: r_thumbProxy_02_geo + 3300100: r_thumbProxy_03_geo + 3300102: r_UNI_eye + 3300104: r_wristProxy_geo + 3300106: spineProxy_geo + 3300108: UNI_01_Lower_teethProxy + 3300110: UNI_01_TongueBaseProxy + 3300112: UNI_01_TongueTipProxy + 3300114: UNI_01_Upper_teethProxy + 4300000: l_UNI_eye + 4300002: r_UNI_eye + 4300004: UNI_01_TongueBaseProxy + 4300006: UNI_01_TongueTipProxy + 4300008: UNI_01_Lower_teethProxy + 4300010: jawProxy_geo + 4300012: headProxy_geo + 4300014: UNI_01_Upper_teethProxy + 4300016: neckProxy_geo + 4300018: r_pinkyProxy_03_geo + 4300020: r_pinkyProxy_02_geo + 4300022: r_pinkyProxy_01_geo + 4300024: r_ringProxy_03_geo + 4300026: r_ringProxy_02_geo + 4300028: r_ringProxy_01_geo + 4300030: r_middleProxy_03_geo + 4300032: r_middleProxy_02_geo + 4300034: r_middleProxy_01_geo + 4300036: r_indexProxy_03_geo + 4300038: r_indexProxy_02_geo + 4300040: r_indexProxy_01_geo + 4300042: r_thumbProxy_03_geo + 4300044: r_thumbProxy_02_geo + 4300046: r_thumbProxy_01_geo + 4300048: r_wristProxy_geo + 4300050: r_erbowProxy_geo + 4300052: r_shourderProxy_geo + 4300054: r_clavicleProxy_geo + 4300056: chestProxy_geo + 4300058: l_pinkyProxy_03_geo + 4300060: l_pinkyProxy_02_geo + 4300062: l_pinkyProxy_01_geo + 4300064: l_ringProxy_03_geo + 4300066: l_ringProxy_02_geo + 4300068: l_ringProxy_01_geo + 4300070: l_middleProxy_03_geo + 4300072: l_middleProxy_02_geo + 4300074: l_middleProxy_01_geo + 4300076: l_indexProxy_03_geo + 4300078: l_indexProxy_02_geo + 4300080: l_indexProxy_01_geo + 4300082: l_thumbProxy_03_geo + 4300084: l_thumbProxy_02_geo + 4300086: l_thumbProxy_01_geo + 4300088: l_wristProxy_geo + 4300090: l_erbowProxy_geo + 4300092: l_shourderProxy_geo + 4300094: l_clavicleProxy_geo + 4300096: spineProxy_geo + 4300098: r_ballProxy_geo + 4300100: r_ankleProxy_geo + 4300102: r_kneeProxy_geo + 4300104: r_hipProxy_geo + 4300106: pelvisProxy_geo + 4300108: l_ballProxy_geo + 4300110: l_ankleProxy_geo + 4300112: l_kneeProxy_geo + 4300114: l_hipProxy_geo + 7400000: HumanoidRunRight + 7400002: HumanoidRunLeft + 9500000: //RootNode + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + optimizeGameObjects: 0 + motionNodeName: + pivotNodeName: + animationCompression: 0 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: HumanoidRunRight + takeName: _30_a_U1_M_P_RunForwardTurnRight_NtrlWide__Fb_Dia3m_No_0_PJ_4 + firstFrame: 98.5 + lastFrame: 115.699997 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidRunLeft + takeName: _30_a_U1_M_P_RunForwardTurnRight_NtrlWide__Fb_Dia3m_No_0_PJ_4 + firstFrame: 98.5 + lastFrame: 115.699997 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: .5 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 1 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: .00999999978 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: HumanoidRunTurn(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: 0, y: .957496524, z: -.0550467446} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftUpLeg + position: {x: -.0754494965, y: -.0456640199, z: -1.1546319e-16} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLeg + position: {x: -.0205504987, y: -.409129977, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftFoot + position: {x: -.00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftToes + position: {x: -.00748699997, y: -.0731673017, z: .145427123} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LToeBase_End2 + position: {x: .0126400003, y: -.0131357787, z: .0358933695} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightUpLeg + position: {x: .0754495338, y: -.0456639901, z: -6.21724896e-17} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLeg + position: {x: .0205504671, y: -.409130007, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightFoot + position: {x: .00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightToes + position: {x: .00748699997, y: -.0731673017, z: .145427495} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LToeBase_End3 + position: {x: -.0126400003, y: -.0131357787, z: .0358929969} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Spine + position: {x: -3.97903934e-15, y: .0922631845, z: .0157713313} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Chest + position: {x: -1.13686835e-15, y: .162540287, z: -.00165605545} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftShoulder + position: {x: -.0382859968, y: .221622497, z: -.017063085} + rotation: {x: -.0352291651, y: -.0970438123, z: .134997442, w: .985452831} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftArm + position: {x: -.100502051, y: 1.12508469e-09, z: -1.90390342e-10} + rotation: {x: -.0375410952, y: .102647617, z: -.11081282, w: .987813115} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftForeArm + position: {x: -.254049301, y: -1.05943622e-10, z: 1.09253259e-10} + rotation: {x: .116439298, y: .0291142799, z: -.0214416683, w: .992539465} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHand + position: {x: -.24638927, y: -1.22168442e-10, z: 1.6358968e-11} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -.0751257986, y: -.00784140453, z: .0326526426} + rotation: {x: .0428046882, y: .0563275144, z: .0690078288, w: .995104432} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -.03979728, y: 4.98084119e-05, z: .00118575059} + rotation: {x: -.118420318, y: .0150028728, z: .0166708156, w: .992710233} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -.0279684775, y: -6.41564535e-09, z: -5.14344407e-08} + rotation: {x: 1.22934537e-07, y: .0757973641, z: .0863341093, w: .993378758} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex13 + position: {x: -.0186619665, y: .00437385263, z: -.00384002505} + rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -.0760238245, y: -.00188513438, z: .0101412293} + rotation: {x: -.0333416462, y: .0704228282, z: .072310105, w: .994334102} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -.0442804359, y: 4.79887103e-06, z: -.000425400329} + rotation: {x: -.0331908464, y: -.00512672728, z: .0114875734, w: .999369919} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -.0339648277, y: -1.21844321e-08, z: 3.75247122e-09} + rotation: {x: 7.72997311e-08, y: .00856341887, z: .0601519793, w: .998152494} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle13 + position: {x: -.0196715724, y: .00392557262, z: -.000558814383} + rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -.0656599477, y: -.00782510638, z: -.0322512463} + rotation: {x: -.110300235, y: .0794490576, z: .0742729455, w: .987929761} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -.0308054481, y: -3.08745766e-05, z: -.00144807738} + rotation: {x: -.0721698627, y: -.026309045, z: .0134672271, w: .996954381} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -.0230640266, y: -6.40258941e-06, z: 1.8200554e-08} + rotation: {x: 1.64017492e-05, y: -.0589518994, z: .0381753892, w: .997530639} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky13 + position: {x: -.0169719923, y: .00202882662, z: .00314032286} + rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -.0703021064, y: -.00374530931, z: -.0114117917} + rotation: {x: .0157954507, y: .0917719901, z: .067911014, w: .993336082} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -.0431354567, y: -2.08822912e-05, z: -.00223517814} + rotation: {x: -.134465992, y: -.0260964297, z: .00873295218, w: .990535975} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -.0308355652, y: 1.57836272e-10, z: -1.64560099e-08} + rotation: {x: -1.07102087e-08, y: -.0178772155, z: .0421802364, w: .998950064} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing13 + position: {x: -.0205416381, y: .00325422082, z: .00137918338} + rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -.0142312413, y: -.0123778246, z: .0255316682} + rotation: {x: -.0538494885, y: -.0280063953, z: .0134390658, w: .998065829} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -.0163739994, y: -.00528999977, z: .0234914087} + rotation: {x: -.0260635093, y: .0966894701, z: .00360631011, w: .994966745} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -.0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: .00545505155, y: .000442162534, z: .00682885339, w: .999961793} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb13 + position: {x: -.031868957, y: -.0052999449, z: .0258005001} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: -2.2737367e-15, y: .259009302, z: -.0324132554} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Head + position: {x: 1.42108539e-15, y: .0830703825, z: .0113267815} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: HeadTop_End + position: {x: -5.17045827e-18, y: .188178778, z: .0121086892} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Jaw + position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431} + rotation: {x: .219240054, y: -0, z: -0, w: .975670993} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: JawEND + position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipCorner + position: {x: -.032843262, y: -.01657876, z: .0661217645} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipLower + position: {x: -.0142508168, y: -.0216887593, z: .0822406337} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipCorner + position: {x: .0328399986, y: -.01657876, z: .0661187842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipLower + position: {x: .0142508168, y: -.0216887593, z: .0822387859} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueBack + position: {x: -1.73472344e-20, y: -.022869369, z: .0100954091} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueTip + position: {x: -1.73472344e-20, y: -.0232788119, z: .0383227095} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -.0542440265, y: .0337019488, z: .0594304018} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEye + position: {x: -.0208482333, y: .0825027004, z: .0554274321} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidLower + position: {x: -.0356189571, y: .0650736615, z: .076234743} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidUpper + position: {x: -.0344068967, y: .10060814, z: .0802053064} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftInnerBrow + position: {x: -.0120626912, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftIOuterBrow + position: {x: -.0550398715, y: .114825293, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipUpper + position: {x: -.0145013221, y: -.00511181122, z: .094618842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftNostril + position: {x: -.0178999994, y: .0263128281, z: .0908674002} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: .0542399958, y: .033702828, z: .0594273992} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEye + position: {x: .020849999, y: .082502827, z: .0554273985} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidLower + position: {x: .0356200002, y: .065072827, z: .0762374029} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidUpper + position: {x: .0344099998, y: .100612827, z: .0802073926} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightInnerBrow + position: {x: .0120626874, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightIOuterBrow + position: {x: .0550400019, y: .114822827, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipUpper + position: {x: .0145013221, y: -.00510717137, z: .094617404} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightNostril + position: {x: .0178999994, y: .0263089053, z: .0908706188} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightShoulder + position: {x: .0382860154, y: .221621141, z: -.017063085} + rotation: {x: .141828939, y: .986314952, z: -.0280099791, w: -.0792641193} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightArm + position: {x: -.100501455, y: -2.49664549e-06, z: -5.22836601e-08} + rotation: {x: .111637808, y: .986949325, z: -.0212962627, w: .114081413} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightForeArm + position: {x: .253428251, y: .00601135287, z: -.0167045239} + rotation: {x: .0631985143, y: .018642433, z: -.015235032, w: .997710526} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHand + position: {x: .245373696, y: .0216417722, z: .00555046508} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex1 + position: {x: .0747694969, y: -.00124305359, z: .0343444981} + rotation: {x: .0501321293, y: .106331095, z: -.0250961073, w: .992749035} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex2 + position: {x: .0370584019, y: .00072612107, z: .0145388944} + rotation: {x: -.122100979, y: .0261854436, z: .0384845696, w: .991425633} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex3 + position: {x: .0252250377, y: -.00496646529, z: .0110121462} + rotation: {x: .020532662, y: -.0777138621, z: -.0820816681, w: .993378878} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex17 + position: {x: .019119978, y: .000846308249, z: .00398164755} + rotation: {x: -.00472124433, y: -.101354174, z: -.0462910533, w: .993761659} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: .0756476447, y: .00479140272, z: .0118531818} + rotation: {x: -.0268788524, y: -.00530444877, z: -.0332211144, w: .999072492} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: .0438090637, y: .000194188149, z: .00645493623} + rotation: {x: -.0398189314, y: -.0437413193, z: .0988601372, w: .993341804} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: .0330724716, y: -.00754753686, z: .00168984616} + rotation: {x: .00109003088, y: -.00868621655, z: -.0601307005, w: .998152137} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle17 + position: {x: .0200548954, y: -.000547108881, z: .000442590448} + rotation: {x: -.000701564946, y: -.0125020025, z: -.0560236648, w: .998350918} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: .0668033436, y: -.00199410855, z: -.0307561457} + rotation: {x: -.111875884, y: -.258728623, z: .008804827, w: .959409058} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky2 + position: {x: .0285308417, y: -.001397143, z: -.0116237961} + rotation: {x: .0333822668, y: .00105798536, z: -.0586918108, w: .997717321} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky3 + position: {x: .0214268602, y: -.000553508929, z: -.00851660781} + rotation: {x: -.0126830824, y: .0591105223, z: -.0357504971, w: .99753046} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky17 + position: {x: .016975116, y: .00161137758, z: -.00335797085} + rotation: {x: .000580511638, y: .0944183916, z: -.00612070598, w: .995513618} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing1 + position: {x: .0705984756, y: .00245709647, z: -.00982145779} + rotation: {x: .0182051547, y: -.133755058, z: -.008971164, w: .990806639} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing2 + position: {x: .0428871848, y: -.00137538207, z: -.00494585838} + rotation: {x: .0220806412, y: -.02169968, z: .0796146914, w: .996344924} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing3 + position: {x: .0295006037, y: -.00769293541, z: -.00462225592} + rotation: {x: -.00186249381, y: .0181122273, z: -.0420316532, w: .998950422} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing17 + position: {x: .0206709336, y: -.00200043293, z: -.00177803368} + rotation: {x: .00240248861, y: .0378382765, z: -.063320443, w: .997272789} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb1 + position: {x: .0146849155, y: -.0111049423, z: .0258580949} + rotation: {x: -.0592598654, y: .0142422384, z: .0330153108, w: .997594833} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb2 + position: {x: .0163739994, y: -.00528999977, z: .0234913602} + rotation: {x: -.0260627531, y: -.0966902673, z: -.00360747217, w: .994966745} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: .0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: .0054546264, y: -.000443699653, z: -.00682877563, w: .999961793} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb17 + position: {x: .0318690389, y: -.00529994583, z: .0258005001} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: e8914d097ece7cc48a83d5fccd4098c0, + type: 3} + animationType: 3 + additionalBone: 0 + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurnSharp.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurnSharp.fbx new file mode 100644 index 0000000..9b34126 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurnSharp.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6bf3450e2d88dbfbd15eb39ed65d7d5644ce7d97dc6eedc0d5bd987748ee4ead +size 534944 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurnSharp.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurnSharp.fbx.meta new file mode 100644 index 0000000..9e31b04 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidRunTurnSharp.fbx.meta @@ -0,0 +1,1404 @@ +fileFormatVersion: 2 +guid: f2bed5dc5afacff44a00de8daae9703b +ModelImporter: + serializedVersion: 18 + fileIDToRecycleName: + 100000: Chest + 100002: chestProxy_geo + 100004: //RootNode + 100006: Head + 100008: headProxy_geo + 100010: HeadTop_End + 100012: Hips + 100014: Jaw + 100016: JawEND + 100018: jawProxy_geo + 100020: l_ankleProxy_geo + 100022: l_ballProxy_geo + 100024: l_clavicleProxy_geo + 100026: l_erbowProxy_geo + 100028: l_hipProxy_geo + 100030: l_indexProxy_01_geo + 100032: l_indexProxy_02_geo + 100034: l_indexProxy_03_geo + 100036: l_kneeProxy_geo + 100038: l_middleProxy_01_geo + 100040: l_middleProxy_02_geo + 100042: l_middleProxy_03_geo + 100044: l_pinkyProxy_01_geo + 100046: l_pinkyProxy_02_geo + 100048: l_pinkyProxy_03_geo + 100050: l_ringProxy_01_geo + 100052: l_ringProxy_02_geo + 100054: l_ringProxy_03_geo + 100056: l_shourderProxy_geo + 100058: l_thumbProxy_01_geo + 100060: l_thumbProxy_02_geo + 100062: l_thumbProxy_03_geo + 100064: l_UNI_eye + 100066: l_wristProxy_geo + 100068: LeftArm + 100070: LeftCheek + 100072: LeftEye + 100074: LeftEyelidLower + 100076: LeftEyelidUpper + 100078: LeftFoot + 100080: LeftForeArm + 100082: LeftHand + 100084: LeftHandIndex1 + 100086: LeftHandIndex13 + 100088: LeftHandIndex17 + 100090: LeftHandIndex2 + 100092: LeftHandIndex3 + 100094: LeftHandMiddle1 + 100096: LeftHandMiddle13 + 100098: LeftHandMiddle17 + 100100: LeftHandMiddle2 + 100102: LeftHandMiddle3 + 100104: LeftHandPinky1 + 100106: LeftHandPinky13 + 100108: LeftHandPinky17 + 100110: LeftHandPinky2 + 100112: LeftHandPinky3 + 100114: LeftHandRing1 + 100116: LeftHandRing13 + 100118: LeftHandRing17 + 100120: LeftHandRing2 + 100122: LeftHandRing3 + 100124: LeftHandThumb1 + 100126: LeftHandThumb13 + 100128: LeftHandThumb17 + 100130: LeftHandThumb2 + 100132: LeftHandThumb3 + 100134: LeftInnerBrow + 100136: LeftIOuterBrow + 100138: LeftLeg + 100140: LeftLipCorner + 100142: LeftLipLower + 100144: LeftLipUpper + 100146: LeftNostril + 100148: LeftShoulder + 100150: LeftToes + 100152: LeftUpLeg + 100154: LToeBase_End2 + 100156: LToeBase_End3 + 100158: Neck + 100160: neckProxy_geo + 100162: pelvisProxy_geo + 100164: Pivot + 100166: r_ankleProxy_geo + 100168: r_ballProxy_geo + 100170: r_clavicleProxy_geo + 100172: r_erbowProxy_geo + 100174: r_hipProxy_geo + 100176: r_indexProxy_01_geo + 100178: r_indexProxy_02_geo + 100180: r_indexProxy_03_geo + 100182: r_kneeProxy_geo + 100184: r_middleProxy_01_geo + 100186: r_middleProxy_02_geo + 100188: r_middleProxy_03_geo + 100190: r_pinkyProxy_01_geo + 100192: r_pinkyProxy_02_geo + 100194: r_pinkyProxy_03_geo + 100196: r_ringProxy_01_geo + 100198: r_ringProxy_02_geo + 100200: r_ringProxy_03_geo + 100202: r_shourderProxy_geo + 100204: r_thumbProxy_01_geo + 100206: r_thumbProxy_02_geo + 100208: r_thumbProxy_03_geo + 100210: r_UNI_eye + 100212: r_wristProxy_geo + 100214: Reference + 100216: RightArm + 100218: RightCheek + 100220: RightEye + 100222: RightEyelidLower + 100224: RightEyelidUpper + 100226: RightFoot + 100228: RightForeArm + 100230: RightHand + 100232: RightHandIndex1 + 100234: RightHandIndex2 + 100236: RightHandIndex3 + 100238: RightHandMiddle1 + 100240: RightHandMiddle2 + 100242: RightHandMiddle3 + 100244: RightHandPinky1 + 100246: RightHandPinky2 + 100248: RightHandPinky3 + 100250: RightHandRing1 + 100252: RightHandRing2 + 100254: RightHandRing3 + 100256: RightHandThumb1 + 100258: RightHandThumb2 + 100260: RightHandThumb3 + 100262: RightInnerBrow + 100264: RightIOuterBrow + 100266: RightLeg + 100268: RightLipCorner + 100270: RightLipLower + 100272: RightLipUpper + 100274: RightNostril + 100276: RightShoulder + 100278: RightToes + 100280: RightUpLeg + 100282: Root + 100284: Spine + 100286: spineProxy_geo + 100288: TongueBack + 100290: TongueTip + 100292: UNI_01_Lower_teethProxy + 100294: UNI_01_TongueBaseProxy + 100296: UNI_01_TongueTipProxy + 100298: UNI_01_Upper_teethProxy + 400000: Chest + 400002: chestProxy_geo + 400004: //RootNode + 400006: Head + 400008: headProxy_geo + 400010: HeadTop_End + 400012: Hips + 400014: Jaw + 400016: JawEND + 400018: jawProxy_geo + 400020: l_ankleProxy_geo + 400022: l_ballProxy_geo + 400024: l_clavicleProxy_geo + 400026: l_erbowProxy_geo + 400028: l_hipProxy_geo + 400030: l_indexProxy_01_geo + 400032: l_indexProxy_02_geo + 400034: l_indexProxy_03_geo + 400036: l_kneeProxy_geo + 400038: l_middleProxy_01_geo + 400040: l_middleProxy_02_geo + 400042: l_middleProxy_03_geo + 400044: l_pinkyProxy_01_geo + 400046: l_pinkyProxy_02_geo + 400048: l_pinkyProxy_03_geo + 400050: l_ringProxy_01_geo + 400052: l_ringProxy_02_geo + 400054: l_ringProxy_03_geo + 400056: l_shourderProxy_geo + 400058: l_thumbProxy_01_geo + 400060: l_thumbProxy_02_geo + 400062: l_thumbProxy_03_geo + 400064: l_UNI_eye + 400066: l_wristProxy_geo + 400068: LeftArm + 400070: LeftCheek + 400072: LeftEye + 400074: LeftEyelidLower + 400076: LeftEyelidUpper + 400078: LeftFoot + 400080: LeftForeArm + 400082: LeftHand + 400084: LeftHandIndex1 + 400086: LeftHandIndex13 + 400088: LeftHandIndex17 + 400090: LeftHandIndex2 + 400092: LeftHandIndex3 + 400094: LeftHandMiddle1 + 400096: LeftHandMiddle13 + 400098: LeftHandMiddle17 + 400100: LeftHandMiddle2 + 400102: LeftHandMiddle3 + 400104: LeftHandPinky1 + 400106: LeftHandPinky13 + 400108: LeftHandPinky17 + 400110: LeftHandPinky2 + 400112: LeftHandPinky3 + 400114: LeftHandRing1 + 400116: LeftHandRing13 + 400118: LeftHandRing17 + 400120: LeftHandRing2 + 400122: LeftHandRing3 + 400124: LeftHandThumb1 + 400126: LeftHandThumb13 + 400128: LeftHandThumb17 + 400130: LeftHandThumb2 + 400132: LeftHandThumb3 + 400134: LeftInnerBrow + 400136: LeftIOuterBrow + 400138: LeftLeg + 400140: LeftLipCorner + 400142: LeftLipLower + 400144: LeftLipUpper + 400146: LeftNostril + 400148: LeftShoulder + 400150: LeftToes + 400152: LeftUpLeg + 400154: LToeBase_End2 + 400156: LToeBase_End3 + 400158: Neck + 400160: neckProxy_geo + 400162: pelvisProxy_geo + 400164: Pivot + 400166: r_ankleProxy_geo + 400168: r_ballProxy_geo + 400170: r_clavicleProxy_geo + 400172: r_erbowProxy_geo + 400174: r_hipProxy_geo + 400176: r_indexProxy_01_geo + 400178: r_indexProxy_02_geo + 400180: r_indexProxy_03_geo + 400182: r_kneeProxy_geo + 400184: r_middleProxy_01_geo + 400186: r_middleProxy_02_geo + 400188: r_middleProxy_03_geo + 400190: r_pinkyProxy_01_geo + 400192: r_pinkyProxy_02_geo + 400194: r_pinkyProxy_03_geo + 400196: r_ringProxy_01_geo + 400198: r_ringProxy_02_geo + 400200: r_ringProxy_03_geo + 400202: r_shourderProxy_geo + 400204: r_thumbProxy_01_geo + 400206: r_thumbProxy_02_geo + 400208: r_thumbProxy_03_geo + 400210: r_UNI_eye + 400212: r_wristProxy_geo + 400214: Reference + 400216: RightArm + 400218: RightCheek + 400220: RightEye + 400222: RightEyelidLower + 400224: RightEyelidUpper + 400226: RightFoot + 400228: RightForeArm + 400230: RightHand + 400232: RightHandIndex1 + 400234: RightHandIndex2 + 400236: RightHandIndex3 + 400238: RightHandMiddle1 + 400240: RightHandMiddle2 + 400242: RightHandMiddle3 + 400244: RightHandPinky1 + 400246: RightHandPinky2 + 400248: RightHandPinky3 + 400250: RightHandRing1 + 400252: RightHandRing2 + 400254: RightHandRing3 + 400256: RightHandThumb1 + 400258: RightHandThumb2 + 400260: RightHandThumb3 + 400262: RightInnerBrow + 400264: RightIOuterBrow + 400266: RightLeg + 400268: RightLipCorner + 400270: RightLipLower + 400272: RightLipUpper + 400274: RightNostril + 400276: RightShoulder + 400278: RightToes + 400280: RightUpLeg + 400282: Root + 400284: Spine + 400286: spineProxy_geo + 400288: TongueBack + 400290: TongueTip + 400292: UNI_01_Lower_teethProxy + 400294: UNI_01_TongueBaseProxy + 400296: UNI_01_TongueTipProxy + 400298: UNI_01_Upper_teethProxy + 2300000: chestProxy_geo + 2300002: headProxy_geo + 2300004: jawProxy_geo + 2300006: l_ankleProxy_geo + 2300008: l_ballProxy_geo + 2300010: l_clavicleProxy_geo + 2300012: l_erbowProxy_geo + 2300014: l_hipProxy_geo + 2300016: l_indexProxy_01_geo + 2300018: l_indexProxy_02_geo + 2300020: l_indexProxy_03_geo + 2300022: l_kneeProxy_geo + 2300024: l_middleProxy_01_geo + 2300026: l_middleProxy_02_geo + 2300028: l_middleProxy_03_geo + 2300030: l_pinkyProxy_01_geo + 2300032: l_pinkyProxy_02_geo + 2300034: l_pinkyProxy_03_geo + 2300036: l_ringProxy_01_geo + 2300038: l_ringProxy_02_geo + 2300040: l_ringProxy_03_geo + 2300042: l_shourderProxy_geo + 2300044: l_thumbProxy_01_geo + 2300046: l_thumbProxy_02_geo + 2300048: l_thumbProxy_03_geo + 2300050: l_UNI_eye + 2300052: l_wristProxy_geo + 2300054: neckProxy_geo + 2300056: pelvisProxy_geo + 2300058: r_ankleProxy_geo + 2300060: r_ballProxy_geo + 2300062: r_clavicleProxy_geo + 2300064: r_erbowProxy_geo + 2300066: r_hipProxy_geo + 2300068: r_indexProxy_01_geo + 2300070: r_indexProxy_02_geo + 2300072: r_indexProxy_03_geo + 2300074: r_kneeProxy_geo + 2300076: r_middleProxy_01_geo + 2300078: r_middleProxy_02_geo + 2300080: r_middleProxy_03_geo + 2300082: r_pinkyProxy_01_geo + 2300084: r_pinkyProxy_02_geo + 2300086: r_pinkyProxy_03_geo + 2300088: r_ringProxy_01_geo + 2300090: r_ringProxy_02_geo + 2300092: r_ringProxy_03_geo + 2300094: r_shourderProxy_geo + 2300096: r_thumbProxy_01_geo + 2300098: r_thumbProxy_02_geo + 2300100: r_thumbProxy_03_geo + 2300102: r_UNI_eye + 2300104: r_wristProxy_geo + 2300106: spineProxy_geo + 2300108: UNI_01_Lower_teethProxy + 2300110: UNI_01_TongueBaseProxy + 2300112: UNI_01_TongueTipProxy + 2300114: UNI_01_Upper_teethProxy + 3300000: chestProxy_geo + 3300002: headProxy_geo + 3300004: jawProxy_geo + 3300006: l_ankleProxy_geo + 3300008: l_ballProxy_geo + 3300010: l_clavicleProxy_geo + 3300012: l_erbowProxy_geo + 3300014: l_hipProxy_geo + 3300016: l_indexProxy_01_geo + 3300018: l_indexProxy_02_geo + 3300020: l_indexProxy_03_geo + 3300022: l_kneeProxy_geo + 3300024: l_middleProxy_01_geo + 3300026: l_middleProxy_02_geo + 3300028: l_middleProxy_03_geo + 3300030: l_pinkyProxy_01_geo + 3300032: l_pinkyProxy_02_geo + 3300034: l_pinkyProxy_03_geo + 3300036: l_ringProxy_01_geo + 3300038: l_ringProxy_02_geo + 3300040: l_ringProxy_03_geo + 3300042: l_shourderProxy_geo + 3300044: l_thumbProxy_01_geo + 3300046: l_thumbProxy_02_geo + 3300048: l_thumbProxy_03_geo + 3300050: l_UNI_eye + 3300052: l_wristProxy_geo + 3300054: neckProxy_geo + 3300056: pelvisProxy_geo + 3300058: r_ankleProxy_geo + 3300060: r_ballProxy_geo + 3300062: r_clavicleProxy_geo + 3300064: r_erbowProxy_geo + 3300066: r_hipProxy_geo + 3300068: r_indexProxy_01_geo + 3300070: r_indexProxy_02_geo + 3300072: r_indexProxy_03_geo + 3300074: r_kneeProxy_geo + 3300076: r_middleProxy_01_geo + 3300078: r_middleProxy_02_geo + 3300080: r_middleProxy_03_geo + 3300082: r_pinkyProxy_01_geo + 3300084: r_pinkyProxy_02_geo + 3300086: r_pinkyProxy_03_geo + 3300088: r_ringProxy_01_geo + 3300090: r_ringProxy_02_geo + 3300092: r_ringProxy_03_geo + 3300094: r_shourderProxy_geo + 3300096: r_thumbProxy_01_geo + 3300098: r_thumbProxy_02_geo + 3300100: r_thumbProxy_03_geo + 3300102: r_UNI_eye + 3300104: r_wristProxy_geo + 3300106: spineProxy_geo + 3300108: UNI_01_Lower_teethProxy + 3300110: UNI_01_TongueBaseProxy + 3300112: UNI_01_TongueTipProxy + 3300114: UNI_01_Upper_teethProxy + 4300000: l_UNI_eye + 4300002: r_UNI_eye + 4300004: UNI_01_TongueBaseProxy + 4300006: UNI_01_TongueTipProxy + 4300008: UNI_01_Lower_teethProxy + 4300010: jawProxy_geo + 4300012: headProxy_geo + 4300014: UNI_01_Upper_teethProxy + 4300016: neckProxy_geo + 4300018: r_pinkyProxy_03_geo + 4300020: r_pinkyProxy_02_geo + 4300022: r_pinkyProxy_01_geo + 4300024: r_ringProxy_03_geo + 4300026: r_ringProxy_02_geo + 4300028: r_ringProxy_01_geo + 4300030: r_middleProxy_03_geo + 4300032: r_middleProxy_02_geo + 4300034: r_middleProxy_01_geo + 4300036: r_indexProxy_03_geo + 4300038: r_indexProxy_02_geo + 4300040: r_indexProxy_01_geo + 4300042: r_thumbProxy_03_geo + 4300044: r_thumbProxy_02_geo + 4300046: r_thumbProxy_01_geo + 4300048: r_wristProxy_geo + 4300050: r_erbowProxy_geo + 4300052: r_shourderProxy_geo + 4300054: r_clavicleProxy_geo + 4300056: chestProxy_geo + 4300058: l_pinkyProxy_03_geo + 4300060: l_pinkyProxy_02_geo + 4300062: l_pinkyProxy_01_geo + 4300064: l_ringProxy_03_geo + 4300066: l_ringProxy_02_geo + 4300068: l_ringProxy_01_geo + 4300070: l_middleProxy_03_geo + 4300072: l_middleProxy_02_geo + 4300074: l_middleProxy_01_geo + 4300076: l_indexProxy_03_geo + 4300078: l_indexProxy_02_geo + 4300080: l_indexProxy_01_geo + 4300082: l_thumbProxy_03_geo + 4300084: l_thumbProxy_02_geo + 4300086: l_thumbProxy_01_geo + 4300088: l_wristProxy_geo + 4300090: l_erbowProxy_geo + 4300092: l_shourderProxy_geo + 4300094: l_clavicleProxy_geo + 4300096: spineProxy_geo + 4300098: r_ballProxy_geo + 4300100: r_ankleProxy_geo + 4300102: r_kneeProxy_geo + 4300104: r_hipProxy_geo + 4300106: pelvisProxy_geo + 4300108: l_ballProxy_geo + 4300110: l_ankleProxy_geo + 4300112: l_kneeProxy_geo + 4300114: l_hipProxy_geo + 7400000: HumanoidRunRightSharp + 7400002: HumanoidRunLeftSharp + 9500000: //RootNode + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + optimizeGameObjects: 0 + motionNodeName: + pivotNodeName: + animationCompression: 0 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: HumanoidRunRightSharp + takeName: _31_a_U1_M_P_RunForwardTurnRight_NtrlMedium__Fb_Dia2m_No_0_PJ_4 + firstFrame: 76.4000015 + lastFrame: 91.5999985 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidRunLeftSharp + takeName: _31_a_U1_M_P_RunForwardTurnRight_NtrlMedium__Fb_Dia2m_No_0_PJ_4 + firstFrame: 76.4000015 + lastFrame: 91.5999985 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: .5 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 1 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: .00999999978 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: HumanoidRunTurnSharp(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: -1.1920929e-07, y: .978280783, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftUpLeg + position: {x: -.0754494965, y: -.0456640199, z: 7.1054272e-17} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLeg + position: {x: -.0205504987, y: -.409129977, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftFoot + position: {x: -.00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftToes + position: {x: -.00748699997, y: -.0731673017, z: .145427123} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightUpLeg + position: {x: .0754495338, y: -.0456639901, z: -1.06581408e-16} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLeg + position: {x: .0205504671, y: -.409130007, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightFoot + position: {x: .00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightToes + position: {x: .00748699997, y: -.0731673017, z: .145427495} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Spine + position: {x: -3.41060506e-15, y: .0922631845, z: .0157713313} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Chest + position: {x: 2.84217088e-16, y: .162540287, z: -.00165605545} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftShoulder + position: {x: -.0382859968, y: .221622497, z: -.017063085} + rotation: {x: -.0214740429, y: -.0649306327, z: .149301186, w: .98642391} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftArm + position: {x: -.100502051, y: 1.12508303e-09, z: -1.90391064e-10} + rotation: {x: .0582441725, y: .0541966818, z: -.143146858, w: .986498594} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftForeArm + position: {x: -.254049301, y: -1.05876266e-10, z: 1.09272799e-10} + rotation: {x: .370735109, y: .0307997242, z: -.00505082868, w: .928214133} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHand + position: {x: -.24638927, y: -1.18688351e-10, z: 1.88802567e-11} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -.0751257986, y: -.00784140453, z: .0326526426} + rotation: {x: .0285248309, y: .0622748137, z: .0811907127, w: .994342148} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -.03979728, y: 4.98084119e-05, z: .00118575059} + rotation: {x: -.112918295, y: .0147299161, z: .0200799461, w: .993292153} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -.0279684775, y: -6.41415321e-09, z: -5.14323091e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -.0760238245, y: -.00188513438, z: .0101412293} + rotation: {x: -.0297813602, y: .0698117316, z: .0790310055, w: .99397862} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -.0442804359, y: 4.79885148e-06, z: -.000425400329} + rotation: {x: -.03165837, y: -.00521096354, z: .0131377848, w: .999398887} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -.0339648277, y: -1.21832722e-08, z: 3.75169362e-09} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -.0656599477, y: -.00782510638, z: -.0322512463} + rotation: {x: -.0942266807, y: .0761036873, z: .0781878233, w: .989553571} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -.0308054481, y: -3.08745803e-05, z: -.00144807738} + rotation: {x: -.0721703544, y: -.0263085775, z: .0134690031, w: .996954322} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -.0230640266, y: -6.40258941e-06, z: 1.81994846e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -.0703021064, y: -.00374530931, z: -.0114117917} + rotation: {x: .0153381936, y: .0918124318, z: .0732276663, w: .992961764} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -.0431354567, y: -2.0882293e-05, z: -.00223517814} + rotation: {x: -.134465471, y: -.0260947198, z: .00873644277, w: .990536094} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -.0308355652, y: 1.59126615e-10, z: -1.64565179e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -.0142312413, y: -.0123778246, z: .0255316682} + rotation: {x: -.264946133, y: -.078369908, z: -.144285843, w: .950180709} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -.0163739994, y: -.00528999977, z: .0234914087} + rotation: {x: -.0260620788, y: .0966867208, z: .00360709406, w: .994967103} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -.0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: -0, y: .259009302, z: -.0324132554} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Head + position: {x: 5.68434176e-16, y: .0830703825, z: .0113267815} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Jaw + position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431} + rotation: {x: .219240054, y: -0, z: -0, w: .975670993} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: JawEND + position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipCorner + position: {x: -.032843262, y: -.01657876, z: .0661217645} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipLower + position: {x: -.0142508168, y: -.0216887593, z: .0822406337} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipCorner + position: {x: .0328399986, y: -.01657876, z: .0661187842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipLower + position: {x: .0142508168, y: -.0216887593, z: .0822387859} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueBack + position: {x: -1.73472344e-20, y: -.022869369, z: .0100954091} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueTip + position: {x: -1.73472344e-20, y: -.0232788119, z: .0383227095} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -.0542440265, y: .0337019488, z: .0594304018} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEye + position: {x: -.0208482333, y: .0825027004, z: .0554274321} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidLower + position: {x: -.0356189571, y: .0650736615, z: .076234743} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidUpper + position: {x: -.0344068967, y: .10060814, z: .0802053064} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftInnerBrow + position: {x: -.0120626912, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftIOuterBrow + position: {x: -.0550398715, y: .114825293, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipUpper + position: {x: -.0145013221, y: -.00511181122, z: .094618842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftNostril + position: {x: -.0178999994, y: .0263128281, z: .0908674002} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: .0542399958, y: .033702828, z: .0594273992} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEye + position: {x: .020849999, y: .082502827, z: .0554273985} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidLower + position: {x: .0356200002, y: .065072827, z: .0762374029} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidUpper + position: {x: .0344099998, y: .100612827, z: .0802073926} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightInnerBrow + position: {x: .0120626874, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightIOuterBrow + position: {x: .0550400019, y: .114822827, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipUpper + position: {x: .0145013221, y: -.00510717137, z: .094617404} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightNostril + position: {x: .0178999994, y: .0263089053, z: .0908706188} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightShoulder + position: {x: .0382860154, y: .221621141, z: -.017063085} + rotation: {x: .161830962, y: .986479342, z: -.00653582299, w: -.0250314958} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightArm + position: {x: -.100501455, y: -2.49664549e-06, z: -5.22836601e-08} + rotation: {x: .140205517, y: .987173378, z: -.0505189113, w: .0572623983} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightForeArm + position: {x: .253428251, y: .00601135287, z: -.0167045239} + rotation: {x: .225095123, y: .0257679857, z: -.0287355334, w: .973572075} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHand + position: {x: .245373696, y: .0216417722, z: .00555046508} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex1 + position: {x: .0747694969, y: -.00124305382, z: .0343444981} + rotation: {x: .0386432037, y: .0996977985, z: -.0396457911, w: .993476391} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex2 + position: {x: .0370584019, y: .00072612107, z: .0145388944} + rotation: {x: -.115742981, y: .0259806179, z: .0374040864, w: .992234588} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex3 + position: {x: .0252250377, y: -.00496646529, z: .0110121462} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: .0756476447, y: .00479140272, z: .0118531818} + rotation: {x: -.022765018, y: -.00453316933, z: -.0396077782, w: .998945653} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: .0438090637, y: .000194188149, z: .00645493623} + rotation: {x: -.0381342135, y: -.0438377894, z: .0973902121, w: .99354881} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: .0330724716, y: -.00754753686, z: .00168984616} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: .0668033436, y: -.00199410855, z: -.0307561457} + rotation: {x: -.0966819078, y: -.255429536, z: .00254705478, w: .961978137} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky2 + position: {x: .0285308417, y: -.001397143, z: -.0116237961} + rotation: {x: -.000170628467, y: -.00966134761, z: -.00536240125, w: .999938965} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky3 + position: {x: .0214268602, y: -.000553508929, z: -.00851660781} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing1 + position: {x: .0705984756, y: .00245709647, z: -.00982145779} + rotation: {x: .0176409222, y: -.133800521, z: -.0142867193, w: .990748286} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing2 + position: {x: .0428871848, y: -.00137538207, z: -.00494585838} + rotation: {x: .000484485121, y: -.021289764, z: .0698614791, w: .997329414} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing3 + position: {x: .0295006037, y: -.00769293541, z: -.00462225592} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb1 + position: {x: .0146849155, y: -.0111049423, z: .0258580968} + rotation: {x: -.189051896, y: .0108967666, z: .125017971, w: .973915398} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb2 + position: {x: .0163739994, y: -.00528999977, z: .0234913602} + rotation: {x: -.0260628108, y: -.0966901109, z: -.00360712246, w: .994966745} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: .0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: e8914d097ece7cc48a83d5fccd4098c0, + type: 3} + animationType: 3 + additionalBone: 0 + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidStandTurn.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidStandTurn.fbx new file mode 100644 index 0000000..abb706b --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidStandTurn.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4912bc19915b2e63f808a5f15020978126ea6043b75cd52b93d84d10d51523a1 +size 1130880 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidStandTurn.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidStandTurn.fbx.meta new file mode 100644 index 0000000..367e084 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidStandTurn.fbx.meta @@ -0,0 +1,1610 @@ +fileFormatVersion: 2 +guid: 6fb3851da6a6f5948ab6892bee8ba920 +ModelImporter: + serializedVersion: 18 + fileIDToRecycleName: + 100000: //RootNode + 100002: Character_Ctrl:Reference + 100004: Chest + 100006: ChestEndEffector + 100008: ChestOriginEffector + 100010: chestProxy_geo + 100012: Head + 100014: Head 1 + 100016: HeadEffector + 100018: headProxy_geo + 100020: HeadTop_End + 100022: Hips + 100024: Hips 1 + 100026: HipsEffector + 100028: Jaw + 100030: JawEND + 100032: jawProxy_geo + 100034: l_ankleProxy_geo + 100036: l_ballProxy_geo + 100038: l_clavicleProxy_geo + 100040: l_erbowProxy_geo + 100042: l_hipProxy_geo + 100044: l_indexProxy_01_geo + 100046: l_indexProxy_02_geo + 100048: l_indexProxy_03_geo + 100050: l_kneeProxy_geo + 100052: l_middleProxy_01_geo + 100054: l_middleProxy_02_geo + 100056: l_middleProxy_03_geo + 100058: l_pinkyProxy_01_geo + 100060: l_pinkyProxy_02_geo + 100062: l_pinkyProxy_03_geo + 100064: l_ringProxy_01_geo + 100066: l_ringProxy_02_geo + 100068: l_ringProxy_03_geo + 100070: l_shourderProxy_geo + 100072: l_thumbProxy_01_geo + 100074: l_thumbProxy_02_geo + 100076: l_thumbProxy_03_geo + 100078: l_UNI_eye + 100080: l_wristProxy_geo + 100082: LeftAnkleEffector + 100084: LeftArm + 100086: LeftArm 1 + 100088: LeftCheek + 100090: LeftElbowEffector + 100092: LeftEye + 100094: LeftEyelidLower + 100096: LeftEyelidUpper + 100098: LeftFoot + 100100: LeftFoot 1 + 100102: LeftForeArm + 100104: LeftForeArm 1 + 100106: LeftHand + 100108: LeftHand 1 + 100110: LeftHandIndex1 + 100112: LeftHandIndex13 + 100114: LeftHandIndex17 + 100116: LeftHandIndex2 + 100118: LeftHandIndex3 + 100120: LeftHandIndex4 + 100122: LeftHandIndex5 + 100124: LeftHandIndex6 + 100126: LeftHandIndexEffector + 100128: LeftHandMiddle1 + 100130: LeftHandMiddle13 + 100132: LeftHandMiddle17 + 100134: LeftHandMiddle2 + 100136: LeftHandMiddle3 + 100138: LeftHandMiddle4 + 100140: LeftHandMiddle5 + 100142: LeftHandMiddle6 + 100144: LeftHandMiddleEffector + 100146: LeftHandPinky1 + 100148: LeftHandPinky13 + 100150: LeftHandPinky17 + 100152: LeftHandPinky2 + 100154: LeftHandPinky3 + 100156: LeftHandPinky4 + 100158: LeftHandPinky5 + 100160: LeftHandPinky6 + 100162: LeftHandPinkyEffector + 100164: LeftHandRing1 + 100166: LeftHandRing13 + 100168: LeftHandRing17 + 100170: LeftHandRing2 + 100172: LeftHandRing3 + 100174: LeftHandRing4 + 100176: LeftHandRing5 + 100178: LeftHandRing6 + 100180: LeftHandRingEffector + 100182: LeftHandThumb1 + 100184: LeftHandThumb13 + 100186: LeftHandThumb17 + 100188: LeftHandThumb2 + 100190: LeftHandThumb3 + 100192: LeftHandThumb4 + 100194: LeftHandThumb5 + 100196: LeftHandThumb6 + 100198: LeftHandThumbEffector + 100200: LeftHipEffector + 100202: LeftInnerBrow + 100204: LeftIOuterBrow + 100206: LeftKneeEffector + 100208: LeftLeg + 100210: LeftLeg 1 + 100212: LeftLipCorner + 100214: LeftLipLower + 100216: LeftLipUpper + 100218: LeftNostril + 100220: LeftShoulder + 100222: LeftShoulder 1 + 100224: LeftShoulderEffector + 100226: LeftToes + 100228: LeftUpLeg + 100230: LeftUpLeg 1 + 100232: LeftWristEffector + 100234: LToeBase_End2 + 100236: LToeBase_End3 + 100238: Neck + 100240: Neck 1 + 100242: neckProxy_geo + 100244: pelvisProxy_geo + 100246: r_ankleProxy_geo + 100248: r_ballProxy_geo + 100250: r_clavicleProxy_geo + 100252: r_erbowProxy_geo + 100254: r_hipProxy_geo + 100256: r_indexProxy_01_geo + 100258: r_indexProxy_02_geo + 100260: r_indexProxy_03_geo + 100262: r_kneeProxy_geo + 100264: r_middleProxy_01_geo + 100266: r_middleProxy_02_geo + 100268: r_middleProxy_03_geo + 100270: r_pinkyProxy_01_geo + 100272: r_pinkyProxy_02_geo + 100274: r_pinkyProxy_03_geo + 100276: r_ringProxy_01_geo + 100278: r_ringProxy_02_geo + 100280: r_ringProxy_03_geo + 100282: r_shourderProxy_geo + 100284: r_thumbProxy_01_geo + 100286: r_thumbProxy_02_geo + 100288: r_thumbProxy_03_geo + 100290: r_UNI_eye + 100292: r_wristProxy_geo + 100294: Reference + 100296: RightAnkleEffector + 100298: RightArm + 100300: RightArm 1 + 100302: RightCheek + 100304: RightElbowEffector + 100306: RightEye + 100308: RightEyelidLower + 100310: RightEyelidUpper + 100312: RightFoot + 100314: RightFoot 1 + 100316: RightForeArm + 100318: RightForeArm 1 + 100320: RightHand + 100322: RightHand 1 + 100324: RightHandIndex1 + 100326: RightHandIndex2 + 100328: RightHandIndex3 + 100330: RightHandIndex4 + 100332: RightHandIndex5 + 100334: RightHandIndex6 + 100336: RightHandIndexEffector + 100338: RightHandMiddle1 + 100340: RightHandMiddle2 + 100342: RightHandMiddle3 + 100344: RightHandMiddle4 + 100346: RightHandMiddle5 + 100348: RightHandMiddle6 + 100350: RightHandMiddleEffector + 100352: RightHandPinky1 + 100354: RightHandPinky2 + 100356: RightHandPinky3 + 100358: RightHandPinky4 + 100360: RightHandPinky5 + 100362: RightHandPinky6 + 100364: RightHandPinkyEffector + 100366: RightHandRing1 + 100368: RightHandRing2 + 100370: RightHandRing3 + 100372: RightHandRing4 + 100374: RightHandRing5 + 100376: RightHandRing6 + 100378: RightHandRingEffector + 100380: RightHandThumb1 + 100382: RightHandThumb2 + 100384: RightHandThumb3 + 100386: RightHandThumb4 + 100388: RightHandThumb5 + 100390: RightHandThumb6 + 100392: RightHandThumbEffector + 100394: RightHipEffector + 100396: RightInnerBrow + 100398: RightIOuterBrow + 100400: RightKneeEffector + 100402: RightLeg + 100404: RightLeg 1 + 100406: RightLipCorner + 100408: RightLipLower + 100410: RightLipUpper + 100412: RightNostril + 100414: RightShoulder + 100416: RightShoulder 1 + 100418: RightShoulderEffector + 100420: RightToes + 100422: RightUpLeg + 100424: RightUpLeg 1 + 100426: RightWristEffector + 100428: Spine + 100430: Spine 1 + 100432: Spine1 + 100434: spineProxy_geo + 100436: TongueBack + 100438: TongueTip + 100440: UNI_01_Lower_teethProxy + 100442: UNI_01_TongueBaseProxy + 100444: UNI_01_TongueTipProxy + 100446: UNI_01_Upper_teethProxy + 400000: //RootNode + 400002: Character_Ctrl:Reference + 400004: Chest + 400006: ChestEndEffector + 400008: ChestOriginEffector + 400010: chestProxy_geo + 400012: Head + 400014: Head 1 + 400016: HeadEffector + 400018: headProxy_geo + 400020: HeadTop_End + 400022: Hips + 400024: Hips 1 + 400026: HipsEffector + 400028: Jaw + 400030: JawEND + 400032: jawProxy_geo + 400034: l_ankleProxy_geo + 400036: l_ballProxy_geo + 400038: l_clavicleProxy_geo + 400040: l_erbowProxy_geo + 400042: l_hipProxy_geo + 400044: l_indexProxy_01_geo + 400046: l_indexProxy_02_geo + 400048: l_indexProxy_03_geo + 400050: l_kneeProxy_geo + 400052: l_middleProxy_01_geo + 400054: l_middleProxy_02_geo + 400056: l_middleProxy_03_geo + 400058: l_pinkyProxy_01_geo + 400060: l_pinkyProxy_02_geo + 400062: l_pinkyProxy_03_geo + 400064: l_ringProxy_01_geo + 400066: l_ringProxy_02_geo + 400068: l_ringProxy_03_geo + 400070: l_shourderProxy_geo + 400072: l_thumbProxy_01_geo + 400074: l_thumbProxy_02_geo + 400076: l_thumbProxy_03_geo + 400078: l_UNI_eye + 400080: l_wristProxy_geo + 400082: LeftAnkleEffector + 400084: LeftArm + 400086: LeftArm 1 + 400088: LeftCheek + 400090: LeftElbowEffector + 400092: LeftEye + 400094: LeftEyelidLower + 400096: LeftEyelidUpper + 400098: LeftFoot + 400100: LeftFoot 1 + 400102: LeftForeArm + 400104: LeftForeArm 1 + 400106: LeftHand + 400108: LeftHand 1 + 400110: LeftHandIndex1 + 400112: LeftHandIndex13 + 400114: LeftHandIndex17 + 400116: LeftHandIndex2 + 400118: LeftHandIndex3 + 400120: LeftHandIndex4 + 400122: LeftHandIndex5 + 400124: LeftHandIndex6 + 400126: LeftHandIndexEffector + 400128: LeftHandMiddle1 + 400130: LeftHandMiddle13 + 400132: LeftHandMiddle17 + 400134: LeftHandMiddle2 + 400136: LeftHandMiddle3 + 400138: LeftHandMiddle4 + 400140: LeftHandMiddle5 + 400142: LeftHandMiddle6 + 400144: LeftHandMiddleEffector + 400146: LeftHandPinky1 + 400148: LeftHandPinky13 + 400150: LeftHandPinky17 + 400152: LeftHandPinky2 + 400154: LeftHandPinky3 + 400156: LeftHandPinky4 + 400158: LeftHandPinky5 + 400160: LeftHandPinky6 + 400162: LeftHandPinkyEffector + 400164: LeftHandRing1 + 400166: LeftHandRing13 + 400168: LeftHandRing17 + 400170: LeftHandRing2 + 400172: LeftHandRing3 + 400174: LeftHandRing4 + 400176: LeftHandRing5 + 400178: LeftHandRing6 + 400180: LeftHandRingEffector + 400182: LeftHandThumb1 + 400184: LeftHandThumb13 + 400186: LeftHandThumb17 + 400188: LeftHandThumb2 + 400190: LeftHandThumb3 + 400192: LeftHandThumb4 + 400194: LeftHandThumb5 + 400196: LeftHandThumb6 + 400198: LeftHandThumbEffector + 400200: LeftHipEffector + 400202: LeftInnerBrow + 400204: LeftIOuterBrow + 400206: LeftKneeEffector + 400208: LeftLeg + 400210: LeftLeg 1 + 400212: LeftLipCorner + 400214: LeftLipLower + 400216: LeftLipUpper + 400218: LeftNostril + 400220: LeftShoulder + 400222: LeftShoulder 1 + 400224: LeftShoulderEffector + 400226: LeftToes + 400228: LeftUpLeg + 400230: LeftUpLeg 1 + 400232: LeftWristEffector + 400234: LToeBase_End2 + 400236: LToeBase_End3 + 400238: Neck + 400240: Neck 1 + 400242: neckProxy_geo + 400244: pelvisProxy_geo + 400246: r_ankleProxy_geo + 400248: r_ballProxy_geo + 400250: r_clavicleProxy_geo + 400252: r_erbowProxy_geo + 400254: r_hipProxy_geo + 400256: r_indexProxy_01_geo + 400258: r_indexProxy_02_geo + 400260: r_indexProxy_03_geo + 400262: r_kneeProxy_geo + 400264: r_middleProxy_01_geo + 400266: r_middleProxy_02_geo + 400268: r_middleProxy_03_geo + 400270: r_pinkyProxy_01_geo + 400272: r_pinkyProxy_02_geo + 400274: r_pinkyProxy_03_geo + 400276: r_ringProxy_01_geo + 400278: r_ringProxy_02_geo + 400280: r_ringProxy_03_geo + 400282: r_shourderProxy_geo + 400284: r_thumbProxy_01_geo + 400286: r_thumbProxy_02_geo + 400288: r_thumbProxy_03_geo + 400290: r_UNI_eye + 400292: r_wristProxy_geo + 400294: Reference + 400296: RightAnkleEffector + 400298: RightArm + 400300: RightArm 1 + 400302: RightCheek + 400304: RightElbowEffector + 400306: RightEye + 400308: RightEyelidLower + 400310: RightEyelidUpper + 400312: RightFoot + 400314: RightFoot 1 + 400316: RightForeArm + 400318: RightForeArm 1 + 400320: RightHand + 400322: RightHand 1 + 400324: RightHandIndex1 + 400326: RightHandIndex2 + 400328: RightHandIndex3 + 400330: RightHandIndex4 + 400332: RightHandIndex5 + 400334: RightHandIndex6 + 400336: RightHandIndexEffector + 400338: RightHandMiddle1 + 400340: RightHandMiddle2 + 400342: RightHandMiddle3 + 400344: RightHandMiddle4 + 400346: RightHandMiddle5 + 400348: RightHandMiddle6 + 400350: RightHandMiddleEffector + 400352: RightHandPinky1 + 400354: RightHandPinky2 + 400356: RightHandPinky3 + 400358: RightHandPinky4 + 400360: RightHandPinky5 + 400362: RightHandPinky6 + 400364: RightHandPinkyEffector + 400366: RightHandRing1 + 400368: RightHandRing2 + 400370: RightHandRing3 + 400372: RightHandRing4 + 400374: RightHandRing5 + 400376: RightHandRing6 + 400378: RightHandRingEffector + 400380: RightHandThumb1 + 400382: RightHandThumb2 + 400384: RightHandThumb3 + 400386: RightHandThumb4 + 400388: RightHandThumb5 + 400390: RightHandThumb6 + 400392: RightHandThumbEffector + 400394: RightHipEffector + 400396: RightInnerBrow + 400398: RightIOuterBrow + 400400: RightKneeEffector + 400402: RightLeg + 400404: RightLeg 1 + 400406: RightLipCorner + 400408: RightLipLower + 400410: RightLipUpper + 400412: RightNostril + 400414: RightShoulder + 400416: RightShoulder 1 + 400418: RightShoulderEffector + 400420: RightToes + 400422: RightUpLeg + 400424: RightUpLeg 1 + 400426: RightWristEffector + 400428: Spine + 400430: Spine 1 + 400432: Spine1 + 400434: spineProxy_geo + 400436: TongueBack + 400438: TongueTip + 400440: UNI_01_Lower_teethProxy + 400442: UNI_01_TongueBaseProxy + 400444: UNI_01_TongueTipProxy + 400446: UNI_01_Upper_teethProxy + 2300000: chestProxy_geo + 2300002: headProxy_geo + 2300004: jawProxy_geo + 2300006: l_ankleProxy_geo + 2300008: l_ballProxy_geo + 2300010: l_clavicleProxy_geo + 2300012: l_erbowProxy_geo + 2300014: l_hipProxy_geo + 2300016: l_indexProxy_01_geo + 2300018: l_indexProxy_02_geo + 2300020: l_indexProxy_03_geo + 2300022: l_kneeProxy_geo + 2300024: l_middleProxy_01_geo + 2300026: l_middleProxy_02_geo + 2300028: l_middleProxy_03_geo + 2300030: l_pinkyProxy_01_geo + 2300032: l_pinkyProxy_02_geo + 2300034: l_pinkyProxy_03_geo + 2300036: l_ringProxy_01_geo + 2300038: l_ringProxy_02_geo + 2300040: l_ringProxy_03_geo + 2300042: l_shourderProxy_geo + 2300044: l_thumbProxy_01_geo + 2300046: l_thumbProxy_02_geo + 2300048: l_thumbProxy_03_geo + 2300050: l_UNI_eye + 2300052: l_wristProxy_geo + 2300054: neckProxy_geo + 2300056: pelvisProxy_geo + 2300058: r_ankleProxy_geo + 2300060: r_ballProxy_geo + 2300062: r_clavicleProxy_geo + 2300064: r_erbowProxy_geo + 2300066: r_hipProxy_geo + 2300068: r_indexProxy_01_geo + 2300070: r_indexProxy_02_geo + 2300072: r_indexProxy_03_geo + 2300074: r_kneeProxy_geo + 2300076: r_middleProxy_01_geo + 2300078: r_middleProxy_02_geo + 2300080: r_middleProxy_03_geo + 2300082: r_pinkyProxy_01_geo + 2300084: r_pinkyProxy_02_geo + 2300086: r_pinkyProxy_03_geo + 2300088: r_ringProxy_01_geo + 2300090: r_ringProxy_02_geo + 2300092: r_ringProxy_03_geo + 2300094: r_shourderProxy_geo + 2300096: r_thumbProxy_01_geo + 2300098: r_thumbProxy_02_geo + 2300100: r_thumbProxy_03_geo + 2300102: r_UNI_eye + 2300104: r_wristProxy_geo + 2300106: spineProxy_geo + 2300108: UNI_01_Lower_teethProxy + 2300110: UNI_01_TongueBaseProxy + 2300112: UNI_01_TongueTipProxy + 2300114: UNI_01_Upper_teethProxy + 3300000: chestProxy_geo + 3300002: headProxy_geo + 3300004: jawProxy_geo + 3300006: l_ankleProxy_geo + 3300008: l_ballProxy_geo + 3300010: l_clavicleProxy_geo + 3300012: l_erbowProxy_geo + 3300014: l_hipProxy_geo + 3300016: l_indexProxy_01_geo + 3300018: l_indexProxy_02_geo + 3300020: l_indexProxy_03_geo + 3300022: l_kneeProxy_geo + 3300024: l_middleProxy_01_geo + 3300026: l_middleProxy_02_geo + 3300028: l_middleProxy_03_geo + 3300030: l_pinkyProxy_01_geo + 3300032: l_pinkyProxy_02_geo + 3300034: l_pinkyProxy_03_geo + 3300036: l_ringProxy_01_geo + 3300038: l_ringProxy_02_geo + 3300040: l_ringProxy_03_geo + 3300042: l_shourderProxy_geo + 3300044: l_thumbProxy_01_geo + 3300046: l_thumbProxy_02_geo + 3300048: l_thumbProxy_03_geo + 3300050: l_UNI_eye + 3300052: l_wristProxy_geo + 3300054: neckProxy_geo + 3300056: pelvisProxy_geo + 3300058: r_ankleProxy_geo + 3300060: r_ballProxy_geo + 3300062: r_clavicleProxy_geo + 3300064: r_erbowProxy_geo + 3300066: r_hipProxy_geo + 3300068: r_indexProxy_01_geo + 3300070: r_indexProxy_02_geo + 3300072: r_indexProxy_03_geo + 3300074: r_kneeProxy_geo + 3300076: r_middleProxy_01_geo + 3300078: r_middleProxy_02_geo + 3300080: r_middleProxy_03_geo + 3300082: r_pinkyProxy_01_geo + 3300084: r_pinkyProxy_02_geo + 3300086: r_pinkyProxy_03_geo + 3300088: r_ringProxy_01_geo + 3300090: r_ringProxy_02_geo + 3300092: r_ringProxy_03_geo + 3300094: r_shourderProxy_geo + 3300096: r_thumbProxy_01_geo + 3300098: r_thumbProxy_02_geo + 3300100: r_thumbProxy_03_geo + 3300102: r_UNI_eye + 3300104: r_wristProxy_geo + 3300106: spineProxy_geo + 3300108: UNI_01_Lower_teethProxy + 3300110: UNI_01_TongueBaseProxy + 3300112: UNI_01_TongueTipProxy + 3300114: UNI_01_Upper_teethProxy + 4300000: l_UNI_eye + 4300002: r_UNI_eye + 4300004: UNI_01_TongueBaseProxy + 4300006: UNI_01_TongueTipProxy + 4300008: UNI_01_Lower_teethProxy + 4300010: jawProxy_geo + 4300012: headProxy_geo + 4300014: UNI_01_Upper_teethProxy + 4300016: neckProxy_geo + 4300018: r_pinkyProxy_03_geo + 4300020: r_pinkyProxy_02_geo + 4300022: r_pinkyProxy_01_geo + 4300024: r_ringProxy_03_geo + 4300026: r_ringProxy_02_geo + 4300028: r_ringProxy_01_geo + 4300030: r_middleProxy_03_geo + 4300032: r_middleProxy_02_geo + 4300034: r_middleProxy_01_geo + 4300036: r_indexProxy_03_geo + 4300038: r_indexProxy_02_geo + 4300040: r_indexProxy_01_geo + 4300042: r_thumbProxy_03_geo + 4300044: r_thumbProxy_02_geo + 4300046: r_thumbProxy_01_geo + 4300048: r_wristProxy_geo + 4300050: r_erbowProxy_geo + 4300052: r_shourderProxy_geo + 4300054: r_clavicleProxy_geo + 4300056: chestProxy_geo + 4300058: l_pinkyProxy_03_geo + 4300060: l_pinkyProxy_02_geo + 4300062: l_pinkyProxy_01_geo + 4300064: l_ringProxy_03_geo + 4300066: l_ringProxy_02_geo + 4300068: l_ringProxy_01_geo + 4300070: l_middleProxy_03_geo + 4300072: l_middleProxy_02_geo + 4300074: l_middleProxy_01_geo + 4300076: l_indexProxy_03_geo + 4300078: l_indexProxy_02_geo + 4300080: l_indexProxy_01_geo + 4300082: l_thumbProxy_03_geo + 4300084: l_thumbProxy_02_geo + 4300086: l_thumbProxy_01_geo + 4300088: l_wristProxy_geo + 4300090: l_erbowProxy_geo + 4300092: l_shourderProxy_geo + 4300094: l_clavicleProxy_geo + 4300096: spineProxy_geo + 4300098: r_ballProxy_geo + 4300100: r_ankleProxy_geo + 4300102: r_kneeProxy_geo + 4300104: r_hipProxy_geo + 4300106: pelvisProxy_geo + 4300108: l_ballProxy_geo + 4300110: l_ankleProxy_geo + 4300112: l_kneeProxy_geo + 4300114: l_hipProxy_geo + 7400000: StandQuarterTurnRight + 7400002: Stand Turn Right A + 7400004: Stand Turn Right C + 7400006: StandHalfTurnRight + 7400008: Stand Turn Left A + 7400010: StandQuarterTurnLeft + 7400012: Stand Turn Left C + 7400014: StandHalfTurnLeft + 9500000: //RootNode + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + optimizeGameObjects: 0 + motionNodeName: + pivotNodeName: + animationCompression: 0 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: StandQuarterTurnRight + takeName: _97_TO_100_a_U1_M_P_idle_NeutralTO45IdleTONeutralIdle__Fb_p45_No_0_PJ_2 + firstFrame: 284 + lastFrame: 315 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: StandHalfTurnRight + takeName: _97_TO_100_a_U1_M_P_idle_NeutralTO45IdleTONeutralIdle__Fb_p45_No_0_PJ_2 + firstFrame: 622 + lastFrame: 659 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: StandQuarterTurnLeft + takeName: _97_TO_100_a_U1_M_P_idle_NeutralTO45IdleTONeutralIdle__Fb_p45_No_0_PJ_2 + firstFrame: 284 + lastFrame: 315 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 1 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: StandHalfTurnLeft + takeName: _97_TO_100_a_U1_M_P_idle_NeutralTO45IdleTONeutralIdle__Fb_p45_No_0_PJ_2 + firstFrame: 622 + lastFrame: 659 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 1 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: .00999999978 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: HumanoidStandTurn(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: .00221104478, y: .960555851, z: .00774985878} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftUpLeg + position: {x: -.0754494965, y: -.0456640199, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLeg + position: {x: -.0205504987, y: -.409129977, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftFoot + position: {x: -.00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftToes + position: {x: -.00748699997, y: -.0731673017, z: .145427123} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightUpLeg + position: {x: .0754495338, y: -.0456639901, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLeg + position: {x: .0205504671, y: -.409130007, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightFoot + position: {x: .00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightToes + position: {x: .00748699997, y: -.0731673017, z: .145427495} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Spine + position: {x: 2.6469779e-25, y: .0922631845, z: .0157713313} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Chest + position: {x: -0, y: .162540287, z: -.00165605545} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftShoulder + position: {x: -.0382859968, y: .221622497, z: -.017063085} + rotation: {x: -.0231811199, y: -.0412411205, z: .155462235, w: .986708343} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftArm + position: {x: -.100502051, y: 5.68434176e-16, z: -3.330669e-18} + rotation: {x: .088617675, y: .0276518222, z: -.142930418, w: .985369623} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftForeArm + position: {x: -.254049301, y: 5.68434176e-16, z: 1.11022296e-17} + rotation: {x: .124834083, y: .0313581899, z: .00281256856, w: .991677999} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHand + position: {x: -.24638927, y: 0, z: -1.99840139e-16} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -.0751257986, y: -.00784140453, z: .0326526426} + rotation: {x: .00607836014, y: -.0167527385, z: .0568730906, w: .998222351} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -.03979728, y: 4.98084046e-05, z: .00118575036} + rotation: {x: -.0675409213, y: .0152366757, z: .0327178091, w: .997063518} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -.0279684775, y: -6.28122487e-09, z: -5.17186614e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -.0760238245, y: -.00188513438, z: .0101412293} + rotation: {x: -.00378268166, y: .0447947718, z: .0881895795, w: .995088816} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -.0442804359, y: 4.79887422e-06, z: -.000425400125} + rotation: {x: -.0125990948, y: -.00755135808, z: .0314779356, w: .999396563} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -.0339648277, y: -1.21979289e-08, z: 3.75648268e-09} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -.0656599477, y: -.00782510638, z: -.0322512463} + rotation: {x: -.0661177263, y: .0816951618, z: .0931271091, w: .990091801} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -.0308054481, y: -3.0874573e-05, z: -.0014480775} + rotation: {x: .0469475128, y: -.0211696289, z: .0376872718, w: .9979617} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -.0230640266, y: -6.40258077e-06, z: 1.8332095e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -.0703021064, y: -.00374530931, z: -.0114117917} + rotation: {x: -.0201800391, y: .0723013356, z: .0900597498, w: .993103564} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -.0431354567, y: -2.08823076e-05, z: -.00223517837} + rotation: {x: .0182891581, y: -.0256066062, z: .0339722671, w: .998927355} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -.0308355652, y: 7.71035458e-11, z: -1.64932707e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -.0142312413, y: -.0123778246, z: .0255316682} + rotation: {x: -.102118149, y: -.0509434976, z: -.10264302, w: .988150299} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -.0163739994, y: -.00528999977, z: .0234914087} + rotation: {x: -.0260635857, y: .0966900364, z: .00360634457, w: .994966686} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -.0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: -0, y: .259009302, z: -.0324132554} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Head + position: {x: -2.6469779e-25, y: .0830703825, z: .0113267815} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Jaw + position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431} + rotation: {x: .219240054, y: -0, z: -0, w: .975670993} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: JawEND + position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipCorner + position: {x: -.032843262, y: -.01657876, z: .0661217645} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipLower + position: {x: -.0142508168, y: -.0216887593, z: .0822406337} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipCorner + position: {x: .0328399986, y: -.01657876, z: .0661187842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipLower + position: {x: .0142508168, y: -.0216887593, z: .0822387859} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueBack + position: {x: -1.73472344e-20, y: -.022869369, z: .0100954091} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueTip + position: {x: -1.73472344e-20, y: -.0232788119, z: .0383227095} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -.0542440265, y: .0337019488, z: .0594304018} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEye + position: {x: -.0208482333, y: .0825027004, z: .0554274321} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidLower + position: {x: -.0356189571, y: .0650736615, z: .076234743} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidUpper + position: {x: -.0344068967, y: .10060814, z: .0802053064} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftInnerBrow + position: {x: -.0120626912, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftIOuterBrow + position: {x: -.0550398715, y: .114825293, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipUpper + position: {x: -.0145013221, y: -.00511181122, z: .094618842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftNostril + position: {x: -.0178999994, y: .0263128281, z: .0908674002} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: .0542399958, y: .033702828, z: .0594273992} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEye + position: {x: .020849999, y: .082502827, z: .0554273985} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidLower + position: {x: .0356200002, y: .065072827, z: .0762374029} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidUpper + position: {x: .0344099998, y: .100612827, z: .0802073926} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightInnerBrow + position: {x: .0120626874, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightIOuterBrow + position: {x: .0550400019, y: .114822827, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipUpper + position: {x: .0145013221, y: -.00510717137, z: .094617404} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightNostril + position: {x: .0178999994, y: .0263089053, z: .0908706188} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightShoulder + position: {x: .0382860154, y: .221621141, z: -.017063085} + rotation: {x: .156615227, y: .987296224, z: -.0141432397, w: -.022756584} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightArm + position: {x: -.100501455, y: -2.49955224e-06, z: -5.15574072e-08} + rotation: {x: .128958672, y: .988591135, z: -.0591317825, w: .0506032445} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightForeArm + position: {x: .253428251, y: .00601135287, z: -.0167045239} + rotation: {x: .173002318, y: .0184977558, z: -.0264102723, w: .984393537} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHand + position: {x: .245373696, y: .0216417722, z: .00555046508} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex1 + position: {x: .0747694969, y: -.00124305359, z: .0343444981} + rotation: {x: -.00423200894, y: .162119269, z: -.0406824313, w: .985923171} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex2 + position: {x: .0370584019, y: .00072612107, z: .0145388944} + rotation: {x: -.0775835961, y: .0223498475, z: .040921364, w: .995894969} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex3 + position: {x: .0252250377, y: -.00496646529, z: .0110121462} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: .0756476447, y: .00479140272, z: .0118531818} + rotation: {x: -.00177398103, y: .0143492613, z: -.047807496, w: .998751998} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: .0438090637, y: .000194188149, z: .00645493623} + rotation: {x: -.0188719332, y: -.0441113934, z: .082947962, w: .995398283} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: .0330724716, y: -.00754753686, z: .00168984616} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: .0668033436, y: -.00199410878, z: -.0307561457} + rotation: {x: -.0620294139, y: -.258612514, z: -.016704157, w: .963842809} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky2 + position: {x: .0285308417, y: -.001397143, z: -.0116237961} + rotation: {x: .0298576318, y: .000797908462, z: -.0616652891, w: .997649908} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky3 + position: {x: .0214268602, y: -.000553508929, z: -.00851660781} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing1 + position: {x: .0705984756, y: .00245709647, z: -.00982145779} + rotation: {x: -.0147603918, y: -.11599648, z: -.0297171939, w: .992695272} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing2 + position: {x: .0428871848, y: -.00137538207, z: -.00494585792} + rotation: {x: .0207646266, y: -.0215577111, z: .0755871385, w: .996689916} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing3 + position: {x: .0295006037, y: -.00769293541, z: -.00462225592} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb1 + position: {x: .0146849155, y: -.0111049423, z: .0258580949} + rotation: {x: -.119986929, y: .0336791351, z: .148827791, w: .980978668} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb2 + position: {x: .0163739994, y: -.00528999977, z: .0234913602} + rotation: {x: -.0260633472, y: -.0966907069, z: -.00360694295, w: .994966686} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: .0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: e8914d097ece7cc48a83d5fccd4098c0, + type: 3} + animationType: 3 + additionalBone: 0 + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalk.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalk.fbx new file mode 100644 index 0000000..5889c43 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalk.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceab209964e2f0226100d065e8c2995d452e713ef5d3578b36292895f2affeae +size 732176 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalk.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalk.fbx.meta new file mode 100644 index 0000000..2f6d7a3 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalk.fbx.meta @@ -0,0 +1,1382 @@ +fileFormatVersion: 2 +guid: b1a5e04ae51004842aba06704a6c2903 +ModelImporter: + serializedVersion: 19 + fileIDToRecycleName: + 100000: Chest + 100002: chestProxy_geo + 100004: //RootNode + 100006: Head + 100008: headProxy_geo + 100010: HeadTop_End + 100012: Hips + 100014: Jaw + 100016: JawEND + 100018: jawProxy_geo + 100020: l_ankleProxy_geo + 100022: l_ballProxy_geo + 100024: l_clavicleProxy_geo + 100026: l_erbowProxy_geo + 100028: l_hipProxy_geo + 100030: l_indexProxy_01_geo + 100032: l_indexProxy_02_geo + 100034: l_indexProxy_03_geo + 100036: l_kneeProxy_geo + 100038: l_middleProxy_01_geo + 100040: l_middleProxy_02_geo + 100042: l_middleProxy_03_geo + 100044: l_pinkyProxy_01_geo + 100046: l_pinkyProxy_02_geo + 100048: l_pinkyProxy_03_geo + 100050: l_ringProxy_01_geo + 100052: l_ringProxy_02_geo + 100054: l_ringProxy_03_geo + 100056: l_shourderProxy_geo + 100058: l_thumbProxy_01_geo + 100060: l_thumbProxy_02_geo + 100062: l_thumbProxy_03_geo + 100064: l_UNI_eye + 100066: l_wristProxy_geo + 100068: LeftArm + 100070: LeftCheek + 100072: LeftEye + 100074: LeftEyelidLower + 100076: LeftEyelidUpper + 100078: LeftFoot + 100080: LeftForeArm + 100082: LeftHand + 100084: LeftHandIndex1 + 100086: LeftHandIndex13 + 100088: LeftHandIndex17 + 100090: LeftHandIndex2 + 100092: LeftHandIndex3 + 100094: LeftHandMiddle1 + 100096: LeftHandMiddle13 + 100098: LeftHandMiddle17 + 100100: LeftHandMiddle2 + 100102: LeftHandMiddle3 + 100104: LeftHandPinky1 + 100106: LeftHandPinky13 + 100108: LeftHandPinky17 + 100110: LeftHandPinky2 + 100112: LeftHandPinky3 + 100114: LeftHandRing1 + 100116: LeftHandRing13 + 100118: LeftHandRing17 + 100120: LeftHandRing2 + 100122: LeftHandRing3 + 100124: LeftHandThumb1 + 100126: LeftHandThumb13 + 100128: LeftHandThumb17 + 100130: LeftHandThumb2 + 100132: LeftHandThumb3 + 100134: LeftInnerBrow + 100136: LeftIOuterBrow + 100138: LeftLeg + 100140: LeftLipCorner + 100142: LeftLipLower + 100144: LeftLipUpper + 100146: LeftNostril + 100148: LeftShoulder + 100150: LeftToes + 100152: LeftUpLeg + 100154: LToeBase_End2 + 100156: LToeBase_End3 + 100158: Neck + 100160: neckProxy_geo + 100162: pelvisProxy_geo + 100164: r_ankleProxy_geo + 100166: r_ballProxy_geo + 100168: r_clavicleProxy_geo + 100170: r_erbowProxy_geo + 100172: r_hipProxy_geo + 100174: r_indexProxy_01_geo + 100176: r_indexProxy_02_geo + 100178: r_indexProxy_03_geo + 100180: r_kneeProxy_geo + 100182: r_middleProxy_01_geo + 100184: r_middleProxy_02_geo + 100186: r_middleProxy_03_geo + 100188: r_pinkyProxy_01_geo + 100190: r_pinkyProxy_02_geo + 100192: r_pinkyProxy_03_geo + 100194: r_ringProxy_01_geo + 100196: r_ringProxy_02_geo + 100198: r_ringProxy_03_geo + 100200: r_shourderProxy_geo + 100202: r_thumbProxy_01_geo + 100204: r_thumbProxy_02_geo + 100206: r_thumbProxy_03_geo + 100208: r_UNI_eye + 100210: r_wristProxy_geo + 100212: Reference + 100214: RightArm + 100216: RightCheek + 100218: RightEye + 100220: RightEyelidLower + 100222: RightEyelidUpper + 100224: RightFoot + 100226: RightForeArm + 100228: RightHand + 100230: RightHandIndex1 + 100232: RightHandIndex2 + 100234: RightHandIndex3 + 100236: RightHandMiddle1 + 100238: RightHandMiddle2 + 100240: RightHandMiddle3 + 100242: RightHandPinky1 + 100244: RightHandPinky2 + 100246: RightHandPinky3 + 100248: RightHandRing1 + 100250: RightHandRing2 + 100252: RightHandRing3 + 100254: RightHandThumb1 + 100256: RightHandThumb2 + 100258: RightHandThumb3 + 100260: RightInnerBrow + 100262: RightIOuterBrow + 100264: RightLeg + 100266: RightLipCorner + 100268: RightLipLower + 100270: RightLipUpper + 100272: RightNostril + 100274: RightShoulder + 100276: RightToes + 100278: RightUpLeg + 100280: Spine + 100282: spineProxy_geo + 100284: TongueBack + 100286: TongueTip + 100288: UNI_01_Lower_teethProxy + 100290: UNI_01_TongueBaseProxy + 100292: UNI_01_TongueTipProxy + 100294: UNI_01_Upper_teethProxy + 400000: Chest + 400002: chestProxy_geo + 400004: //RootNode + 400006: Head + 400008: headProxy_geo + 400010: HeadTop_End + 400012: Hips + 400014: Jaw + 400016: JawEND + 400018: jawProxy_geo + 400020: l_ankleProxy_geo + 400022: l_ballProxy_geo + 400024: l_clavicleProxy_geo + 400026: l_erbowProxy_geo + 400028: l_hipProxy_geo + 400030: l_indexProxy_01_geo + 400032: l_indexProxy_02_geo + 400034: l_indexProxy_03_geo + 400036: l_kneeProxy_geo + 400038: l_middleProxy_01_geo + 400040: l_middleProxy_02_geo + 400042: l_middleProxy_03_geo + 400044: l_pinkyProxy_01_geo + 400046: l_pinkyProxy_02_geo + 400048: l_pinkyProxy_03_geo + 400050: l_ringProxy_01_geo + 400052: l_ringProxy_02_geo + 400054: l_ringProxy_03_geo + 400056: l_shourderProxy_geo + 400058: l_thumbProxy_01_geo + 400060: l_thumbProxy_02_geo + 400062: l_thumbProxy_03_geo + 400064: l_UNI_eye + 400066: l_wristProxy_geo + 400068: LeftArm + 400070: LeftCheek + 400072: LeftEye + 400074: LeftEyelidLower + 400076: LeftEyelidUpper + 400078: LeftFoot + 400080: LeftForeArm + 400082: LeftHand + 400084: LeftHandIndex1 + 400086: LeftHandIndex13 + 400088: LeftHandIndex17 + 400090: LeftHandIndex2 + 400092: LeftHandIndex3 + 400094: LeftHandMiddle1 + 400096: LeftHandMiddle13 + 400098: LeftHandMiddle17 + 400100: LeftHandMiddle2 + 400102: LeftHandMiddle3 + 400104: LeftHandPinky1 + 400106: LeftHandPinky13 + 400108: LeftHandPinky17 + 400110: LeftHandPinky2 + 400112: LeftHandPinky3 + 400114: LeftHandRing1 + 400116: LeftHandRing13 + 400118: LeftHandRing17 + 400120: LeftHandRing2 + 400122: LeftHandRing3 + 400124: LeftHandThumb1 + 400126: LeftHandThumb13 + 400128: LeftHandThumb17 + 400130: LeftHandThumb2 + 400132: LeftHandThumb3 + 400134: LeftInnerBrow + 400136: LeftIOuterBrow + 400138: LeftLeg + 400140: LeftLipCorner + 400142: LeftLipLower + 400144: LeftLipUpper + 400146: LeftNostril + 400148: LeftShoulder + 400150: LeftToes + 400152: LeftUpLeg + 400154: LToeBase_End2 + 400156: LToeBase_End3 + 400158: Neck + 400160: neckProxy_geo + 400162: pelvisProxy_geo + 400164: r_ankleProxy_geo + 400166: r_ballProxy_geo + 400168: r_clavicleProxy_geo + 400170: r_erbowProxy_geo + 400172: r_hipProxy_geo + 400174: r_indexProxy_01_geo + 400176: r_indexProxy_02_geo + 400178: r_indexProxy_03_geo + 400180: r_kneeProxy_geo + 400182: r_middleProxy_01_geo + 400184: r_middleProxy_02_geo + 400186: r_middleProxy_03_geo + 400188: r_pinkyProxy_01_geo + 400190: r_pinkyProxy_02_geo + 400192: r_pinkyProxy_03_geo + 400194: r_ringProxy_01_geo + 400196: r_ringProxy_02_geo + 400198: r_ringProxy_03_geo + 400200: r_shourderProxy_geo + 400202: r_thumbProxy_01_geo + 400204: r_thumbProxy_02_geo + 400206: r_thumbProxy_03_geo + 400208: r_UNI_eye + 400210: r_wristProxy_geo + 400212: Reference + 400214: RightArm + 400216: RightCheek + 400218: RightEye + 400220: RightEyelidLower + 400222: RightEyelidUpper + 400224: RightFoot + 400226: RightForeArm + 400228: RightHand + 400230: RightHandIndex1 + 400232: RightHandIndex2 + 400234: RightHandIndex3 + 400236: RightHandMiddle1 + 400238: RightHandMiddle2 + 400240: RightHandMiddle3 + 400242: RightHandPinky1 + 400244: RightHandPinky2 + 400246: RightHandPinky3 + 400248: RightHandRing1 + 400250: RightHandRing2 + 400252: RightHandRing3 + 400254: RightHandThumb1 + 400256: RightHandThumb2 + 400258: RightHandThumb3 + 400260: RightInnerBrow + 400262: RightIOuterBrow + 400264: RightLeg + 400266: RightLipCorner + 400268: RightLipLower + 400270: RightLipUpper + 400272: RightNostril + 400274: RightShoulder + 400276: RightToes + 400278: RightUpLeg + 400280: Spine + 400282: spineProxy_geo + 400284: TongueBack + 400286: TongueTip + 400288: UNI_01_Lower_teethProxy + 400290: UNI_01_TongueBaseProxy + 400292: UNI_01_TongueTipProxy + 400294: UNI_01_Upper_teethProxy + 2300000: chestProxy_geo + 2300002: headProxy_geo + 2300004: jawProxy_geo + 2300006: l_ankleProxy_geo + 2300008: l_ballProxy_geo + 2300010: l_clavicleProxy_geo + 2300012: l_erbowProxy_geo + 2300014: l_hipProxy_geo + 2300016: l_indexProxy_01_geo + 2300018: l_indexProxy_02_geo + 2300020: l_indexProxy_03_geo + 2300022: l_kneeProxy_geo + 2300024: l_middleProxy_01_geo + 2300026: l_middleProxy_02_geo + 2300028: l_middleProxy_03_geo + 2300030: l_pinkyProxy_01_geo + 2300032: l_pinkyProxy_02_geo + 2300034: l_pinkyProxy_03_geo + 2300036: l_ringProxy_01_geo + 2300038: l_ringProxy_02_geo + 2300040: l_ringProxy_03_geo + 2300042: l_shourderProxy_geo + 2300044: l_thumbProxy_01_geo + 2300046: l_thumbProxy_02_geo + 2300048: l_thumbProxy_03_geo + 2300050: l_UNI_eye + 2300052: l_wristProxy_geo + 2300054: neckProxy_geo + 2300056: pelvisProxy_geo + 2300058: r_ankleProxy_geo + 2300060: r_ballProxy_geo + 2300062: r_clavicleProxy_geo + 2300064: r_erbowProxy_geo + 2300066: r_hipProxy_geo + 2300068: r_indexProxy_01_geo + 2300070: r_indexProxy_02_geo + 2300072: r_indexProxy_03_geo + 2300074: r_kneeProxy_geo + 2300076: r_middleProxy_01_geo + 2300078: r_middleProxy_02_geo + 2300080: r_middleProxy_03_geo + 2300082: r_pinkyProxy_01_geo + 2300084: r_pinkyProxy_02_geo + 2300086: r_pinkyProxy_03_geo + 2300088: r_ringProxy_01_geo + 2300090: r_ringProxy_02_geo + 2300092: r_ringProxy_03_geo + 2300094: r_shourderProxy_geo + 2300096: r_thumbProxy_01_geo + 2300098: r_thumbProxy_02_geo + 2300100: r_thumbProxy_03_geo + 2300102: r_UNI_eye + 2300104: r_wristProxy_geo + 2300106: spineProxy_geo + 2300108: UNI_01_Lower_teethProxy + 2300110: UNI_01_TongueBaseProxy + 2300112: UNI_01_TongueTipProxy + 2300114: UNI_01_Upper_teethProxy + 3300000: chestProxy_geo + 3300002: headProxy_geo + 3300004: jawProxy_geo + 3300006: l_ankleProxy_geo + 3300008: l_ballProxy_geo + 3300010: l_clavicleProxy_geo + 3300012: l_erbowProxy_geo + 3300014: l_hipProxy_geo + 3300016: l_indexProxy_01_geo + 3300018: l_indexProxy_02_geo + 3300020: l_indexProxy_03_geo + 3300022: l_kneeProxy_geo + 3300024: l_middleProxy_01_geo + 3300026: l_middleProxy_02_geo + 3300028: l_middleProxy_03_geo + 3300030: l_pinkyProxy_01_geo + 3300032: l_pinkyProxy_02_geo + 3300034: l_pinkyProxy_03_geo + 3300036: l_ringProxy_01_geo + 3300038: l_ringProxy_02_geo + 3300040: l_ringProxy_03_geo + 3300042: l_shourderProxy_geo + 3300044: l_thumbProxy_01_geo + 3300046: l_thumbProxy_02_geo + 3300048: l_thumbProxy_03_geo + 3300050: l_UNI_eye + 3300052: l_wristProxy_geo + 3300054: neckProxy_geo + 3300056: pelvisProxy_geo + 3300058: r_ankleProxy_geo + 3300060: r_ballProxy_geo + 3300062: r_clavicleProxy_geo + 3300064: r_erbowProxy_geo + 3300066: r_hipProxy_geo + 3300068: r_indexProxy_01_geo + 3300070: r_indexProxy_02_geo + 3300072: r_indexProxy_03_geo + 3300074: r_kneeProxy_geo + 3300076: r_middleProxy_01_geo + 3300078: r_middleProxy_02_geo + 3300080: r_middleProxy_03_geo + 3300082: r_pinkyProxy_01_geo + 3300084: r_pinkyProxy_02_geo + 3300086: r_pinkyProxy_03_geo + 3300088: r_ringProxy_01_geo + 3300090: r_ringProxy_02_geo + 3300092: r_ringProxy_03_geo + 3300094: r_shourderProxy_geo + 3300096: r_thumbProxy_01_geo + 3300098: r_thumbProxy_02_geo + 3300100: r_thumbProxy_03_geo + 3300102: r_UNI_eye + 3300104: r_wristProxy_geo + 3300106: spineProxy_geo + 3300108: UNI_01_Lower_teethProxy + 3300110: UNI_01_TongueBaseProxy + 3300112: UNI_01_TongueTipProxy + 3300114: UNI_01_Upper_teethProxy + 4300000: l_UNI_eye + 4300002: r_UNI_eye + 4300004: UNI_01_TongueBaseProxy + 4300006: UNI_01_TongueTipProxy + 4300008: UNI_01_Lower_teethProxy + 4300010: jawProxy_geo + 4300012: headProxy_geo + 4300014: UNI_01_Upper_teethProxy + 4300016: neckProxy_geo + 4300018: r_pinkyProxy_03_geo + 4300020: r_pinkyProxy_02_geo + 4300022: r_pinkyProxy_01_geo + 4300024: r_ringProxy_03_geo + 4300026: r_ringProxy_02_geo + 4300028: r_ringProxy_01_geo + 4300030: r_middleProxy_03_geo + 4300032: r_middleProxy_02_geo + 4300034: r_middleProxy_01_geo + 4300036: r_indexProxy_03_geo + 4300038: r_indexProxy_02_geo + 4300040: r_indexProxy_01_geo + 4300042: r_thumbProxy_03_geo + 4300044: r_thumbProxy_02_geo + 4300046: r_thumbProxy_01_geo + 4300048: r_wristProxy_geo + 4300050: r_erbowProxy_geo + 4300052: r_shourderProxy_geo + 4300054: r_clavicleProxy_geo + 4300056: chestProxy_geo + 4300058: l_pinkyProxy_03_geo + 4300060: l_pinkyProxy_02_geo + 4300062: l_pinkyProxy_01_geo + 4300064: l_ringProxy_03_geo + 4300066: l_ringProxy_02_geo + 4300068: l_ringProxy_01_geo + 4300070: l_middleProxy_03_geo + 4300072: l_middleProxy_02_geo + 4300074: l_middleProxy_01_geo + 4300076: l_indexProxy_03_geo + 4300078: l_indexProxy_02_geo + 4300080: l_indexProxy_01_geo + 4300082: l_thumbProxy_03_geo + 4300084: l_thumbProxy_02_geo + 4300086: l_thumbProxy_01_geo + 4300088: l_wristProxy_geo + 4300090: l_erbowProxy_geo + 4300092: l_shourderProxy_geo + 4300094: l_clavicleProxy_geo + 4300096: spineProxy_geo + 4300098: r_ballProxy_geo + 4300100: r_ankleProxy_geo + 4300102: r_kneeProxy_geo + 4300104: r_hipProxy_geo + 4300106: pelvisProxy_geo + 4300108: l_ballProxy_geo + 4300110: l_ankleProxy_geo + 4300112: l_kneeProxy_geo + 4300114: l_hipProxy_geo + 7400000: HumanoidWalk + 9500000: //RootNode + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleRotations: 1 + optimizeGameObjects: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + animationCompression: 0 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: HumanoidWalk + takeName: _1_a_U1_M_P_WalkForward_NtrlFaceFwd__Fb_p0_No_0_PJ_3 + firstFrame: 215.2 + lastFrame: 244.9 + wrapMode: 0 + orientationOffsetY: 2.88 + level: 0 + cycleOffset: -0 + loop: 0 + hasAdditiveReferencePose: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 1 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + additiveReferencePoseFrame: 0 + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 0.01 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 4 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: HumanoidWalk(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: -0.000000016763806, y: 0.9555335, z: 0.07758622} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftUpLeg + position: {x: -0.0754495, y: -0.04566402, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLeg + position: {x: -0.020550499, y: -0.40912998, z: -0.00071864796} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftFoot + position: {x: -0.0051529994, y: -0.4231559, z: -0.027648851} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftToes + position: {x: -0.007487, y: -0.0731673, z: 0.14542712} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightUpLeg + position: {x: 0.075449534, y: -0.04566399, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLeg + position: {x: 0.020550467, y: -0.40913, z: -0.00071864796} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightFoot + position: {x: 0.0051529994, y: -0.4231559, z: -0.027648851} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightToes + position: {x: 0.007487, y: -0.0731673, z: 0.1454275} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Spine + position: {x: 2.646978e-25, y: 0.092263184, z: 0.015771331} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Chest + position: {x: -0, y: 0.16254029, z: -0.0016560555} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftShoulder + position: {x: -0.038285997, y: 0.2216225, z: -0.017063085} + rotation: {x: -0.030223321, y: -0.07990193, z: 0.14446756, w: 0.9858151} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftArm + position: {x: -0.10050205, y: 5.684342e-16, z: -3.330669e-18} + rotation: {x: 0.008133877, y: 0.0757869, z: -0.1321358, w: 0.98829675} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftForeArm + position: {x: -0.2540493, y: 5.684342e-16, z: 1.11022296e-17} + rotation: {x: 0.2781269, y: 0.03635174, z: -0.015607543, w: 0.9597293} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHand + position: {x: -0.24638927, y: 0, z: -1.9984014e-16} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -0.0751258, y: -0.0078414045, z: 0.032652643} + rotation: {x: 0.06495643, y: 0.05091051, z: 0.058088716, w: 0.9948942} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -0.03979728, y: 0.000049808405, z: 0.0011857504} + rotation: {x: -0.06737132, y: 0.015346782, z: 0.033307686, w: 0.9970538} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -0.027968477, y: -0.000000006281225, z: -0.00000005171866} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -0.076023825, y: -0.0018851344, z: 0.010141229} + rotation: {x: -0.09939486, y: 0.04107085, z: 0.09351314, w: 0.9897925} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -0.044280436, y: 0.000004798874, z: -0.00042540013} + rotation: {x: -0.012435689, y: -0.0076595433, z: 0.031807605, w: 0.9993873} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -0.033964828, y: -0.000000012197929, z: 0.0000000037564827} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -0.06565995, y: -0.007825106, z: -0.032251246} + rotation: {x: -0.28387696, y: 0.036568172, z: 0.087664604, w: 0.95414436} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -0.030805448, y: -0.000030874573, z: -0.0014480775} + rotation: {x: 0.047048137, y: -0.021200087, z: 0.037495792, w: 0.9979635} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -0.023064027, y: -0.0000064025808, z: 0.000000018332095} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -0.07030211, y: -0.0037453093, z: -0.011411792} + rotation: {x: -0.10562233, y: 0.056129266, z: 0.08703209, w: 0.988999} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -0.043135457, y: -0.000020882308, z: -0.0022351784} + rotation: {x: 0.018426064, y: -0.02561071, z: 0.033295766, w: 0.99894744} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -0.030835565, y: 7.7103546e-11, z: -0.00000001649327} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -0.014231241, y: -0.012377825, z: 0.025531668} + rotation: {x: -0.14225604, y: -0.055378057, z: -0.12830889, w: 0.979915} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -0.016374, y: -0.00529, z: 0.023491409} + rotation: {x: -0.02606398, y: 0.096689634, z: 0.003605904, w: 0.9949668} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -0.02546, y: -0.00764, z: 0.020833} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: -0, y: 0.2590093, z: -0.032413255} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Head + position: {x: -2.646978e-25, y: 0.08307038, z: 0.0113267815} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Jaw + position: {x: 1.7347234e-20, y: 0.0111267585, z: 0.010327543} + rotation: {x: 0.21924005, y: -0, z: -0, w: 0.975671} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: JawEND + position: {x: -1.7347234e-20, y: -0.04828876, z: 0.07185171} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipCorner + position: {x: -0.032843262, y: -0.01657876, z: 0.066121764} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipLower + position: {x: -0.014250817, y: -0.02168876, z: 0.08224063} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipCorner + position: {x: 0.03284, y: -0.01657876, z: 0.066118784} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipLower + position: {x: 0.014250817, y: -0.02168876, z: 0.082238786} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueBack + position: {x: -1.7347234e-20, y: -0.022869369, z: 0.010095409} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueTip + position: {x: -1.7347234e-20, y: -0.023278812, z: 0.03832271} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -0.054244027, y: 0.03370195, z: 0.0594304} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEye + position: {x: -0.020848233, y: 0.0825027, z: 0.055427432} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidLower + position: {x: -0.035618957, y: 0.06507366, z: 0.07623474} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidUpper + position: {x: -0.034406897, y: 0.10060814, z: 0.08020531} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftInnerBrow + position: {x: -0.012062691, y: 0.118765265, z: 0.093466826} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftIOuterBrow + position: {x: -0.05503987, y: 0.11482529, z: 0.061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipUpper + position: {x: -0.014501322, y: -0.005111811, z: 0.09461884} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftNostril + position: {x: -0.0179, y: 0.026312828, z: 0.0908674} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: 0.054239996, y: 0.033702828, z: 0.0594274} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEye + position: {x: 0.020849999, y: 0.08250283, z: 0.0554274} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidLower + position: {x: 0.03562, y: 0.06507283, z: 0.0762374} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidUpper + position: {x: 0.03441, y: 0.10061283, z: 0.08020739} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightInnerBrow + position: {x: 0.012062687, y: 0.118765265, z: 0.093466826} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightIOuterBrow + position: {x: 0.055040002, y: 0.11482283, z: 0.061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipUpper + position: {x: 0.014501322, y: -0.0051071714, z: 0.094617404} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightNostril + position: {x: 0.0179, y: 0.026308905, z: 0.09087062} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightShoulder + position: {x: 0.038286015, y: 0.22162114, z: -0.017063085} + rotation: {x: 0.15105928, y: 0.98671633, z: -0.021163033, w: -0.055894263} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightArm + position: {x: -0.100501455, y: -0.0000024995522, z: -0.000000051557407} + rotation: {x: 0.12567478, y: 0.98442847, z: 0.062543266, w: 0.105805375} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightForeArm + position: {x: 0.25342825, y: 0.006011353, z: -0.016704524} + rotation: {x: 0.26110226, y: 0.01888748, z: -0.030674139, w: 0.96463877} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHand + position: {x: 0.2453737, y: 0.021641772, z: 0.005550465} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex1 + position: {x: 0.0747695, y: -0.0012430536, z: 0.034344498} + rotation: {x: 0.06961239, y: 0.11270627, z: -0.010377135, w: 0.99113256} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex2 + position: {x: 0.0370584, y: 0.00072612107, z: 0.014538894} + rotation: {x: -0.068798974, y: 0.021605203, z: 0.042188462, w: 0.99650395} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex3 + position: {x: 0.025225038, y: -0.0049664653, z: 0.011012146} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: 0.075647645, y: 0.0047914027, z: 0.011853182} + rotation: {x: -0.092045546, y: 0.020684198, z: -0.060492296, w: 0.9937004} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: 0.043809064, y: 0.00019418815, z: 0.006454936} + rotation: {x: -0.016959926, y: -0.04367115, z: 0.0809238, w: 0.99561864} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: 0.03307247, y: -0.007547537, z: 0.0016898462} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: 0.06680334, y: -0.0019941088, z: -0.030756146} + rotation: {x: -0.28647894, y: -0.21416986, z: 0.021083327, w: 0.9336042} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky2 + position: {x: 0.028530842, y: -0.001397143, z: -0.011623796} + rotation: {x: 0.029356524, y: 0.0005622971, z: -0.062125385, w: 0.99763644} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky3 + position: {x: 0.02142686, y: -0.00055350893, z: -0.008516608} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing1 + position: {x: 0.070598476, y: 0.0024570965, z: -0.009821458} + rotation: {x: -0.10453735, y: -0.1014307, z: -0.025803583, w: 0.9889985} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing2 + position: {x: 0.042887185, y: -0.0013753821, z: -0.004945858} + rotation: {x: 0.020977763, y: -0.021642664, z: 0.07535203, w: 0.9967014} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing3 + position: {x: 0.029500604, y: -0.0076929354, z: -0.004622256} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb1 + position: {x: 0.014684916, y: -0.011104942, z: 0.025858095} + rotation: {x: -0.09941147, y: 0.023245553, z: 0.13084193, w: 0.98613256} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb2 + position: {x: 0.016374, y: -0.00529, z: 0.02349136} + rotation: {x: -0.02606267, y: -0.09668537, z: -0.0036059343, w: 0.9949672} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: 0.02546, y: -0.00764, z: 0.020833} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + hasTranslationDoF: 0 + lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: e8914d097ece7cc48a83d5fccd4098c0, + type: 3} + animationType: 3 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurn.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurn.fbx new file mode 100644 index 0000000..8fee407 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurn.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff13e179c16459d94eb102fd6ed6da40793ea6ceb356e24d6f254d94146fc180 +size 657216 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurn.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurn.fbx.meta new file mode 100644 index 0000000..7c18bb2 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurn.fbx.meta @@ -0,0 +1,1400 @@ +fileFormatVersion: 2 +guid: 1c52c953c83c2254a9fa72d50250f028 +ModelImporter: + serializedVersion: 18 + fileIDToRecycleName: + 100000: Chest + 100002: chestProxy_geo + 100004: //RootNode + 100006: Head + 100008: headProxy_geo + 100010: HeadTop_End + 100012: Hips + 100014: Jaw + 100016: JawEND + 100018: jawProxy_geo + 100020: l_ankleProxy_geo + 100022: l_ballProxy_geo + 100024: l_clavicleProxy_geo + 100026: l_erbowProxy_geo + 100028: l_hipProxy_geo + 100030: l_indexProxy_01_geo + 100032: l_indexProxy_02_geo + 100034: l_indexProxy_03_geo + 100036: l_kneeProxy_geo + 100038: l_middleProxy_01_geo + 100040: l_middleProxy_02_geo + 100042: l_middleProxy_03_geo + 100044: l_pinkyProxy_01_geo + 100046: l_pinkyProxy_02_geo + 100048: l_pinkyProxy_03_geo + 100050: l_ringProxy_01_geo + 100052: l_ringProxy_02_geo + 100054: l_ringProxy_03_geo + 100056: l_shourderProxy_geo + 100058: l_thumbProxy_01_geo + 100060: l_thumbProxy_02_geo + 100062: l_thumbProxy_03_geo + 100064: l_UNI_eye + 100066: l_wristProxy_geo + 100068: LeftArm + 100070: LeftCheek + 100072: LeftEye + 100074: LeftEyelidLower + 100076: LeftEyelidUpper + 100078: LeftFoot + 100080: LeftForeArm + 100082: LeftHand + 100084: LeftHandIndex1 + 100086: LeftHandIndex13 + 100088: LeftHandIndex17 + 100090: LeftHandIndex2 + 100092: LeftHandIndex3 + 100094: LeftHandMiddle1 + 100096: LeftHandMiddle13 + 100098: LeftHandMiddle17 + 100100: LeftHandMiddle2 + 100102: LeftHandMiddle3 + 100104: LeftHandPinky1 + 100106: LeftHandPinky13 + 100108: LeftHandPinky17 + 100110: LeftHandPinky2 + 100112: LeftHandPinky3 + 100114: LeftHandRing1 + 100116: LeftHandRing13 + 100118: LeftHandRing17 + 100120: LeftHandRing2 + 100122: LeftHandRing3 + 100124: LeftHandThumb1 + 100126: LeftHandThumb13 + 100128: LeftHandThumb17 + 100130: LeftHandThumb2 + 100132: LeftHandThumb3 + 100134: LeftInnerBrow + 100136: LeftIOuterBrow + 100138: LeftLeg + 100140: LeftLipCorner + 100142: LeftLipLower + 100144: LeftLipUpper + 100146: LeftNostril + 100148: LeftShoulder + 100150: LeftToes + 100152: LeftUpLeg + 100154: LToeBase_End2 + 100156: LToeBase_End3 + 100158: Neck + 100160: neckProxy_geo + 100162: pelvisProxy_geo + 100164: r_ankleProxy_geo + 100166: r_ballProxy_geo + 100168: r_clavicleProxy_geo + 100170: r_erbowProxy_geo + 100172: r_hipProxy_geo + 100174: r_indexProxy_01_geo + 100176: r_indexProxy_02_geo + 100178: r_indexProxy_03_geo + 100180: r_kneeProxy_geo + 100182: r_middleProxy_01_geo + 100184: r_middleProxy_02_geo + 100186: r_middleProxy_03_geo + 100188: r_pinkyProxy_01_geo + 100190: r_pinkyProxy_02_geo + 100192: r_pinkyProxy_03_geo + 100194: r_ringProxy_01_geo + 100196: r_ringProxy_02_geo + 100198: r_ringProxy_03_geo + 100200: r_shourderProxy_geo + 100202: r_thumbProxy_01_geo + 100204: r_thumbProxy_02_geo + 100206: r_thumbProxy_03_geo + 100208: r_UNI_eye + 100210: r_wristProxy_geo + 100212: Reference + 100214: RightArm + 100216: RightCheek + 100218: RightEye + 100220: RightEyelidLower + 100222: RightEyelidUpper + 100224: RightFoot + 100226: RightForeArm + 100228: RightHand + 100230: RightHandIndex1 + 100232: RightHandIndex2 + 100234: RightHandIndex3 + 100236: RightHandMiddle1 + 100238: RightHandMiddle2 + 100240: RightHandMiddle3 + 100242: RightHandPinky1 + 100244: RightHandPinky2 + 100246: RightHandPinky3 + 100248: RightHandRing1 + 100250: RightHandRing2 + 100252: RightHandRing3 + 100254: RightHandThumb1 + 100256: RightHandThumb2 + 100258: RightHandThumb3 + 100260: RightInnerBrow + 100262: RightIOuterBrow + 100264: RightLeg + 100266: RightLipCorner + 100268: RightLipLower + 100270: RightLipUpper + 100272: RightNostril + 100274: RightShoulder + 100276: RightToes + 100278: RightUpLeg + 100280: Spine + 100282: spineProxy_geo + 100284: TongueBack + 100286: TongueTip + 100288: UNI_01_Lower_teethProxy + 100290: UNI_01_TongueBaseProxy + 100292: UNI_01_TongueTipProxy + 100294: UNI_01_Upper_teethProxy + 400000: Chest + 400002: chestProxy_geo + 400004: //RootNode + 400006: Head + 400008: headProxy_geo + 400010: HeadTop_End + 400012: Hips + 400014: Jaw + 400016: JawEND + 400018: jawProxy_geo + 400020: l_ankleProxy_geo + 400022: l_ballProxy_geo + 400024: l_clavicleProxy_geo + 400026: l_erbowProxy_geo + 400028: l_hipProxy_geo + 400030: l_indexProxy_01_geo + 400032: l_indexProxy_02_geo + 400034: l_indexProxy_03_geo + 400036: l_kneeProxy_geo + 400038: l_middleProxy_01_geo + 400040: l_middleProxy_02_geo + 400042: l_middleProxy_03_geo + 400044: l_pinkyProxy_01_geo + 400046: l_pinkyProxy_02_geo + 400048: l_pinkyProxy_03_geo + 400050: l_ringProxy_01_geo + 400052: l_ringProxy_02_geo + 400054: l_ringProxy_03_geo + 400056: l_shourderProxy_geo + 400058: l_thumbProxy_01_geo + 400060: l_thumbProxy_02_geo + 400062: l_thumbProxy_03_geo + 400064: l_UNI_eye + 400066: l_wristProxy_geo + 400068: LeftArm + 400070: LeftCheek + 400072: LeftEye + 400074: LeftEyelidLower + 400076: LeftEyelidUpper + 400078: LeftFoot + 400080: LeftForeArm + 400082: LeftHand + 400084: LeftHandIndex1 + 400086: LeftHandIndex13 + 400088: LeftHandIndex17 + 400090: LeftHandIndex2 + 400092: LeftHandIndex3 + 400094: LeftHandMiddle1 + 400096: LeftHandMiddle13 + 400098: LeftHandMiddle17 + 400100: LeftHandMiddle2 + 400102: LeftHandMiddle3 + 400104: LeftHandPinky1 + 400106: LeftHandPinky13 + 400108: LeftHandPinky17 + 400110: LeftHandPinky2 + 400112: LeftHandPinky3 + 400114: LeftHandRing1 + 400116: LeftHandRing13 + 400118: LeftHandRing17 + 400120: LeftHandRing2 + 400122: LeftHandRing3 + 400124: LeftHandThumb1 + 400126: LeftHandThumb13 + 400128: LeftHandThumb17 + 400130: LeftHandThumb2 + 400132: LeftHandThumb3 + 400134: LeftInnerBrow + 400136: LeftIOuterBrow + 400138: LeftLeg + 400140: LeftLipCorner + 400142: LeftLipLower + 400144: LeftLipUpper + 400146: LeftNostril + 400148: LeftShoulder + 400150: LeftToes + 400152: LeftUpLeg + 400154: LToeBase_End2 + 400156: LToeBase_End3 + 400158: Neck + 400160: neckProxy_geo + 400162: pelvisProxy_geo + 400164: r_ankleProxy_geo + 400166: r_ballProxy_geo + 400168: r_clavicleProxy_geo + 400170: r_erbowProxy_geo + 400172: r_hipProxy_geo + 400174: r_indexProxy_01_geo + 400176: r_indexProxy_02_geo + 400178: r_indexProxy_03_geo + 400180: r_kneeProxy_geo + 400182: r_middleProxy_01_geo + 400184: r_middleProxy_02_geo + 400186: r_middleProxy_03_geo + 400188: r_pinkyProxy_01_geo + 400190: r_pinkyProxy_02_geo + 400192: r_pinkyProxy_03_geo + 400194: r_ringProxy_01_geo + 400196: r_ringProxy_02_geo + 400198: r_ringProxy_03_geo + 400200: r_shourderProxy_geo + 400202: r_thumbProxy_01_geo + 400204: r_thumbProxy_02_geo + 400206: r_thumbProxy_03_geo + 400208: r_UNI_eye + 400210: r_wristProxy_geo + 400212: Reference + 400214: RightArm + 400216: RightCheek + 400218: RightEye + 400220: RightEyelidLower + 400222: RightEyelidUpper + 400224: RightFoot + 400226: RightForeArm + 400228: RightHand + 400230: RightHandIndex1 + 400232: RightHandIndex2 + 400234: RightHandIndex3 + 400236: RightHandMiddle1 + 400238: RightHandMiddle2 + 400240: RightHandMiddle3 + 400242: RightHandPinky1 + 400244: RightHandPinky2 + 400246: RightHandPinky3 + 400248: RightHandRing1 + 400250: RightHandRing2 + 400252: RightHandRing3 + 400254: RightHandThumb1 + 400256: RightHandThumb2 + 400258: RightHandThumb3 + 400260: RightInnerBrow + 400262: RightIOuterBrow + 400264: RightLeg + 400266: RightLipCorner + 400268: RightLipLower + 400270: RightLipUpper + 400272: RightNostril + 400274: RightShoulder + 400276: RightToes + 400278: RightUpLeg + 400280: Spine + 400282: spineProxy_geo + 400284: TongueBack + 400286: TongueTip + 400288: UNI_01_Lower_teethProxy + 400290: UNI_01_TongueBaseProxy + 400292: UNI_01_TongueTipProxy + 400294: UNI_01_Upper_teethProxy + 2300000: chestProxy_geo + 2300002: headProxy_geo + 2300004: jawProxy_geo + 2300006: l_ankleProxy_geo + 2300008: l_ballProxy_geo + 2300010: l_clavicleProxy_geo + 2300012: l_erbowProxy_geo + 2300014: l_hipProxy_geo + 2300016: l_indexProxy_01_geo + 2300018: l_indexProxy_02_geo + 2300020: l_indexProxy_03_geo + 2300022: l_kneeProxy_geo + 2300024: l_middleProxy_01_geo + 2300026: l_middleProxy_02_geo + 2300028: l_middleProxy_03_geo + 2300030: l_pinkyProxy_01_geo + 2300032: l_pinkyProxy_02_geo + 2300034: l_pinkyProxy_03_geo + 2300036: l_ringProxy_01_geo + 2300038: l_ringProxy_02_geo + 2300040: l_ringProxy_03_geo + 2300042: l_shourderProxy_geo + 2300044: l_thumbProxy_01_geo + 2300046: l_thumbProxy_02_geo + 2300048: l_thumbProxy_03_geo + 2300050: l_UNI_eye + 2300052: l_wristProxy_geo + 2300054: neckProxy_geo + 2300056: pelvisProxy_geo + 2300058: r_ankleProxy_geo + 2300060: r_ballProxy_geo + 2300062: r_clavicleProxy_geo + 2300064: r_erbowProxy_geo + 2300066: r_hipProxy_geo + 2300068: r_indexProxy_01_geo + 2300070: r_indexProxy_02_geo + 2300072: r_indexProxy_03_geo + 2300074: r_kneeProxy_geo + 2300076: r_middleProxy_01_geo + 2300078: r_middleProxy_02_geo + 2300080: r_middleProxy_03_geo + 2300082: r_pinkyProxy_01_geo + 2300084: r_pinkyProxy_02_geo + 2300086: r_pinkyProxy_03_geo + 2300088: r_ringProxy_01_geo + 2300090: r_ringProxy_02_geo + 2300092: r_ringProxy_03_geo + 2300094: r_shourderProxy_geo + 2300096: r_thumbProxy_01_geo + 2300098: r_thumbProxy_02_geo + 2300100: r_thumbProxy_03_geo + 2300102: r_UNI_eye + 2300104: r_wristProxy_geo + 2300106: spineProxy_geo + 2300108: UNI_01_Lower_teethProxy + 2300110: UNI_01_TongueBaseProxy + 2300112: UNI_01_TongueTipProxy + 2300114: UNI_01_Upper_teethProxy + 3300000: chestProxy_geo + 3300002: headProxy_geo + 3300004: jawProxy_geo + 3300006: l_ankleProxy_geo + 3300008: l_ballProxy_geo + 3300010: l_clavicleProxy_geo + 3300012: l_erbowProxy_geo + 3300014: l_hipProxy_geo + 3300016: l_indexProxy_01_geo + 3300018: l_indexProxy_02_geo + 3300020: l_indexProxy_03_geo + 3300022: l_kneeProxy_geo + 3300024: l_middleProxy_01_geo + 3300026: l_middleProxy_02_geo + 3300028: l_middleProxy_03_geo + 3300030: l_pinkyProxy_01_geo + 3300032: l_pinkyProxy_02_geo + 3300034: l_pinkyProxy_03_geo + 3300036: l_ringProxy_01_geo + 3300038: l_ringProxy_02_geo + 3300040: l_ringProxy_03_geo + 3300042: l_shourderProxy_geo + 3300044: l_thumbProxy_01_geo + 3300046: l_thumbProxy_02_geo + 3300048: l_thumbProxy_03_geo + 3300050: l_UNI_eye + 3300052: l_wristProxy_geo + 3300054: neckProxy_geo + 3300056: pelvisProxy_geo + 3300058: r_ankleProxy_geo + 3300060: r_ballProxy_geo + 3300062: r_clavicleProxy_geo + 3300064: r_erbowProxy_geo + 3300066: r_hipProxy_geo + 3300068: r_indexProxy_01_geo + 3300070: r_indexProxy_02_geo + 3300072: r_indexProxy_03_geo + 3300074: r_kneeProxy_geo + 3300076: r_middleProxy_01_geo + 3300078: r_middleProxy_02_geo + 3300080: r_middleProxy_03_geo + 3300082: r_pinkyProxy_01_geo + 3300084: r_pinkyProxy_02_geo + 3300086: r_pinkyProxy_03_geo + 3300088: r_ringProxy_01_geo + 3300090: r_ringProxy_02_geo + 3300092: r_ringProxy_03_geo + 3300094: r_shourderProxy_geo + 3300096: r_thumbProxy_01_geo + 3300098: r_thumbProxy_02_geo + 3300100: r_thumbProxy_03_geo + 3300102: r_UNI_eye + 3300104: r_wristProxy_geo + 3300106: spineProxy_geo + 3300108: UNI_01_Lower_teethProxy + 3300110: UNI_01_TongueBaseProxy + 3300112: UNI_01_TongueTipProxy + 3300114: UNI_01_Upper_teethProxy + 4300000: l_UNI_eye + 4300002: r_UNI_eye + 4300004: UNI_01_TongueBaseProxy + 4300006: UNI_01_TongueTipProxy + 4300008: UNI_01_Lower_teethProxy + 4300010: jawProxy_geo + 4300012: headProxy_geo + 4300014: UNI_01_Upper_teethProxy + 4300016: neckProxy_geo + 4300018: r_pinkyProxy_03_geo + 4300020: r_pinkyProxy_02_geo + 4300022: r_pinkyProxy_01_geo + 4300024: r_ringProxy_03_geo + 4300026: r_ringProxy_02_geo + 4300028: r_ringProxy_01_geo + 4300030: r_middleProxy_03_geo + 4300032: r_middleProxy_02_geo + 4300034: r_middleProxy_01_geo + 4300036: r_indexProxy_03_geo + 4300038: r_indexProxy_02_geo + 4300040: r_indexProxy_01_geo + 4300042: r_thumbProxy_03_geo + 4300044: r_thumbProxy_02_geo + 4300046: r_thumbProxy_01_geo + 4300048: r_wristProxy_geo + 4300050: r_erbowProxy_geo + 4300052: r_shourderProxy_geo + 4300054: r_clavicleProxy_geo + 4300056: chestProxy_geo + 4300058: l_pinkyProxy_03_geo + 4300060: l_pinkyProxy_02_geo + 4300062: l_pinkyProxy_01_geo + 4300064: l_ringProxy_03_geo + 4300066: l_ringProxy_02_geo + 4300068: l_ringProxy_01_geo + 4300070: l_middleProxy_03_geo + 4300072: l_middleProxy_02_geo + 4300074: l_middleProxy_01_geo + 4300076: l_indexProxy_03_geo + 4300078: l_indexProxy_02_geo + 4300080: l_indexProxy_01_geo + 4300082: l_thumbProxy_03_geo + 4300084: l_thumbProxy_02_geo + 4300086: l_thumbProxy_01_geo + 4300088: l_wristProxy_geo + 4300090: l_erbowProxy_geo + 4300092: l_shourderProxy_geo + 4300094: l_clavicleProxy_geo + 4300096: spineProxy_geo + 4300098: r_ballProxy_geo + 4300100: r_ankleProxy_geo + 4300102: r_kneeProxy_geo + 4300104: r_hipProxy_geo + 4300106: pelvisProxy_geo + 4300108: l_ballProxy_geo + 4300110: l_ankleProxy_geo + 4300112: l_kneeProxy_geo + 4300114: l_hipProxy_geo + 7400000: HumanoidWalkRight + 7400002: HumanoidWalkLeft + 9500000: //RootNode + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + optimizeGameObjects: 0 + motionNodeName: + pivotNodeName: + animationCompression: 0 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: HumanoidWalkRight + takeName: _7_a_U1_M_P_WalkForwardTurnRight_NtrlMedium__Fb_Dia2m_No_0_PJ_1 + firstFrame: 90.5999985 + lastFrame: 122.100006 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidWalkLeft + takeName: _7_a_U1_M_P_WalkForwardTurnRight_NtrlMedium__Fb_Dia2m_No_0_PJ_1 + firstFrame: 90.5999985 + lastFrame: 122.100006 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: .5 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 1 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: .00999999978 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: WalkTurn(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: 0, y: .978280783, z: -.0454514362} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftUpLeg + position: {x: -.0754494965, y: -.0456640199, z: -2.30926381e-16} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLeg + position: {x: -.0205504987, y: -.409129977, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftFoot + position: {x: -.00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftToes + position: {x: -.00748699997, y: -.0731673017, z: .145427123} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightUpLeg + position: {x: .0754495338, y: -.0456639901, z: -1.33226755e-16} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLeg + position: {x: .0205504671, y: -.409130007, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightFoot + position: {x: .00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightToes + position: {x: .00748699997, y: -.0731673017, z: .145427495} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Spine + position: {x: 1.70530253e-15, y: .0922631845, z: .0157713313} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Chest + position: {x: 1.70530253e-15, y: .162540287, z: -.00165605545} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftShoulder + position: {x: -.0382859968, y: .221622497, z: -.017063085} + rotation: {x: -.0147808986, y: -.0538775325, z: .156701982, w: .986064553} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftArm + position: {x: -.100502051, y: 1.12508158e-09, z: -1.90391272e-10} + rotation: {x: .0314127803, y: .0437958837, z: -.145582214, w: .987877071} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftForeArm + position: {x: -.254049301, y: -1.05549701e-10, z: 1.09197949e-10} + rotation: {x: .2138381, y: .0305939578, z: -.0201875716, w: .976181209} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHand + position: {x: -.24638927, y: -1.14727637e-10, z: 1.33491083e-11} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -.0751257986, y: -.00784140453, z: .0326526426} + rotation: {x: -.0355877392, y: .0203897264, z: .0891612843, w: .995172441} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -.03979728, y: 4.98084119e-05, z: .00118575059} + rotation: {x: -.067650035, y: .0147010209, z: .0282103531, w: .99720186} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -.0279684775, y: -6.41634301e-09, z: -5.14348883e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -.0760238245, y: -.00188513438, z: .0101412293} + rotation: {x: -.0202440154, y: .0555505231, z: .0874573365, w: .994412124} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -.0442804359, y: 4.79887012e-06, z: -.00042540062} + rotation: {x: -.0149214305, y: -.00651388662, z: .0271232538, w: .9994995} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -.0339648277, y: -1.21842687e-08, z: 3.75257692e-09} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -.0656599477, y: -.00782510638, z: -.0322512463} + rotation: {x: -.0490606353, y: .0760782659, z: .0864803717, w: .992132246} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -.0308054481, y: -3.08745766e-05, z: -.00144807738} + rotation: {x: .0495492145, y: -.0218166728, z: .0328659192, w: .997992396} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -.0230640266, y: -6.40260851e-06, z: 1.79083859e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -.0703021064, y: -.00374530931, z: -.0114117917} + rotation: {x: -.0161509421, y: .0750548244, z: .085394524, w: .993385017} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -.0431354567, y: -2.0882293e-05, z: -.00223517814} + rotation: {x: .0190618206, y: -.0256749857, z: .02892741, w: .999069929} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -.0308355652, y: 1.58168798e-10, z: -1.64554788e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -.0142312413, y: -.0123778246, z: .0255316682} + rotation: {x: -.129420206, y: -.0551873557, z: -.119928889, w: .982762337} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -.0163739994, y: -.00528999977, z: .0234914087} + rotation: {x: -.0260624681, y: .0966897979, z: .00360738859, w: .994966745} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -.0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: -2.84217077e-15, y: .259009272, z: -.0324132554} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Head + position: {x: -5.68434176e-16, y: .0830703825, z: .0113267815} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Jaw + position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431} + rotation: {x: .219240054, y: -0, z: -0, w: .975670993} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: JawEND + position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708} + rotation: {x: 3.46944695e-18, y: -3.25260652e-18, z: -1.12847458e-35, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipCorner + position: {x: -.032843262, y: -.01657876, z: .0661217645} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipLower + position: {x: -.0142508168, y: -.0216887593, z: .0822406337} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipCorner + position: {x: .0328399986, y: -.01657876, z: .0661187842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipLower + position: {x: .0142508168, y: -.0216887593, z: .0822387859} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueBack + position: {x: -1.73472344e-20, y: -.022869369, z: .0100954091} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueTip + position: {x: -1.73472344e-20, y: -.0232788119, z: .0383227095} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -.0542440265, y: .0337019488, z: .0594304018} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEye + position: {x: -.0208482333, y: .0825027004, z: .0554274321} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidLower + position: {x: -.0356189571, y: .0650736615, z: .076234743} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidUpper + position: {x: -.0344068967, y: .10060814, z: .0802053064} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftInnerBrow + position: {x: -.0120626912, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftIOuterBrow + position: {x: -.0550398715, y: .114825293, z: .061777398} + rotation: {x: 3.46944695e-18, y: -3.25260652e-18, z: -1.12847458e-35, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipUpper + position: {x: -.0145013221, y: -.00511181122, z: .094618842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftNostril + position: {x: -.0178999994, y: .0263128281, z: .0908674002} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: .0542399958, y: .033702828, z: .0594273992} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEye + position: {x: .020849999, y: .082502827, z: .0554273985} + rotation: {x: 3.46944695e-18, y: -3.25260652e-18, z: -1.12847458e-35, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidLower + position: {x: .0356200002, y: .065072827, z: .0762374029} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidUpper + position: {x: .0344099998, y: .100612827, z: .0802073926} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightInnerBrow + position: {x: .0120626874, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightIOuterBrow + position: {x: .0550400019, y: .114822827, z: .061777398} + rotation: {x: 3.46944695e-18, y: -3.25260652e-18, z: -1.12847458e-35, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipUpper + position: {x: .0145013221, y: -.00510717137, z: .094617404} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightNostril + position: {x: .0178999994, y: .0263089053, z: .0908706188} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightShoulder + position: {x: .0382860154, y: .221621126, z: -.017063085} + rotation: {x: .161226362, y: .986777782, z: -.000264319213, w: -.0166035369} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightArm + position: {x: -.100501455, y: -2.49664549e-06, z: -5.22836601e-08} + rotation: {x: .13713856, y: .985173404, z: .0769179687, w: .0686292574} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightForeArm + position: {x: .253428251, y: .00601135287, z: -.0167045239} + rotation: {x: .237398192, y: .0239303056, z: -.0130977379, w: .971029282} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHand + position: {x: .245373696, y: .0216417722, z: .00555046508} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex1 + position: {x: .0747694969, y: -.00124305359, z: .0343444981} + rotation: {x: -.0193142965, y: .144485593, z: -.0552937947, w: .987771988} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex2 + position: {x: .0370584019, y: .00072612107, z: .0145388944} + rotation: {x: -.0626306161, y: .0217898954, z: .0492491424, w: .996582806} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex3 + position: {x: .0252250377, y: -.00496646529, z: .0110121462} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: .0756476447, y: .00479140272, z: .0118531818} + rotation: {x: -.0083159646, y: .0137313176, z: -.0464223213, w: .998792946} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: .0438090637, y: .000194188149, z: .00645493623} + rotation: {x: -.0187553763, y: -.0444608666, z: .0846683979, w: .995240033} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: .0330724716, y: -.00754753686, z: .00168984616} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: .0668033436, y: -.00199410855, z: -.0307561457} + rotation: {x: -.0065329643, y: -.250651777, z: -.016728282, w: .967910707} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky2 + position: {x: .0285308417, y: -.001397143, z: -.0116237961} + rotation: {x: .033050999, y: .000949021487, z: -.0588754006, w: .997717619} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky3 + position: {x: .0214268602, y: -.000553508929, z: -.00851660781} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing1 + position: {x: .0705984756, y: .00245709671, z: -.00982145779} + rotation: {x: -.0121607138, y: -.11751543, z: -.0254483633, w: .992670476} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing2 + position: {x: .0428871848, y: -.00137538207, z: -.00494585838} + rotation: {x: .0222987644, y: -.0217661057, z: .0794658363, w: .996350527} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing3 + position: {x: .0295006037, y: -.00769293541, z: -.00462225592} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb1 + position: {x: .0146849155, y: -.0111049423, z: .0258580949} + rotation: {x: -.101609342, y: .0311730728, z: .104487799, w: .988830745} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb2 + position: {x: .0163739994, y: -.00528999977, z: .0234913602} + rotation: {x: -.0260628574, y: -.0966915861, z: -.00360764307, w: .994966567} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: .0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: e8914d097ece7cc48a83d5fccd4098c0, + type: 3} + animationType: 3 + additionalBone: 0 + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurnSharp.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurnSharp.fbx new file mode 100644 index 0000000..23a8a7c --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurnSharp.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81eab5c1bc5be00f37375b30b8b5239210cf5dc3badedffca850a68383bccde7 +size 630256 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurnSharp.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurnSharp.fbx.meta new file mode 100644 index 0000000..3eb352c --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animation/HumanoidWalkTurnSharp.fbx.meta @@ -0,0 +1,1400 @@ +fileFormatVersion: 2 +guid: bb141fc9a700c9c4ca7e6dadb8acf24b +ModelImporter: + serializedVersion: 18 + fileIDToRecycleName: + 100000: Chest + 100002: chestProxy_geo + 100004: //RootNode + 100006: Head + 100008: headProxy_geo + 100010: HeadTop_End + 100012: Hips + 100014: Jaw + 100016: JawEND + 100018: jawProxy_geo + 100020: l_ankleProxy_geo + 100022: l_ballProxy_geo + 100024: l_clavicleProxy_geo + 100026: l_erbowProxy_geo + 100028: l_hipProxy_geo + 100030: l_indexProxy_01_geo + 100032: l_indexProxy_02_geo + 100034: l_indexProxy_03_geo + 100036: l_kneeProxy_geo + 100038: l_middleProxy_01_geo + 100040: l_middleProxy_02_geo + 100042: l_middleProxy_03_geo + 100044: l_pinkyProxy_01_geo + 100046: l_pinkyProxy_02_geo + 100048: l_pinkyProxy_03_geo + 100050: l_ringProxy_01_geo + 100052: l_ringProxy_02_geo + 100054: l_ringProxy_03_geo + 100056: l_shourderProxy_geo + 100058: l_thumbProxy_01_geo + 100060: l_thumbProxy_02_geo + 100062: l_thumbProxy_03_geo + 100064: l_UNI_eye + 100066: l_wristProxy_geo + 100068: LeftArm + 100070: LeftCheek + 100072: LeftEye + 100074: LeftEyelidLower + 100076: LeftEyelidUpper + 100078: LeftFoot + 100080: LeftForeArm + 100082: LeftHand + 100084: LeftHandIndex1 + 100086: LeftHandIndex13 + 100088: LeftHandIndex17 + 100090: LeftHandIndex2 + 100092: LeftHandIndex3 + 100094: LeftHandMiddle1 + 100096: LeftHandMiddle13 + 100098: LeftHandMiddle17 + 100100: LeftHandMiddle2 + 100102: LeftHandMiddle3 + 100104: LeftHandPinky1 + 100106: LeftHandPinky13 + 100108: LeftHandPinky17 + 100110: LeftHandPinky2 + 100112: LeftHandPinky3 + 100114: LeftHandRing1 + 100116: LeftHandRing13 + 100118: LeftHandRing17 + 100120: LeftHandRing2 + 100122: LeftHandRing3 + 100124: LeftHandThumb1 + 100126: LeftHandThumb13 + 100128: LeftHandThumb17 + 100130: LeftHandThumb2 + 100132: LeftHandThumb3 + 100134: LeftInnerBrow + 100136: LeftIOuterBrow + 100138: LeftLeg + 100140: LeftLipCorner + 100142: LeftLipLower + 100144: LeftLipUpper + 100146: LeftNostril + 100148: LeftShoulder + 100150: LeftToes + 100152: LeftUpLeg + 100154: LToeBase_End2 + 100156: LToeBase_End3 + 100158: Neck + 100160: neckProxy_geo + 100162: pelvisProxy_geo + 100164: r_ankleProxy_geo + 100166: r_ballProxy_geo + 100168: r_clavicleProxy_geo + 100170: r_erbowProxy_geo + 100172: r_hipProxy_geo + 100174: r_indexProxy_01_geo + 100176: r_indexProxy_02_geo + 100178: r_indexProxy_03_geo + 100180: r_kneeProxy_geo + 100182: r_middleProxy_01_geo + 100184: r_middleProxy_02_geo + 100186: r_middleProxy_03_geo + 100188: r_pinkyProxy_01_geo + 100190: r_pinkyProxy_02_geo + 100192: r_pinkyProxy_03_geo + 100194: r_ringProxy_01_geo + 100196: r_ringProxy_02_geo + 100198: r_ringProxy_03_geo + 100200: r_shourderProxy_geo + 100202: r_thumbProxy_01_geo + 100204: r_thumbProxy_02_geo + 100206: r_thumbProxy_03_geo + 100208: r_UNI_eye + 100210: r_wristProxy_geo + 100212: Reference + 100214: RightArm + 100216: RightCheek + 100218: RightEye + 100220: RightEyelidLower + 100222: RightEyelidUpper + 100224: RightFoot + 100226: RightForeArm + 100228: RightHand + 100230: RightHandIndex1 + 100232: RightHandIndex2 + 100234: RightHandIndex3 + 100236: RightHandMiddle1 + 100238: RightHandMiddle2 + 100240: RightHandMiddle3 + 100242: RightHandPinky1 + 100244: RightHandPinky2 + 100246: RightHandPinky3 + 100248: RightHandRing1 + 100250: RightHandRing2 + 100252: RightHandRing3 + 100254: RightHandThumb1 + 100256: RightHandThumb2 + 100258: RightHandThumb3 + 100260: RightInnerBrow + 100262: RightIOuterBrow + 100264: RightLeg + 100266: RightLipCorner + 100268: RightLipLower + 100270: RightLipUpper + 100272: RightNostril + 100274: RightShoulder + 100276: RightToes + 100278: RightUpLeg + 100280: Spine + 100282: spineProxy_geo + 100284: TongueBack + 100286: TongueTip + 100288: UNI_01_Lower_teethProxy + 100290: UNI_01_TongueBaseProxy + 100292: UNI_01_TongueTipProxy + 100294: UNI_01_Upper_teethProxy + 400000: Chest + 400002: chestProxy_geo + 400004: //RootNode + 400006: Head + 400008: headProxy_geo + 400010: HeadTop_End + 400012: Hips + 400014: Jaw + 400016: JawEND + 400018: jawProxy_geo + 400020: l_ankleProxy_geo + 400022: l_ballProxy_geo + 400024: l_clavicleProxy_geo + 400026: l_erbowProxy_geo + 400028: l_hipProxy_geo + 400030: l_indexProxy_01_geo + 400032: l_indexProxy_02_geo + 400034: l_indexProxy_03_geo + 400036: l_kneeProxy_geo + 400038: l_middleProxy_01_geo + 400040: l_middleProxy_02_geo + 400042: l_middleProxy_03_geo + 400044: l_pinkyProxy_01_geo + 400046: l_pinkyProxy_02_geo + 400048: l_pinkyProxy_03_geo + 400050: l_ringProxy_01_geo + 400052: l_ringProxy_02_geo + 400054: l_ringProxy_03_geo + 400056: l_shourderProxy_geo + 400058: l_thumbProxy_01_geo + 400060: l_thumbProxy_02_geo + 400062: l_thumbProxy_03_geo + 400064: l_UNI_eye + 400066: l_wristProxy_geo + 400068: LeftArm + 400070: LeftCheek + 400072: LeftEye + 400074: LeftEyelidLower + 400076: LeftEyelidUpper + 400078: LeftFoot + 400080: LeftForeArm + 400082: LeftHand + 400084: LeftHandIndex1 + 400086: LeftHandIndex13 + 400088: LeftHandIndex17 + 400090: LeftHandIndex2 + 400092: LeftHandIndex3 + 400094: LeftHandMiddle1 + 400096: LeftHandMiddle13 + 400098: LeftHandMiddle17 + 400100: LeftHandMiddle2 + 400102: LeftHandMiddle3 + 400104: LeftHandPinky1 + 400106: LeftHandPinky13 + 400108: LeftHandPinky17 + 400110: LeftHandPinky2 + 400112: LeftHandPinky3 + 400114: LeftHandRing1 + 400116: LeftHandRing13 + 400118: LeftHandRing17 + 400120: LeftHandRing2 + 400122: LeftHandRing3 + 400124: LeftHandThumb1 + 400126: LeftHandThumb13 + 400128: LeftHandThumb17 + 400130: LeftHandThumb2 + 400132: LeftHandThumb3 + 400134: LeftInnerBrow + 400136: LeftIOuterBrow + 400138: LeftLeg + 400140: LeftLipCorner + 400142: LeftLipLower + 400144: LeftLipUpper + 400146: LeftNostril + 400148: LeftShoulder + 400150: LeftToes + 400152: LeftUpLeg + 400154: LToeBase_End2 + 400156: LToeBase_End3 + 400158: Neck + 400160: neckProxy_geo + 400162: pelvisProxy_geo + 400164: r_ankleProxy_geo + 400166: r_ballProxy_geo + 400168: r_clavicleProxy_geo + 400170: r_erbowProxy_geo + 400172: r_hipProxy_geo + 400174: r_indexProxy_01_geo + 400176: r_indexProxy_02_geo + 400178: r_indexProxy_03_geo + 400180: r_kneeProxy_geo + 400182: r_middleProxy_01_geo + 400184: r_middleProxy_02_geo + 400186: r_middleProxy_03_geo + 400188: r_pinkyProxy_01_geo + 400190: r_pinkyProxy_02_geo + 400192: r_pinkyProxy_03_geo + 400194: r_ringProxy_01_geo + 400196: r_ringProxy_02_geo + 400198: r_ringProxy_03_geo + 400200: r_shourderProxy_geo + 400202: r_thumbProxy_01_geo + 400204: r_thumbProxy_02_geo + 400206: r_thumbProxy_03_geo + 400208: r_UNI_eye + 400210: r_wristProxy_geo + 400212: Reference + 400214: RightArm + 400216: RightCheek + 400218: RightEye + 400220: RightEyelidLower + 400222: RightEyelidUpper + 400224: RightFoot + 400226: RightForeArm + 400228: RightHand + 400230: RightHandIndex1 + 400232: RightHandIndex2 + 400234: RightHandIndex3 + 400236: RightHandMiddle1 + 400238: RightHandMiddle2 + 400240: RightHandMiddle3 + 400242: RightHandPinky1 + 400244: RightHandPinky2 + 400246: RightHandPinky3 + 400248: RightHandRing1 + 400250: RightHandRing2 + 400252: RightHandRing3 + 400254: RightHandThumb1 + 400256: RightHandThumb2 + 400258: RightHandThumb3 + 400260: RightInnerBrow + 400262: RightIOuterBrow + 400264: RightLeg + 400266: RightLipCorner + 400268: RightLipLower + 400270: RightLipUpper + 400272: RightNostril + 400274: RightShoulder + 400276: RightToes + 400278: RightUpLeg + 400280: Spine + 400282: spineProxy_geo + 400284: TongueBack + 400286: TongueTip + 400288: UNI_01_Lower_teethProxy + 400290: UNI_01_TongueBaseProxy + 400292: UNI_01_TongueTipProxy + 400294: UNI_01_Upper_teethProxy + 2300000: chestProxy_geo + 2300002: headProxy_geo + 2300004: jawProxy_geo + 2300006: l_ankleProxy_geo + 2300008: l_ballProxy_geo + 2300010: l_clavicleProxy_geo + 2300012: l_erbowProxy_geo + 2300014: l_hipProxy_geo + 2300016: l_indexProxy_01_geo + 2300018: l_indexProxy_02_geo + 2300020: l_indexProxy_03_geo + 2300022: l_kneeProxy_geo + 2300024: l_middleProxy_01_geo + 2300026: l_middleProxy_02_geo + 2300028: l_middleProxy_03_geo + 2300030: l_pinkyProxy_01_geo + 2300032: l_pinkyProxy_02_geo + 2300034: l_pinkyProxy_03_geo + 2300036: l_ringProxy_01_geo + 2300038: l_ringProxy_02_geo + 2300040: l_ringProxy_03_geo + 2300042: l_shourderProxy_geo + 2300044: l_thumbProxy_01_geo + 2300046: l_thumbProxy_02_geo + 2300048: l_thumbProxy_03_geo + 2300050: l_UNI_eye + 2300052: l_wristProxy_geo + 2300054: neckProxy_geo + 2300056: pelvisProxy_geo + 2300058: r_ankleProxy_geo + 2300060: r_ballProxy_geo + 2300062: r_clavicleProxy_geo + 2300064: r_erbowProxy_geo + 2300066: r_hipProxy_geo + 2300068: r_indexProxy_01_geo + 2300070: r_indexProxy_02_geo + 2300072: r_indexProxy_03_geo + 2300074: r_kneeProxy_geo + 2300076: r_middleProxy_01_geo + 2300078: r_middleProxy_02_geo + 2300080: r_middleProxy_03_geo + 2300082: r_pinkyProxy_01_geo + 2300084: r_pinkyProxy_02_geo + 2300086: r_pinkyProxy_03_geo + 2300088: r_ringProxy_01_geo + 2300090: r_ringProxy_02_geo + 2300092: r_ringProxy_03_geo + 2300094: r_shourderProxy_geo + 2300096: r_thumbProxy_01_geo + 2300098: r_thumbProxy_02_geo + 2300100: r_thumbProxy_03_geo + 2300102: r_UNI_eye + 2300104: r_wristProxy_geo + 2300106: spineProxy_geo + 2300108: UNI_01_Lower_teethProxy + 2300110: UNI_01_TongueBaseProxy + 2300112: UNI_01_TongueTipProxy + 2300114: UNI_01_Upper_teethProxy + 3300000: chestProxy_geo + 3300002: headProxy_geo + 3300004: jawProxy_geo + 3300006: l_ankleProxy_geo + 3300008: l_ballProxy_geo + 3300010: l_clavicleProxy_geo + 3300012: l_erbowProxy_geo + 3300014: l_hipProxy_geo + 3300016: l_indexProxy_01_geo + 3300018: l_indexProxy_02_geo + 3300020: l_indexProxy_03_geo + 3300022: l_kneeProxy_geo + 3300024: l_middleProxy_01_geo + 3300026: l_middleProxy_02_geo + 3300028: l_middleProxy_03_geo + 3300030: l_pinkyProxy_01_geo + 3300032: l_pinkyProxy_02_geo + 3300034: l_pinkyProxy_03_geo + 3300036: l_ringProxy_01_geo + 3300038: l_ringProxy_02_geo + 3300040: l_ringProxy_03_geo + 3300042: l_shourderProxy_geo + 3300044: l_thumbProxy_01_geo + 3300046: l_thumbProxy_02_geo + 3300048: l_thumbProxy_03_geo + 3300050: l_UNI_eye + 3300052: l_wristProxy_geo + 3300054: neckProxy_geo + 3300056: pelvisProxy_geo + 3300058: r_ankleProxy_geo + 3300060: r_ballProxy_geo + 3300062: r_clavicleProxy_geo + 3300064: r_erbowProxy_geo + 3300066: r_hipProxy_geo + 3300068: r_indexProxy_01_geo + 3300070: r_indexProxy_02_geo + 3300072: r_indexProxy_03_geo + 3300074: r_kneeProxy_geo + 3300076: r_middleProxy_01_geo + 3300078: r_middleProxy_02_geo + 3300080: r_middleProxy_03_geo + 3300082: r_pinkyProxy_01_geo + 3300084: r_pinkyProxy_02_geo + 3300086: r_pinkyProxy_03_geo + 3300088: r_ringProxy_01_geo + 3300090: r_ringProxy_02_geo + 3300092: r_ringProxy_03_geo + 3300094: r_shourderProxy_geo + 3300096: r_thumbProxy_01_geo + 3300098: r_thumbProxy_02_geo + 3300100: r_thumbProxy_03_geo + 3300102: r_UNI_eye + 3300104: r_wristProxy_geo + 3300106: spineProxy_geo + 3300108: UNI_01_Lower_teethProxy + 3300110: UNI_01_TongueBaseProxy + 3300112: UNI_01_TongueTipProxy + 3300114: UNI_01_Upper_teethProxy + 4300000: l_UNI_eye + 4300002: r_UNI_eye + 4300004: UNI_01_TongueBaseProxy + 4300006: UNI_01_TongueTipProxy + 4300008: UNI_01_Lower_teethProxy + 4300010: jawProxy_geo + 4300012: headProxy_geo + 4300014: UNI_01_Upper_teethProxy + 4300016: neckProxy_geo + 4300018: r_pinkyProxy_03_geo + 4300020: r_pinkyProxy_02_geo + 4300022: r_pinkyProxy_01_geo + 4300024: r_ringProxy_03_geo + 4300026: r_ringProxy_02_geo + 4300028: r_ringProxy_01_geo + 4300030: r_middleProxy_03_geo + 4300032: r_middleProxy_02_geo + 4300034: r_middleProxy_01_geo + 4300036: r_indexProxy_03_geo + 4300038: r_indexProxy_02_geo + 4300040: r_indexProxy_01_geo + 4300042: r_thumbProxy_03_geo + 4300044: r_thumbProxy_02_geo + 4300046: r_thumbProxy_01_geo + 4300048: r_wristProxy_geo + 4300050: r_erbowProxy_geo + 4300052: r_shourderProxy_geo + 4300054: r_clavicleProxy_geo + 4300056: chestProxy_geo + 4300058: l_pinkyProxy_03_geo + 4300060: l_pinkyProxy_02_geo + 4300062: l_pinkyProxy_01_geo + 4300064: l_ringProxy_03_geo + 4300066: l_ringProxy_02_geo + 4300068: l_ringProxy_01_geo + 4300070: l_middleProxy_03_geo + 4300072: l_middleProxy_02_geo + 4300074: l_middleProxy_01_geo + 4300076: l_indexProxy_03_geo + 4300078: l_indexProxy_02_geo + 4300080: l_indexProxy_01_geo + 4300082: l_thumbProxy_03_geo + 4300084: l_thumbProxy_02_geo + 4300086: l_thumbProxy_01_geo + 4300088: l_wristProxy_geo + 4300090: l_erbowProxy_geo + 4300092: l_shourderProxy_geo + 4300094: l_clavicleProxy_geo + 4300096: spineProxy_geo + 4300098: r_ballProxy_geo + 4300100: r_ankleProxy_geo + 4300102: r_kneeProxy_geo + 4300104: r_hipProxy_geo + 4300106: pelvisProxy_geo + 4300108: l_ballProxy_geo + 4300110: l_ankleProxy_geo + 4300112: l_kneeProxy_geo + 4300114: l_hipProxy_geo + 7400000: HumanoidWalkLeftSharp + 7400002: HumanoidWalkRightSharp + 9500000: //RootNode + materials: + importMaterials: 0 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + optimizeGameObjects: 0 + motionNodeName: + pivotNodeName: + animationCompression: 0 + animationRotationError: .5 + animationPositionError: .5 + animationScaleError: .5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: + - serializedVersion: 16 + name: HumanoidWalkRightSharp + takeName: _8_a_U1_M_P_WalkForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_4 + firstFrame: 53.2999992 + lastFrame: 84 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: 0 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 0 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + - serializedVersion: 16 + name: HumanoidWalkLeftSharp + takeName: _8_a_U1_M_P_WalkForwardTurnRight_NtrlShort__Fb_Dia1m_No_0_PJ_4 + firstFrame: 53.2999992 + lastFrame: 84 + wrapMode: 0 + orientationOffsetY: 0 + level: 0 + cycleOffset: .5 + loop: 0 + loopTime: 1 + loopBlend: 1 + loopBlendOrientation: 0 + loopBlendPositionY: 1 + loopBlendPositionXZ: 0 + keepOriginalOrientation: 0 + keepOriginalPositionY: 0 + keepOriginalPositionXZ: 0 + heightFromFeet: 1 + mirror: 1 + bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 + curves: [] + events: [] + transformMask: [] + maskType: 0 + maskSource: {instanceID: 0} + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: .00999999978 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 0 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 1 + optimizeMeshForGPU: 1 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + splitTangentsAcrossUV: 1 + normalImportMode: 0 + tangentImportMode: 1 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + human: + - boneName: Hips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Spine + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Chest + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Neck + humanName: Neck + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Head + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftToes + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightToes + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: Jaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: LeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: RightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: WalkTurnSharp(Clone) + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Hips + position: {x: 0, y: .951679945, z: -.0734068155} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftUpLeg + position: {x: -.0754494965, y: -.0456640199, z: -7.1054272e-17} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLeg + position: {x: -.0205504987, y: -.409129977, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftFoot + position: {x: -.00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftToes + position: {x: -.00748699997, y: -.0731673017, z: .145427123} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightUpLeg + position: {x: .0754495338, y: -.0456639901, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLeg + position: {x: .0205504671, y: -.409130007, z: -.000718647963} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightFoot + position: {x: .00515299942, y: -.423155904, z: -.0276488513} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightToes + position: {x: .00748699997, y: -.0731673017, z: .145427495} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Spine + position: {x: 1.42108544e-16, y: .0922631845, z: .0157713313} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Chest + position: {x: -1.42108544e-16, y: .162540287, z: -.00165605545} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftShoulder + position: {x: -.0382859968, y: .221622497, z: -.017063085} + rotation: {x: -.0221654978, y: -.0647571012, z: .150944948, w: .986169815} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftArm + position: {x: -.100502051, y: 8.54155913e-10, z: -3.69725445e-10} + rotation: {x: .0106419669, y: .0620222352, z: -.139523, w: .988217294} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftForeArm + position: {x: -.254049301, y: -2.90391433e-10, z: 1.89220972e-10} + rotation: {x: .191195339, y: .0320876539, z: -.015048732, w: .98091203} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHand + position: {x: -.24638927, y: -2.04380513e-10, z: -2.76404663e-11} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex1 + position: {x: -.0751257986, y: -.00784140453, z: .0326526426} + rotation: {x: -.0355880857, y: .0203896258, z: .0891591534, w: .99517262} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex2 + position: {x: -.03979728, y: 4.980843e-05, z: .00118575059} + rotation: {x: -.0676201731, y: .014689805, z: .0282076728, w: .997204125} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandIndex3 + position: {x: -.0279684775, y: -6.32620267e-09, z: -5.13934566e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle1 + position: {x: -.0760238245, y: -.00188513449, z: .0101412293} + rotation: {x: -.0202437695, y: .0555506349, z: .0874595419, w: .994412005} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle2 + position: {x: -.0442804359, y: 4.79886603e-06, z: -.000425400416} + rotation: {x: -.0148668028, y: -.00650640437, z: .027121624, w: .999500394} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandMiddle3 + position: {x: -.0339648277, y: -1.23281945e-08, z: 3.8019885e-09} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky1 + position: {x: -.0656599477, y: -.00782510638, z: -.0322512463} + rotation: {x: -.0490607433, y: .0760781392, z: .0864796862, w: .992132246} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky2 + position: {x: -.0308054481, y: -3.08745912e-05, z: -.00144807703} + rotation: {x: .0495053492, y: -.0218173042, z: .0328643546, w: .997994602} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandPinky3 + position: {x: -.0230640266, y: -6.40261305e-06, z: 1.81588078e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing1 + position: {x: -.0703021064, y: -.00374530931, z: -.0114117917} + rotation: {x: -.0161509272, y: .0750548989, z: .0853952542, w: .993384898} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing2 + position: {x: -.0431354567, y: -2.0882313e-05, z: -.00223517814} + rotation: {x: .0190618392, y: -.0256752465, z: .0289273206, w: .999069929} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandRing3 + position: {x: -.0308355652, y: 1.19146082e-10, z: -1.64279221e-08} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb1 + position: {x: -.0142312413, y: -.0123778246, z: .0255316682} + rotation: {x: -.103088424, y: -.0457053706, z: -.0948034078, w: .989088535} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb2 + position: {x: -.0163739994, y: -.00528999977, z: .0234914087} + rotation: {x: -.0260616504, y: .0966882184, z: .00360805099, w: .994966924} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftHandThumb3 + position: {x: -.0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Neck + position: {x: -1.42108544e-16, y: .259009302, z: -.0324132554} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Head + position: {x: -4.26325632e-16, y: .0830703825, z: .0113267815} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: Jaw + position: {x: 1.73472344e-20, y: .0111267585, z: .0103275431} + rotation: {x: .219240054, y: -0, z: -0, w: .975670993} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: JawEND + position: {x: -1.73472344e-20, y: -.0482887588, z: .071851708} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipCorner + position: {x: -.032843262, y: -.01657876, z: .0661217645} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipLower + position: {x: -.0142508168, y: -.0216887593, z: .0822406337} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipCorner + position: {x: .0328399986, y: -.01657876, z: .0661187842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipLower + position: {x: .0142508168, y: -.0216887593, z: .0822387859} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueBack + position: {x: -1.73472344e-20, y: -.022869369, z: .0100954091} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: TongueTip + position: {x: -1.73472344e-20, y: -.0232788119, z: .0383227095} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftCheek + position: {x: -.0542440265, y: .0337019488, z: .0594304018} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEye + position: {x: -.0208482333, y: .0825027004, z: .0554274321} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidLower + position: {x: -.0356189571, y: .0650736615, z: .076234743} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftEyelidUpper + position: {x: -.0344068967, y: .10060814, z: .0802053064} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftInnerBrow + position: {x: -.0120626912, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftIOuterBrow + position: {x: -.0550398715, y: .114825293, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftLipUpper + position: {x: -.0145013221, y: -.00511181122, z: .094618842} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: LeftNostril + position: {x: -.0178999994, y: .0263128281, z: .0908674002} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightCheek + position: {x: .0542399958, y: .033702828, z: .0594273992} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEye + position: {x: .020849999, y: .082502827, z: .0554273985} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidLower + position: {x: .0356200002, y: .065072827, z: .0762374029} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightEyelidUpper + position: {x: .0344099998, y: .100612827, z: .0802073926} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightInnerBrow + position: {x: .0120626874, y: .118765265, z: .0934668258} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightIOuterBrow + position: {x: .0550400019, y: .114822827, z: .061777398} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightLipUpper + position: {x: .0145013221, y: -.00510717137, z: .094617404} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightNostril + position: {x: .0178999994, y: .0263089053, z: .0908706188} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightShoulder + position: {x: .0382860154, y: .221621141, z: -.017063085} + rotation: {x: .154757425, y: .986676931, z: -.0157793798, w: -.0476438813} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightArm + position: {x: -.100501455, y: -2.49648065e-06, z: -5.26188195e-08} + rotation: {x: .130882964, y: .987497151, z: -.0353813171, w: .0804189369} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightForeArm + position: {x: .253428251, y: .00601135287, z: -.0167045239} + rotation: {x: .280784488, y: .028492162, z: -.0234558787, w: .959061027} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHand + position: {x: .245373696, y: .0216417722, z: .00555046508} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex1 + position: {x: .0747694969, y: -.00124305324, z: .0343444981} + rotation: {x: .0702486187, y: .110602617, z: -.0305125732, w: .990909278} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex2 + position: {x: .0370584019, y: .00072612107, z: .0145388944} + rotation: {x: -.0682227388, y: .0217395108, z: .0434513427, w: .996486425} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandIndex3 + position: {x: .0252250377, y: -.00496646529, z: .0110121462} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle1 + position: {x: .0756476447, y: .00479140272, z: .0118531818} + rotation: {x: -.0920466632, y: .0207282137, z: -.0604893267, w: .99369961} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle2 + position: {x: .0438090637, y: .000194188135, z: .00645493623} + rotation: {x: -.0169275757, y: -.0436564907, z: .0808736235, w: .995624006} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandMiddle3 + position: {x: .0330724716, y: -.00754753686, z: .00168984616} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky1 + position: {x: .0668033436, y: -.00199410855, z: -.0307561457} + rotation: {x: -.285667181, y: -.21415624, z: .021061996, w: .933856428} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky2 + position: {x: .0285308417, y: -.001397143, z: -.0116237961} + rotation: {x: .0287868604, y: .000551951351, z: -.0619924963, w: .997661233} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandPinky3 + position: {x: .0214268602, y: -.000553508929, z: -.00851660781} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing1 + position: {x: .0705984756, y: .00245709671, z: -.00982145779} + rotation: {x: -.104537345, y: -.101430796, z: -.0258029439, w: .988998473} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing2 + position: {x: .0428871848, y: -.00137538207, z: -.00494585838} + rotation: {x: .0209362246, y: -.0216365587, z: .0753415748, w: .996703148} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandRing3 + position: {x: .0295006037, y: -.00769293541, z: -.00462225592} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb1 + position: {x: .0146849155, y: -.0111049423, z: .0258580949} + rotation: {x: -.15737839, y: .0567218959, z: .195477024, w: .966335058} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb2 + position: {x: .0163739994, y: -.00528999977, z: .0234913602} + rotation: {x: -.026062455, y: -.0966872424, z: -.00360673014, w: .994967043} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + - name: RightHandThumb3 + position: {x: .0254599992, y: -.00763999997, z: .0208330005} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + transformModified: 1 + armTwist: .5 + foreArmTwist: .5 + upperLegTwist: .5 + legTwist: .5 + armStretch: .0500000007 + legStretch: .0500000007 + feetSpacing: 0 + rootMotionBoneName: + lastHumanDescriptionAvatarSource: {fileID: 9000000, guid: e8914d097ece7cc48a83d5fccd4098c0, + type: 3} + animationType: 3 + additionalBone: 0 + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animator.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animator.meta new file mode 100644 index 0000000..1e68054 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animator.meta @@ -0,0 +1,6 @@ +fileFormatVersion: 2 +guid: 29486a9cd1773f44f80570b5bd896a1d +folderAsset: yes +DefaultImporter: + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animator/ThirdPersonAnimatorController.controller b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animator/ThirdPersonAnimatorController.controller new file mode 100644 index 0000000..0e35e5f --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animator/ThirdPersonAnimatorController.controller @@ -0,0 +1,910 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: ThirdPersonAnimatorController + serializedVersion: 5 + m_AnimatorParameters: + - m_Name: Forward + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Turn + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: Crouch + m_Type: 4 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: OnGround + m_Type: 4 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 1 + m_Controller: {fileID: 9100000} + - m_Name: Jump + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + - m_Name: JumpLeg + m_Type: 1 + m_DefaultFloat: 0 + m_DefaultInt: 0 + m_DefaultBool: 0 + m_Controller: {fileID: 9100000} + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 110700000} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 1 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!206 &20600000 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: dffa50cfe77e0434bbfa71245b3dd529, type: 3} + m_Threshold: 0 + m_Position: {x: 0.06, y: 0.34} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 6fb3851da6a6f5948ab6892bee8ba920, type: 3} + m_Threshold: 0.0952381 + m_Position: {x: 0.5, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400006, guid: 6fb3851da6a6f5948ab6892bee8ba920, type: 3} + m_Threshold: 0.1904762 + m_Position: {x: 1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400010, guid: 6fb3851da6a6f5948ab6892bee8ba920, type: 3} + m_Threshold: 0.2857143 + m_Position: {x: -0.5, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400014, guid: 6fb3851da6a6f5948ab6892bee8ba920, type: 3} + m_Threshold: 0.3809524 + m_Position: {x: -1, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: b1a5e04ae51004842aba06704a6c2903, type: 3} + m_Threshold: 0.42857143 + m_Position: {x: 0.2, y: 3.02} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: bb141fc9a700c9c4ca7e6dadb8acf24b, type: 3} + m_Threshold: 0.47619048 + m_Position: {x: 1, y: 0.5} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 1c52c953c83c2254a9fa72d50250f028, type: 3} + m_Threshold: 0.52380955 + m_Position: {x: 0.5, y: 0.5} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: bb141fc9a700c9c4ca7e6dadb8acf24b, type: 3} + m_Threshold: 0.61904764 + m_Position: {x: -1, y: 0.5} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: 1c52c953c83c2254a9fa72d50250f028, type: 3} + m_Threshold: 0.6666667 + m_Position: {x: -0.5, y: 0.5} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 1cb8ed3cbba15f0479fbae54e0a963df, type: 3} + m_Threshold: 0.7619048 + m_Position: {x: 0, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: f2bed5dc5afacff44a00de8daae9703b, type: 3} + m_Threshold: 0.8095238 + m_Position: {x: 1, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: f2bed5dc5afacff44a00de8daae9703b, type: 3} + m_Threshold: 0.85714287 + m_Position: {x: -1, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 1062212255550964e974f3ffb3cbaae3, type: 3} + m_Threshold: 0.9047619 + m_Position: {x: 0.5, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: 1062212255550964e974f3ffb3cbaae3, type: 3} + m_Threshold: 0.95238096 + m_Position: {x: -0.5, y: 1} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + m_BlendParameter: Turn + m_BlendParameterY: Forward + m_MinThreshold: 0 + m_MaxThreshold: 0.95238096 + m_UseAutomaticThresholds: 0 + m_NormalizedBlendValues: 0 + m_BlendType: 3 +--- !u!206 &20600002 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400010, guid: 4ee731d726c3dd34eb36806ea0d8fe98, type: 3} + m_Threshold: -1 + m_Position: {x: 0, y: 0} + m_TimeScale: 2 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400014, guid: e38eb300eb4745b4db509a224a99bbe1, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 4ee731d726c3dd34eb36806ea0d8fe98, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 2 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + m_BlendParameter: Turn + m_BlendParameterY: Blend + m_MinThreshold: -1 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 0 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &20600004 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Walk + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: 6da89662649b53c49b06616f51157b48, type: 3} + m_Threshold: -1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 24c848a6dbf95e848950ca5403a1191e, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 6da89662649b53c49b06616f51157b48, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + m_BlendParameter: Turn + m_BlendParameterY: Blend + m_MinThreshold: -1 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 0 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &20600006 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Run + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400026, guid: ccb909e390d7be24e9107d33119a0eaa, type: 3} + m_Threshold: -1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400024, guid: ccb909e390d7be24e9107d33119a0eaa, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400022, guid: ccb909e390d7be24e9107d33119a0eaa, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + m_BlendParameter: Turn + m_BlendParameterY: Blend + m_MinThreshold: -1 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 0 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &20608386 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: 98e8896e12d39bb41a5a74e9ae897a64, type: 3} + m_Threshold: -1 + m_Position: {x: 0, y: 0} + m_TimeScale: 2 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 11cd8118786c19d49a6bf4fc939ad434, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 98e8896e12d39bb41a5a74e9ae897a64, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 2 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + m_BlendParameter: Turn + m_BlendParameterY: Blend + m_MinThreshold: -1 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 0 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &20610505 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: d89ea37480b6d75458aa38843e9688dc, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: d89ea37480b6d75458aa38843e9688dc, type: 3} + m_Threshold: 0.1984127 + m_Position: {x: 0, y: 1} + m_TimeScale: 2 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400008, guid: d89ea37480b6d75458aa38843e9688dc, type: 3} + m_Threshold: 0.3968254 + m_Position: {x: -1, y: 1} + m_TimeScale: 2 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400014, guid: d89ea37480b6d75458aa38843e9688dc, type: 3} + m_Threshold: 0.5952381 + m_Position: {x: 1, y: 1} + m_TimeScale: 2 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + m_BlendParameter: Turn + m_BlendParameterY: Forward + m_MinThreshold: 0 + m_MaxThreshold: 0.5952381 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 3 +--- !u!206 &20610787 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: f03e10c73f30b4ab4aa8ea8f1cc16d36, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: -1} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: 51dd2e4c869794f75a0df7d54b210214, type: 3} + m_Threshold: 5 + m_Position: {x: 5, y: -1} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 51dd2e4c869794f75a0df7d54b210214, type: 3} + m_Threshold: 15 + m_Position: {x: 5, y: 1} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: 0d9d26e2162aa4d11ab075b34c029673, type: 3} + m_Threshold: 20 + m_Position: {x: -5, y: 0} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: f03e10c73f30b4ab4aa8ea8f1cc16d36, type: 3} + m_Threshold: 25 + m_Position: {x: 0, y: 1} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400006, guid: 0d9d26e2162aa4d11ab075b34c029673, type: 3} + m_Threshold: 35 + m_Position: {x: 5, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400008, guid: 0d9d26e2162aa4d11ab075b34c029673, type: 3} + m_Threshold: 40 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + m_BlendParameter: Jump + m_BlendParameterY: JumpLeg + m_MinThreshold: 0 + m_MaxThreshold: 40 + m_UseAutomaticThresholds: 0 + m_NormalizedBlendValues: 0 + m_BlendType: 3 +--- !u!206 &20621344 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: f03e10c73f30b4ab4aa8ea8f1cc16d36, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: -1} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: 51dd2e4c869794f75a0df7d54b210214, type: 3} + m_Threshold: 5 + m_Position: {x: 5, y: -1} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 51dd2e4c869794f75a0df7d54b210214, type: 3} + m_Threshold: 15 + m_Position: {x: 5, y: 1} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: 0d9d26e2162aa4d11ab075b34c029673, type: 3} + m_Threshold: 20 + m_Position: {x: -9, y: 0} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400004, guid: f03e10c73f30b4ab4aa8ea8f1cc16d36, type: 3} + m_Threshold: 25 + m_Position: {x: 0, y: 1} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400006, guid: 0d9d26e2162aa4d11ab075b34c029673, type: 3} + m_Threshold: 35 + m_Position: {x: 5, y: 0} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400008, guid: 0d9d26e2162aa4d11ab075b34c029673, type: 3} + m_Threshold: 40 + m_Position: {x: 0, y: 0} + m_TimeScale: 0.1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + m_BlendParameter: Jump + m_BlendParameterY: JumpLeg + m_MinThreshold: 0 + m_MaxThreshold: 40 + m_UseAutomaticThresholds: 0 + m_NormalizedBlendValues: 0 + m_BlendType: 3 +--- !u!206 &20631403 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Walk + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 7400002, guid: 1da5f9c54c49bfc488819dd2df8bb228, type: 3} + m_Threshold: -1 + m_Position: {x: 0, y: 0} + m_TimeScale: 2 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: c869773dc0bdfe042a8293344c186eaf, type: 3} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 2 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 7400000, guid: 1da5f9c54c49bfc488819dd2df8bb228, type: 3} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 2 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + m_BlendParameter: Turn + m_BlendParameterY: Blend + m_MinThreshold: -1 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 0 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &20659883 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: + - serializedVersion: 2 + m_Motion: {fileID: 20608386} + m_Threshold: 0 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + - serializedVersion: 2 + m_Motion: {fileID: 20631403} + m_Threshold: 1 + m_Position: {x: 0, y: 0} + m_TimeScale: 1 + m_CycleOffset: 0 + m_DirectBlendParameter: + m_Mirror: 0 + m_BlendParameter: Forward + m_BlendParameterY: Blend + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!206 &20683409 +BlendTree: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Blend Tree + m_Childs: [] + m_BlendParameter: Forward + m_BlendParameterY: Forward + m_MinThreshold: 0 + m_MaxThreshold: 1 + m_UseAutomaticThresholds: 1 + m_NormalizedBlendValues: 0 + m_BlendType: 0 +--- !u!1101 &110100000 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: + - m_ConditionMode: 1 + m_ConditionEvent: Crouch + m_EventTreshold: 0 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 110200000} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.080123246 + m_TransitionOffset: 0 + m_ExitTime: 0.9 + m_HasExitTime: 0 + m_HasFixedDuration: 0 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &110100036 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: + - m_ConditionMode: 2 + m_ConditionEvent: Crouch + m_EventTreshold: 0 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 110298501} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.111009784 + m_TransitionOffset: 0 + m_ExitTime: 0.9 + m_HasExitTime: 0 + m_HasFixedDuration: 0 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &110123257 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: + - m_ConditionMode: 1 + m_ConditionEvent: OnGround + m_EventTreshold: 0 + - m_ConditionMode: 3 + m_ConditionEvent: Jump + m_EventTreshold: -2 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 110298501} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.11774184 + m_TransitionOffset: 0 + m_ExitTime: 0.9 + m_HasExitTime: 0 + m_HasFixedDuration: 0 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &110135218 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: + - m_ConditionMode: 2 + m_ConditionEvent: OnGround + m_EventTreshold: 0 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 110276412} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.10203097 + m_TransitionOffset: 0.018051635 + m_ExitTime: 0.9 + m_HasExitTime: 0 + m_HasFixedDuration: 0 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &110161005 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: + - m_ConditionMode: 2 + m_ConditionEvent: OnGround + m_EventTreshold: 0 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 110276412} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.024659414 + m_TransitionOffset: 0 + m_ExitTime: 0.9 + m_HasExitTime: 0 + m_HasFixedDuration: 0 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &110167223 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: + - m_ConditionMode: 2 + m_ConditionEvent: Crouch + m_EventTreshold: 0 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 110298501} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.101033315 + m_TransitionOffset: 0 + m_ExitTime: 0.9 + m_HasExitTime: 0 + m_HasFixedDuration: 0 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1101 &110172777 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: + - m_ConditionMode: 1 + m_ConditionEvent: OnGround + m_EventTreshold: 0 + - m_ConditionMode: 4 + m_ConditionEvent: Jump + m_EventTreshold: -2 + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 110200000} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.18205842 + m_TransitionOffset: 0 + m_ExitTime: 0.9 + m_HasExitTime: 0 + m_HasFixedDuration: 0 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &110200000 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Crouching + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 110100036} + - {fileID: 110161005} + m_StateMachineBehaviours: [] + m_Position: {x: 444, y: 240, z: 0} + m_IKOnFeet: 1 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 20610505} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &110276412 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Airborne + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 110172777} + - {fileID: 110123257} + m_StateMachineBehaviours: [] + m_Position: {x: 444, y: -48, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 20621344} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &110298501 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Grounded + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 588, y: 96, z: 0} + m_IKOnFeet: 1 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 20600000} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &110700000 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 110298501} + m_Position: {x: 410, y: 110, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 36, y: 108, z: 0} + m_ExitPosition: {x: 850, y: 100, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 110298501} diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animator/ThirdPersonAnimatorController.controller.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animator/ThirdPersonAnimatorController.controller.meta new file mode 100644 index 0000000..3b91603 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Animator/ThirdPersonAnimatorController.controller.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: e2cf68ff4b1ffda45a77f7307dd789b9 +NativeFormatImporter: + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials.meta new file mode 100644 index 0000000..86fb958 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials.meta @@ -0,0 +1,6 @@ +fileFormatVersion: 2 +guid: f93df448921b46c45999c77f43856ba2 +folderAsset: yes +DefaultImporter: + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanGrey.mat b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanGrey.mat new file mode 100644 index 0000000..9b9b505 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanGrey.mat @@ -0,0 +1,175 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: EthanGrey + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _LIGHTMAPPING_STATIC_LIGHTMAPS _NORMALMAP _UVPRIM_UV1 _UVSEC_UV1 + m_LightmapFlags: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + m_SavedProperties: + serializedVersion: 2 + m_TexEnvs: + - first: + name: _BumpMap + second: + m_Texture: {fileID: 2800000, guid: 3b5b7be0f2332c24f89a2af018daa62d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - first: + name: _Cube + second: + m_Texture: {fileID: 8900000, guid: 6c5668bb9f9669342bfdd3eaddebb56b, type: 2} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - first: + name: _DetailAlbedoMap + second: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - first: + name: _DetailMask + second: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - first: + name: _DetailNormalMap + second: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - first: + name: _EmissionMap + second: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - first: + name: _MainTex + second: + m_Texture: {fileID: 2800000, guid: 0ca09a4614a0daa44ba043de90181896, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - first: + name: _Occlusion + second: + m_Texture: {fileID: 2800000, guid: 4e2f32e9a1fefc24092337ae061f3dbc, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - first: + name: _OcclusionMap + second: + m_Texture: {fileID: 2800000, guid: 4e2f32e9a1fefc24092337ae061f3dbc, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - first: + name: _ParallaxMap + second: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - first: + name: _SpecGlossMap + second: + m_Texture: {fileID: 2800000, guid: c6093d6055cd6a44ebf0637f17fca0e8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - first: + name: _AlphaTestRef + second: 0.5 + - first: + name: _BumpScale + second: 1 + - first: + name: _Cutoff + second: 0.5 + - first: + name: _DetailAlbedoMultiplier + second: 2 + - first: + name: _DetailMode + second: 0 + - first: + name: _DetailNormalMapScale + second: 1 + - first: + name: _DstBlend + second: 0 + - first: + name: _EmissionScale + second: 1 + - first: + name: _EmissionScaleUI + second: 1 + - first: + name: _GlossMapScale + second: 1 + - first: + name: _Glossiness + second: 0.4 + - first: + name: _GlossyReflections + second: 1 + - first: + name: _Lightmapping + second: 0 + - first: + name: _Mode + second: 0 + - first: + name: _OcclusionStrength + second: 1 + - first: + name: _Parallax + second: 0.02 + - first: + name: _Shininess + second: 0.41313845 + - first: + name: _SmoothnessTextureChannel + second: 0 + - first: + name: _SpecularHighlights + second: 1 + - first: + name: _SrcBlend + second: 1 + - first: + name: _UVPrim + second: 0 + - first: + name: _UVSec + second: 0 + - first: + name: _ZWrite + second: 1 + m_Colors: + - first: + name: _Color + second: {r: 0.49803922, g: 0.49803922, b: 0.49803922, a: 1} + - first: + name: _EmissionColor + second: {r: 0, g: 0, b: 0, a: 0.99999994} + - first: + name: _EmissionColorUI + second: {r: 0, g: 0, b: 0, a: 1} + - first: + name: _EmissionColorWithMapUI + second: {r: 1, g: 1, b: 1, a: 1} + - first: + name: _ReflectColor + second: {r: 1, g: 1, b: 1, a: 0.5} + - first: + name: _SpecColor + second: {r: 0.09803922, g: 0.09803922, b: 0.09803922, a: 1} + - first: + name: _SpecularColor + second: {r: 0.24264705, g: 0.24264705, b: 0.24264705, a: 1} diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanGrey.mat.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanGrey.mat.meta new file mode 100644 index 0000000..bf9ebe8 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanGrey.mat.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 621e901dcf5ebaf46bce29d18f67194c +NativeFormatImporter: + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanWhite.mat b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanWhite.mat new file mode 100644 index 0000000..61ec3c2 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanWhite.mat @@ -0,0 +1,194 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 4 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: EthanWhite + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _LIGHTMAPPING_STATIC_LIGHTMAPS _NORMALMAP _UVPRIM_UV1 _UVSEC_UV1 + m_CustomRenderQueue: -1 + m_SavedProperties: + serializedVersion: 2 + m_TexEnvs: + data: + first: + name: _MainTex + second: + m_Texture: {fileID: 2800000, guid: 0ca09a4614a0daa44ba043de90181896, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + data: + first: + name: _BumpMap + second: + m_Texture: {fileID: 2800000, guid: 3b5b7be0f2332c24f89a2af018daa62d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + data: + first: + name: _DetailNormalMap + second: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + data: + first: + name: _EmissionMap + second: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + data: + first: + name: _ParallaxMap + second: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + data: + first: + name: _Occlusion + second: + m_Texture: {fileID: 2800000, guid: 4e2f32e9a1fefc24092337ae061f3dbc, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + data: + first: + name: _SpecGlossMap + second: + m_Texture: {fileID: 2800000, guid: c6093d6055cd6a44ebf0637f17fca0e8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + data: + first: + name: _DetailMask + second: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + data: + first: + name: _DetailAlbedoMap + second: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + data: + first: + name: _Cube + second: + m_Texture: {fileID: 8900000, guid: 6c5668bb9f9669342bfdd3eaddebb56b, type: 2} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + data: + first: + name: _OcclusionMap + second: + m_Texture: {fileID: 2800000, guid: 4e2f32e9a1fefc24092337ae061f3dbc, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + data: + first: + name: _Shininess + second: .413138449 + data: + first: + name: _AlphaTestRef + second: .5 + data: + first: + name: _Lightmapping + second: 0 + data: + first: + name: _SrcBlend + second: 1 + data: + first: + name: _DstBlend + second: 0 + data: + first: + name: _Parallax + second: .0199999996 + data: + first: + name: _ZWrite + second: 1 + data: + first: + name: _Glossiness + second: .150000006 + data: + first: + name: _BumpScale + second: 1 + data: + first: + name: _OcclusionStrength + second: 1 + data: + first: + name: _DetailNormalMapScale + second: 1 + data: + first: + name: _UVSec + second: 0 + data: + first: + name: _Mode + second: 0 + data: + first: + name: _EmissionScaleUI + second: 1 + data: + first: + name: _EmissionScale + second: 1 + data: + first: + name: _DetailAlbedoMultiplier + second: 2 + data: + first: + name: _UVPrim + second: 0 + data: + first: + name: _DetailMode + second: 0 + m_Colors: + data: + first: + name: _EmissionColor + second: {r: 0, g: 0, b: 0, a: .99999994} + data: + first: + name: _Color + second: {r: 1, g: 1, b: 1, a: 1} + data: + first: + name: _SpecularColor + second: {r: .242647052, g: .242647052, b: .242647052, a: 1} + data: + first: + name: _EmissionColorUI + second: {r: 0, g: 0, b: 0, a: 1} + data: + first: + name: _EmissionColorWithMapUI + second: {r: 1, g: 1, b: 1, a: 1} + data: + first: + name: _SpecColor + second: {r: .0980392173, g: .0980392173, b: .0980392173, a: 1} + data: + first: + name: _ReflectColor + second: {r: 1, g: 1, b: 1, a: .5} diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanWhite.mat.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanWhite.mat.meta new file mode 100644 index 0000000..5cf0988 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Materials/EthanWhite.mat.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: f62b52b2d4b721742a0bc5c6b4db468d +NativeFormatImporter: + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models.meta new file mode 100644 index 0000000..300c6eb --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models.meta @@ -0,0 +1,6 @@ +fileFormatVersion: 2 +guid: aef224e1951a8274684081643c7fa672 +folderAsset: yes +DefaultImporter: + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models/Ethan.fbx b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models/Ethan.fbx new file mode 100644 index 0000000..8e422d9 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models/Ethan.fbx @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc93daa1e0be52604cb56958e21c105087fd567d3f881d292f87555cdb4bd98 +size 741616 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models/Ethan.fbx.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models/Ethan.fbx.meta new file mode 100644 index 0000000..2dc5145 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Models/Ethan.fbx.meta @@ -0,0 +1,1271 @@ +fileFormatVersion: 2 +guid: b235179bd2a63d1468dd430670338c55 +timeCreated: 1477489902 +licenseType: Store +ModelImporter: + serializedVersion: 19 + fileIDToRecycleName: + 100000: char_cyberKid_Badge + 100002: char_ethan_body + 100004: char_ethan_glasses + 100006: char_ethan_Head + 100008: char_ethan_Head1 + 100010: char_ethan_Hips + 100012: char_ethan_Jaw + 100014: char_ethan_LeftArm + 100016: char_ethan_LeftBlink + 100018: char_ethan_LeftBrow + 100020: char_ethan_LeftCorner + 100022: char_ethan_LeftEye + 100024: char_ethan_LeftFoot + 100026: char_ethan_LeftForeArm + 100028: char_ethan_LeftHand + 100030: char_ethan_LeftHandIndex1 + 100032: char_ethan_LeftHandIndex2 + 100034: char_ethan_LeftHandIndex3 + 100036: char_ethan_LeftHandIndex4 + 100038: char_ethan_LeftHandMiddle1 + 100040: char_ethan_LeftHandMiddle2 + 100042: char_ethan_LeftHandMiddle3 + 100044: char_ethan_LeftHandMiddle4 + 100046: char_ethan_LeftHandPinky1 + 100048: char_ethan_LeftHandPinky2 + 100050: char_ethan_LeftHandPinky3 + 100052: char_ethan_LeftHandPinky4 + 100054: char_ethan_LeftHandRing1 + 100056: char_ethan_LeftHandRing2 + 100058: char_ethan_LeftHandRing3 + 100060: char_ethan_LeftHandRing4 + 100062: char_ethan_LeftHandThumb1 + 100064: char_ethan_LeftHandThumb2 + 100066: char_ethan_LeftHandThumb3 + 100068: char_ethan_LeftHandThumb4 + 100070: char_ethan_LeftLeg + 100072: char_ethan_LeftLowerLip + 100074: char_ethan_LeftShoulder + 100076: char_ethan_LeftToe1 + 100078: char_ethan_LeftToe2 + 100080: char_ethan_LeftUpLeg + 100082: char_ethan_LeftUpperLip + 100084: char_ethan_LowerLip + 100086: char_ethan_Neck + 100088: char_ethan_RightArm + 100090: char_ethan_RightBlink + 100092: char_ethan_RightBrow + 100094: char_ethan_RightCorner + 100096: char_ethan_RightEye + 100098: char_ethan_RightFoot + 100100: char_ethan_RightForeArm + 100102: char_ethan_RightHand + 100104: char_ethan_RightHandIndex1 + 100106: char_ethan_RightHandIndex2 + 100108: char_ethan_RightHandIndex3 + 100110: char_ethan_RightHandIndex4 + 100112: char_ethan_RightHandMiddle1 + 100114: char_ethan_RightHandMiddle2 + 100116: char_ethan_RightHandMiddle3 + 100118: char_ethan_RightHandMiddle4 + 100120: char_ethan_RightHandPinky1 + 100122: char_ethan_RightHandPinky2 + 100124: char_ethan_RightHandPinky3 + 100126: char_ethan_RightHandPinky4 + 100128: char_ethan_RightHandRing1 + 100130: char_ethan_RightHandRing2 + 100132: char_ethan_RightHandRing3 + 100134: char_ethan_RightHandRing4 + 100136: char_ethan_RightHandThumb1 + 100138: char_ethan_RightHandThumb2 + 100140: char_ethan_RightHandThumb3 + 100142: char_ethan_RightHandThumb4 + 100144: char_ethan_RightLeg + 100146: char_ethan_RightLowerLip + 100148: char_ethan_RightShoulder + 100150: char_ethan_RightToe1 + 100152: char_ethan_RightToe2 + 100154: char_ethan_RightUpLeg + 100156: char_ethan_RightUpperLip + 100158: char_ethan_skeleton + 100160: char_ethan_Spine + 100162: char_ethan_Spine1 + 100164: char_ethan_Spine2 + 100166: char_ethan_UpperLip + 100168: //RootNode + 100170: EthanBody + 100172: EthanGlasses + 100174: EthanHead + 100176: EthanHead1 + 100178: EthanHips + 100180: EthanJaw + 100182: EthanLeftArm + 100184: EthanLeftBlink + 100186: EthanLeftBrow + 100188: EthanLeftCorner + 100190: EthanLeftEye + 100192: EthanLeftFoot + 100194: EthanLeftForeArm + 100196: EthanLeftHand + 100198: EthanLeftHandIndex1 + 100200: EthanLeftHandIndex2 + 100202: EthanLeftHandIndex3 + 100204: EthanLeftHandIndex4 + 100206: EthanLeftHandMiddle1 + 100208: EthanLeftHandMiddle2 + 100210: EthanLeftHandMiddle3 + 100212: EthanLeftHandMiddle4 + 100214: EthanLeftHandPinky1 + 100216: EthanLeftHandPinky2 + 100218: EthanLeftHandPinky3 + 100220: EthanLeftHandPinky4 + 100222: EthanLeftHandRing1 + 100224: EthanLeftHandRing2 + 100226: EthanLeftHandRing3 + 100228: EthanLeftHandRing4 + 100230: EthanLeftHandThumb1 + 100232: EthanLeftHandThumb2 + 100234: EthanLeftHandThumb3 + 100236: EthanLeftHandThumb4 + 100238: EthanLeftLeg + 100240: EthanLeftLowerLip + 100242: EthanLeftShoulder + 100244: EthanLeftToe1 + 100246: EthanLeftToe2 + 100248: EthanLeftUpLeg + 100250: EthanLeftUpperLip + 100252: EthanLowerLip + 100254: EthanNeck + 100256: EthanRightArm + 100258: EthanRightBlink + 100260: EthanRightBrow + 100262: EthanRightCorner + 100264: EthanRightEye + 100266: EthanRightFoot + 100268: EthanRightForeArm + 100270: EthanRightHand + 100272: EthanRightHandIndex1 + 100274: EthanRightHandIndex2 + 100276: EthanRightHandIndex3 + 100278: EthanRightHandIndex4 + 100280: EthanRightHandMiddle1 + 100282: EthanRightHandMiddle2 + 100284: EthanRightHandMiddle3 + 100286: EthanRightHandMiddle4 + 100288: EthanRightHandPinky1 + 100290: EthanRightHandPinky2 + 100292: EthanRightHandPinky3 + 100294: EthanRightHandPinky4 + 100296: EthanRightHandRing1 + 100298: EthanRightHandRing2 + 100300: EthanRightHandRing3 + 100302: EthanRightHandRing4 + 100304: EthanRightHandThumb1 + 100306: EthanRightHandThumb2 + 100308: EthanRightHandThumb3 + 100310: EthanRightHandThumb4 + 100312: EthanRightLeg + 100314: EthanRightLowerLip + 100316: EthanRightShoulder + 100318: EthanRightToe1 + 100320: EthanRightToe2 + 100322: EthanRightUpLeg + 100324: EthanRightUpperLip + 100326: EthanSkeleton + 100328: EthanSpine + 100330: EthanSpine1 + 100332: EthanSpine2 + 100334: EthanUpperLip + 100336: EthanBody1 + 100338: EthanSkeleton1 + 400000: char_cyberKid_Badge + 400002: char_ethan_body + 400004: char_ethan_glasses + 400006: char_ethan_Head + 400008: char_ethan_Head1 + 400010: char_ethan_Hips + 400012: char_ethan_Jaw + 400014: char_ethan_LeftArm + 400016: char_ethan_LeftBlink + 400018: char_ethan_LeftBrow + 400020: char_ethan_LeftCorner + 400022: char_ethan_LeftEye + 400024: char_ethan_LeftFoot + 400026: char_ethan_LeftForeArm + 400028: char_ethan_LeftHand + 400030: char_ethan_LeftHandIndex1 + 400032: char_ethan_LeftHandIndex2 + 400034: char_ethan_LeftHandIndex3 + 400036: char_ethan_LeftHandIndex4 + 400038: char_ethan_LeftHandMiddle1 + 400040: char_ethan_LeftHandMiddle2 + 400042: char_ethan_LeftHandMiddle3 + 400044: char_ethan_LeftHandMiddle4 + 400046: char_ethan_LeftHandPinky1 + 400048: char_ethan_LeftHandPinky2 + 400050: char_ethan_LeftHandPinky3 + 400052: char_ethan_LeftHandPinky4 + 400054: char_ethan_LeftHandRing1 + 400056: char_ethan_LeftHandRing2 + 400058: char_ethan_LeftHandRing3 + 400060: char_ethan_LeftHandRing4 + 400062: char_ethan_LeftHandThumb1 + 400064: char_ethan_LeftHandThumb2 + 400066: char_ethan_LeftHandThumb3 + 400068: char_ethan_LeftHandThumb4 + 400070: char_ethan_LeftLeg + 400072: char_ethan_LeftLowerLip + 400074: char_ethan_LeftShoulder + 400076: char_ethan_LeftToe1 + 400078: char_ethan_LeftToe2 + 400080: char_ethan_LeftUpLeg + 400082: char_ethan_LeftUpperLip + 400084: char_ethan_LowerLip + 400086: char_ethan_Neck + 400088: char_ethan_RightArm + 400090: char_ethan_RightBlink + 400092: char_ethan_RightBrow + 400094: char_ethan_RightCorner + 400096: char_ethan_RightEye + 400098: char_ethan_RightFoot + 400100: char_ethan_RightForeArm + 400102: char_ethan_RightHand + 400104: char_ethan_RightHandIndex1 + 400106: char_ethan_RightHandIndex2 + 400108: char_ethan_RightHandIndex3 + 400110: char_ethan_RightHandIndex4 + 400112: char_ethan_RightHandMiddle1 + 400114: char_ethan_RightHandMiddle2 + 400116: char_ethan_RightHandMiddle3 + 400118: char_ethan_RightHandMiddle4 + 400120: char_ethan_RightHandPinky1 + 400122: char_ethan_RightHandPinky2 + 400124: char_ethan_RightHandPinky3 + 400126: char_ethan_RightHandPinky4 + 400128: char_ethan_RightHandRing1 + 400130: char_ethan_RightHandRing2 + 400132: char_ethan_RightHandRing3 + 400134: char_ethan_RightHandRing4 + 400136: char_ethan_RightHandThumb1 + 400138: char_ethan_RightHandThumb2 + 400140: char_ethan_RightHandThumb3 + 400142: char_ethan_RightHandThumb4 + 400144: char_ethan_RightLeg + 400146: char_ethan_RightLowerLip + 400148: char_ethan_RightShoulder + 400150: char_ethan_RightToe1 + 400152: char_ethan_RightToe2 + 400154: char_ethan_RightUpLeg + 400156: char_ethan_RightUpperLip + 400158: char_ethan_skeleton + 400160: char_ethan_Spine + 400162: char_ethan_Spine1 + 400164: char_ethan_Spine2 + 400166: char_ethan_UpperLip + 400168: //RootNode + 400170: EthanBody + 400172: EthanGlasses + 400174: EthanHead + 400176: EthanHead1 + 400178: EthanHips + 400180: EthanJaw + 400182: EthanLeftArm + 400184: EthanLeftBlink + 400186: EthanLeftBrow + 400188: EthanLeftCorner + 400190: EthanLeftEye + 400192: EthanLeftFoot + 400194: EthanLeftForeArm + 400196: EthanLeftHand + 400198: EthanLeftHandIndex1 + 400200: EthanLeftHandIndex2 + 400202: EthanLeftHandIndex3 + 400204: EthanLeftHandIndex4 + 400206: EthanLeftHandMiddle1 + 400208: EthanLeftHandMiddle2 + 400210: EthanLeftHandMiddle3 + 400212: EthanLeftHandMiddle4 + 400214: EthanLeftHandPinky1 + 400216: EthanLeftHandPinky2 + 400218: EthanLeftHandPinky3 + 400220: EthanLeftHandPinky4 + 400222: EthanLeftHandRing1 + 400224: EthanLeftHandRing2 + 400226: EthanLeftHandRing3 + 400228: EthanLeftHandRing4 + 400230: EthanLeftHandThumb1 + 400232: EthanLeftHandThumb2 + 400234: EthanLeftHandThumb3 + 400236: EthanLeftHandThumb4 + 400238: EthanLeftLeg + 400240: EthanLeftLowerLip + 400242: EthanLeftShoulder + 400244: EthanLeftToe1 + 400246: EthanLeftToe2 + 400248: EthanLeftUpLeg + 400250: EthanLeftUpperLip + 400252: EthanLowerLip + 400254: EthanNeck + 400256: EthanRightArm + 400258: EthanRightBlink + 400260: EthanRightBrow + 400262: EthanRightCorner + 400264: EthanRightEye + 400266: EthanRightFoot + 400268: EthanRightForeArm + 400270: EthanRightHand + 400272: EthanRightHandIndex1 + 400274: EthanRightHandIndex2 + 400276: EthanRightHandIndex3 + 400278: EthanRightHandIndex4 + 400280: EthanRightHandMiddle1 + 400282: EthanRightHandMiddle2 + 400284: EthanRightHandMiddle3 + 400286: EthanRightHandMiddle4 + 400288: EthanRightHandPinky1 + 400290: EthanRightHandPinky2 + 400292: EthanRightHandPinky3 + 400294: EthanRightHandPinky4 + 400296: EthanRightHandRing1 + 400298: EthanRightHandRing2 + 400300: EthanRightHandRing3 + 400302: EthanRightHandRing4 + 400304: EthanRightHandThumb1 + 400306: EthanRightHandThumb2 + 400308: EthanRightHandThumb3 + 400310: EthanRightHandThumb4 + 400312: EthanRightLeg + 400314: EthanRightLowerLip + 400316: EthanRightShoulder + 400318: EthanRightToe1 + 400320: EthanRightToe2 + 400322: EthanRightUpLeg + 400324: EthanRightUpperLip + 400326: EthanSkeleton + 400328: EthanSpine + 400330: EthanSpine1 + 400332: EthanSpine2 + 400334: EthanUpperLip + 400336: EthanBody1 + 400338: EthanSkeleton1 + 4300000: char_ethan_glasses + 4300002: char_ethan_body + 4300004: EthanGlasses + 4300006: EthanBody + 4300008: EthanBody1 + 7400000: Take 001 + 9500000: //RootNode + 13700000: char_ethan_body + 13700002: char_ethan_glasses + 13700004: EthanBody + 13700006: EthanGlasses + 13700008: EthanBody1 + materials: + importMaterials: 1 + materialName: 1 + materialSearch: 2 + animations: + legacyGenerateAnimations: 4 + bakeSimulation: 0 + resampleCurves: 1 + optimizeGameObjects: 0 + motionNodeName: + animationImportErrors: + animationImportWarnings: + animationRetargetingWarnings: + animationDoRetargetingWarnings: 0 + animationCompression: 3 + animationRotationError: 0.5 + animationPositionError: 0.5 + animationScaleError: 0.5 + animationWrapMode: 0 + extraExposedTransformPaths: [] + clipAnimations: [] + isReadable: 1 + meshes: + lODScreenPercentages: [] + globalScale: 0.01 + meshCompression: 0 + addColliders: 0 + importBlendShapes: 1 + swapUVChannels: 0 + generateSecondaryUV: 0 + useFileUnits: 0 + optimizeMeshForGPU: 1 + keepQuads: 0 + weldVertices: 1 + secondaryUVAngleDistortion: 8 + secondaryUVAreaDistortion: 15.000001 + secondaryUVHardAngle: 88 + secondaryUVPackMargin: 4 + useFileScale: 0 + tangentSpace: + normalSmoothAngle: 60 + normalImportMode: 0 + tangentImportMode: 4 + importAnimation: 1 + copyAvatar: 0 + humanDescription: + serializedVersion: 2 + human: + - boneName: EthanHips + humanName: Hips + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightUpLeg + humanName: RightUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightLeg + humanName: RightLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightFoot + humanName: RightFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightToe1 + humanName: RightToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanSpine1 + humanName: Spine + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanSpine2 + humanName: Chest + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightShoulder + humanName: RightShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightArm + humanName: RightUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightForeArm + humanName: RightLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHand + humanName: RightHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanHead + humanName: Head + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanJaw + humanName: Jaw + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightEye + humanName: RightEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftEye + humanName: LeftEye + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftShoulder + humanName: LeftShoulder + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftArm + humanName: LeftUpperArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftForeArm + humanName: LeftLowerArm + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHand + humanName: LeftHand + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftUpLeg + humanName: LeftUpperLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftLeg + humanName: LeftLowerLeg + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftFoot + humanName: LeftFoot + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftToe1 + humanName: LeftToes + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandThumb1 + humanName: Left Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandThumb2 + humanName: Left Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandThumb3 + humanName: Left Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandIndex1 + humanName: Left Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandIndex2 + humanName: Left Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandIndex3 + humanName: Left Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandMiddle1 + humanName: Left Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandMiddle2 + humanName: Left Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandMiddle3 + humanName: Left Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandRing1 + humanName: Left Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandRing2 + humanName: Left Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandRing3 + humanName: Left Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandPinky1 + humanName: Left Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandPinky2 + humanName: Left Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanLeftHandPinky3 + humanName: Left Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandThumb1 + humanName: Right Thumb Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandThumb2 + humanName: Right Thumb Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandThumb3 + humanName: Right Thumb Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandIndex1 + humanName: Right Index Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandIndex2 + humanName: Right Index Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandIndex3 + humanName: Right Index Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandMiddle1 + humanName: Right Middle Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandMiddle2 + humanName: Right Middle Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandMiddle3 + humanName: Right Middle Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandRing1 + humanName: Right Ring Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandRing2 + humanName: Right Ring Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandRing3 + humanName: Right Ring Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandPinky1 + humanName: Right Little Proximal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandPinky2 + humanName: Right Little Intermediate + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + - boneName: EthanRightHandPinky3 + humanName: Right Little Distal + limit: + min: {x: 0, y: 0, z: 0} + max: {x: 0, y: 0, z: 0} + value: {x: 0, y: 0, z: 0} + length: 0 + modified: 0 + skeleton: + - name: Ethan(Clone) + parentName: + position: {x: 0, y: 0, z: 0} + rotation: {x: 0, y: 0, z: 0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanBody + parentName: Ethan(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanGlasses + parentName: Ethan(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanSkeleton + parentName: Ethan(Clone) + position: {x: -0, y: 0, z: 0} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanHips + parentName: EthanSkeleton + position: {x: 0.00000042162256, y: 0.7787106, z: -0.033025585} + rotation: {x: -0.49999934, y: 0.49999934, z: -0.50000066, w: 0.50000066} + scale: {x: 1, y: 1, z: 1} + - name: EthanSpine + parentName: EthanHips + position: {x: -0.044983033, y: 0.00011812973, z: -0.000000026061407} + rotation: {x: -0.0000020492112, y: 0.0000006409474, z: 0.043222737, w: 0.99906546} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftUpLeg + parentName: EthanSpine + position: {x: 0.044804916, y: -0.00400244, z: -0.07436281} + rotation: {x: 0.009854246, y: 0.9996559, z: -0.0031334888, w: 0.024108019} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftLeg + parentName: EthanLeftUpLeg + position: {x: -0.3529785, y: -0.047479518, z: 0.03461981} + rotation: {x: 0, y: 0, z: 0.16876774, w: 0.98565584} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftFoot + parentName: EthanLeftLeg + position: {x: -0.2827789, y: 0.1718791, z: 0.031038838} + rotation: {x: -0.08430487, y: 0.035964992, z: -0.13311164, w: 0.9868539} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftToe1 + parentName: EthanLeftFoot + position: {x: -0.085517354, y: -0.11005712, z: -0.0000006698085} + rotation: {x: 7.3885096e-18, y: -8.589314e-17, z: -0.7071068, w: 0.7071068} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftToe2 + parentName: EthanLeftToe1 + position: {x: 0.08174267, y: -0.000000009601407, z: -0.00000029316797} + rotation: {x: 1, y: -5.6351963e-23, z: 1.110223e-16, w: -0.00000068451953} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightUpLeg + parentName: EthanSpine + position: {x: 0.044804532, y: -0.004002823, z: 0.07436302} + rotation: {x: 0.0098541705, y: 0.9996559, z: 0.0031362663, w: -0.024108129} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightLeg + parentName: EthanRightUpLeg + position: {x: -0.3529783, y: -0.04747951, z: -0.034621846} + rotation: {x: 0, y: 0, z: 0.16876684, w: 0.985656} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightFoot + parentName: EthanRightLeg + position: {x: -0.282779, y: 0.17187855, z: -0.031040668} + rotation: {x: 0.08430424, y: -0.03596484, z: -0.13311061, w: 0.9868541} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightToe1 + parentName: EthanRightFoot + position: {x: -0.08551728, y: -0.11005718, z: 0.000000062032285} + rotation: {x: -1.3899192e-17, y: 3.352535e-17, z: -0.7071068, w: 0.7071068} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightToe2 + parentName: EthanRightToe1 + position: {x: 0.08174264, y: 0.000000049485, z: 0.00000019218783} + rotation: {x: -1.6724651e-16, y: 4.9321447e-33, z: -2.949027e-17, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanSpine1 + parentName: EthanSpine + position: {x: -0.14667831, y: 0.025727088, z: -0.0000003282363} + rotation: {x: -1.0587912e-22, y: -7.34684e-40, z: 6.938894e-18, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanSpine2 + parentName: EthanSpine1 + position: {x: -0.12695539, y: 0.022281736, z: -0.0000002830808} + rotation: {x: -1.0587912e-22, y: -7.34684e-40, z: 6.938894e-18, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanNeck + parentName: EthanSpine2 + position: {x: -0.12697862, y: 0.02224573, z: -0.00000028315998} + rotation: {x: -7.318979e-17, y: 1.4170987e-17, z: -0.13052638, w: 0.9914448} + scale: {x: 1, y: 1, z: 1} + - name: EthanHead + parentName: EthanNeck + position: {x: -0.090649985, y: -0.041122116, z: 0.000000058975164} + rotation: {x: 1.3487235e-18, y: -1.7102821e-17, z: 0.087552026, w: 0.99616} + scale: {x: 1, y: 1, z: 1} + - name: EthanHead1 + parentName: EthanHead + position: {x: -0.17475267, y: 0.00000045072835, z: 0.00000009431633} + rotation: {x: 1.0587912e-22, y: 4.646893e-23, z: -2.7755576e-17, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftCorner + parentName: EthanHead1 + position: {x: 0.14939941, y: -0.06769698, z: -0.024466591} + rotation: {x: -0.5, y: 0.5, z: 0.5000007, w: -0.49999928} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftUpperLip + parentName: EthanHead1 + position: {x: 0.14274777, y: -0.075114705, z: -0.014378637} + rotation: {x: -0.5, y: 0.5, z: 0.5000007, w: -0.49999928} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightCorner + parentName: EthanHead1 + position: {x: 0.14939931, y: -0.06769704, z: 0.02431402} + rotation: {x: -0.5, y: 0.5, z: 0.5000007, w: -0.49999928} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightUpperLip + parentName: EthanHead1 + position: {x: 0.14274772, y: -0.07511473, z: 0.014226249} + rotation: {x: -0.5, y: 0.5, z: 0.5000007, w: -0.49999928} + scale: {x: 1, y: 1, z: 1} + - name: EthanUpperLip + parentName: EthanHead1 + position: {x: 0.14274773, y: -0.087347545, z: -0.00007465846} + rotation: {x: -0.5, y: 0.5, z: 0.5000007, w: -0.49999928} + scale: {x: 1, y: 1, z: 1} + - name: EthanJaw + parentName: EthanHead + position: {x: -0.03240739, y: -0.029785074, z: -0.00000007152633} + rotation: {x: -0.49673736, y: 0.5032417, z: 0.5032421, w: -0.49673653} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftLowerLip + parentName: EthanJaw + position: {x: 0.044976283, y: -0.009381128, z: -0.014150948} + rotation: {x: 5.54211e-23, y: 0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanLowerLip + parentName: EthanJaw + position: {x: 0.057204966, y: 0.0049228696, z: -0.014469165} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightLowerLip + parentName: EthanJaw + position: {x: 0.044976283, y: 0.019223755, z: -0.014150911} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftBlink + parentName: EthanHead + position: {x: -0.08582658, y: -0.07248985, z: -0.023909489} + rotation: {x: -0.43938157, y: 0.5540251, z: 0.55402577, w: -0.4393808} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftBrow + parentName: EthanHead + position: {x: -0.09988994, y: -0.08062434, z: -0.028973255} + rotation: {x: -0.5, y: 0.5, z: 0.5000007, w: -0.49999928} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftEye + parentName: EthanHead + position: {x: -0.0817658, y: -0.058895037, z: -0.027851813} + rotation: {x: -0.5, y: 0.5, z: 0.5000007, w: -0.49999928} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightBlink + parentName: EthanHead + position: {x: -0.08582671, y: -0.07248995, z: 0.033750787} + rotation: {x: -0.44628233, y: 0.55759704, z: 0.54723495, w: -0.43640757} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightBrow + parentName: EthanHead + position: {x: -0.09989007, y: -0.08062444, z: 0.02868702} + rotation: {x: -0.5, y: 0.5, z: 0.5000007, w: -0.49999928} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightEye + parentName: EthanHead + position: {x: -0.0817396, y: -0.05880309, z: 0.027845075} + rotation: {x: -0.5, y: 0.5, z: 0.5000007, w: -0.49999928} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftShoulder + parentName: EthanNeck + position: {x: 0.00002230769, y: -0.00006137982, z: -0.026027031} + rotation: {x: -0.48608947, y: -0.0722202, z: 0.8640734, w: -0.10898846} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftArm + parentName: EthanLeftShoulder + position: {x: 0.08180639, y: 0.009300345, z: -0.09634663} + rotation: {x: 0.06292434, y: -0.29547754, z: -0.011793284, w: 0.95320225} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftForeArm + parentName: EthanLeftArm + position: {x: 0.08794441, y: -0.014121806, z: -0.22941957} + rotation: {x: -0.18687433, y: 0.0007973312, z: 0.14583053, w: 0.97149926} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHand + parentName: EthanLeftForeArm + position: {x: 0.070799686, y: 0.035503525, z: -0.14085448} + rotation: {x: -0.70413613, y: -0.061654028, z: -0.061605077, w: 0.7046956} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandIndex1 + parentName: EthanLeftHand + position: {x: 0.018482484, y: 0.08044448, z: 0.051040206} + rotation: {x: 0.0015112518, y: -0.043594275, z: -0.043560736, w: 0.9980981} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandIndex2 + parentName: EthanLeftHandIndex1 + position: {x: 0.00022275507, y: 0.025879132, z: 0.010385311} + rotation: {x: -0.052662343, y: 0.035397545, z: -0.2640296, w: 0.9624251} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandIndex3 + parentName: EthanLeftHandIndex2 + position: {x: -0.012793984, y: 0.016905012, z: 0.011081521} + rotation: {x: -0.02921515, y: 0.08614237, z: -0.2737419, w: 0.9574922} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandIndex4 + parentName: EthanLeftHandIndex3 + position: {x: -0.020055601, y: 0.0045873905, z: 0.007730915} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandMiddle1 + parentName: EthanLeftHand + position: {x: 0.013394796, y: 0.084405266, z: 0.03165157} + rotation: {x: -0.044011682, y: 2.8034074e-17, z: -5.7106006e-18, w: 0.999031} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandMiddle2 + parentName: EthanLeftHandMiddle1 + position: {x: 0.0037795054, y: 0.030145722, z: 0.0116361305} + rotation: {x: -0.091909915, y: 0.05467633, z: -0.42002133, w: 0.90119106} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandMiddle3 + parentName: EthanLeftHandMiddle2 + position: {x: -0.017910194, y: 0.014384004, z: 0.013012275} + rotation: {x: -0.040044915, y: 0.008001845, z: -0.18298166, w: 0.9822679} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandMiddle4 + parentName: EthanLeftHandMiddle3 + position: {x: -0.020049915, y: 0.0035380095, z: 0.012281134} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandPinky1 + parentName: EthanLeftHand + position: {x: -0.0067506824, y: 0.09838339, z: -0.0051224125} + rotation: {x: -0.15040894, y: 0.08822873, z: -0.33158392, w: 0.92717046} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandPinky2 + parentName: EthanLeftHandPinky1 + position: {x: -0.010750259, y: 0.009622569, z: 0.009467701} + rotation: {x: -0.044671368, y: 0.009720898, z: -0.17979467, w: 0.9826413} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandPinky3 + parentName: EthanLeftHandPinky2 + position: {x: -0.0155973025, y: 0.0034428125, z: 0.0112945065} + rotation: {x: -0.045708735, y: -0.0008739185, z: -0.17979562, w: 0.98264116} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandPinky4 + parentName: EthanLeftHandPinky3 + position: {x: -0.009463298, y: -0.002946482, z: 0.006961719} + rotation: {x: 8.326673e-17, y: 1.3877788e-17, z: -6.938894e-18, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandRing1 + parentName: EthanLeftHand + position: {x: 0.011634815, y: 0.097086444, z: 0.00849549} + rotation: {x: -0.04750495, y: -0.02680468, z: -0.21266928, w: 0.9756006} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandRing2 + parentName: EthanLeftHandRing1 + position: {x: -0.009746879, y: 0.022168977, z: 0.013826583} + rotation: {x: -0.06670461, y: 0.026029166, z: -0.25883004, w: 0.9632653} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandRing3 + parentName: EthanLeftHandRing2 + position: {x: -0.015402557, y: 0.007800675, z: 0.011749413} + rotation: {x: -0.01883299, y: 0.002628695, z: -0.09988077, w: 0.9948177} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandRing4 + parentName: EthanLeftHandRing3 + position: {x: -0.01707594, y: 0.0025099975, z: 0.012105394} + rotation: {x: 0, y: -0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandThumb1 + parentName: EthanLeftHand + position: {x: -0.004633863, y: 0.028035661, z: 0.048953336} + rotation: {x: 0.66034335, y: -0.2809301, z: -0.23108189, w: 0.6569825} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandThumb2 + parentName: EthanLeftHandThumb1 + position: {x: -0.0031383773, y: 0.025515735, z: -0.014984593} + rotation: {x: 0.042991735, y: -0.025952656, z: -0.17635393, w: 0.98304504} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandThumb3 + parentName: EthanLeftHandThumb2 + position: {x: -0.010219031, y: 0.014567392, z: -0.012677365} + rotation: {x: 0.04783477, y: -0.015307045, z: -0.17635551, w: 0.9830444} + scale: {x: 1, y: 1, z: 1} + - name: EthanLeftHandThumb4 + parentName: EthanLeftHandThumb3 + position: {x: -0.016609639, y: 0.007850524, z: -0.014726918} + rotation: {x: 2.220446e-16, y: 0, z: -0, w: 1} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightShoulder + parentName: EthanNeck + position: {x: 0.000022271464, y: -0.00006150465, z: 0.026027026} + rotation: {x: 0.48609108, y: 0.07221761, z: 0.86407256, w: -0.10898973} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightArm + parentName: EthanRightShoulder + position: {x: 0.081806876, y: 0.009300272, z: 0.096346125} + rotation: {x: -0.06292409, y: 0.2954787, z: -0.011792956, w: 0.9532019} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightForeArm + parentName: EthanRightArm + position: {x: 0.087945335, y: -0.014121898, z: 0.22941919} + rotation: {x: 0.1868743, y: -0.00079789746, z: 0.1458294, w: 0.9714995} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHand + parentName: EthanRightForeArm + position: {x: 0.07080024, y: 0.03550319, z: 0.14085418} + rotation: {x: 0.70413506, y: 0.061653953, z: -0.061604813, w: 0.7046967} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandIndex1 + parentName: EthanRightHand + position: {x: 0.018482815, y: 0.08044467, z: -0.05103978} + rotation: {x: -0.0015103403, y: 0.04359434, z: -0.04356065, w: 0.9980981} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandIndex2 + parentName: EthanRightHandIndex1 + position: {x: 0.0002228482, y: 0.025879227, z: -0.0103851855} + rotation: {x: 0.05266336, y: -0.035397556, z: -0.2640311, w: 0.9624247} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandIndex3 + parentName: EthanRightHandIndex2 + position: {x: -0.012793941, y: 0.01690497, z: -0.01108144} + rotation: {x: 0.029214451, y: -0.08614219, z: -0.27374247, w: 0.9574922} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandIndex4 + parentName: EthanRightHandIndex3 + position: {x: -0.020055542, y: 0.0045875087, z: -0.007730851} + rotation: {x: 0.48288566, y: 0, z: -0, w: 0.8756834} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandMiddle1 + parentName: EthanRightHand + position: {x: 0.013395289, y: 0.08440544, z: -0.031651095} + rotation: {x: 0.044012643, y: 6.003835e-17, z: 1.01539365e-16, w: 0.999031} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandMiddle2 + parentName: EthanRightHandMiddle1 + position: {x: 0.0037796986, y: 0.030145705, z: -0.011636003} + rotation: {x: 0.094235055, y: -0.05927117, z: -0.41746008, w: 0.9018502} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandMiddle3 + parentName: EthanRightHandMiddle2 + position: {x: -0.017910058, y: 0.01438411, z: -0.013012125} + rotation: {x: 0.040047344, y: -0.008001346, z: -0.18298474, w: 0.9822672} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandMiddle4 + parentName: EthanRightHandMiddle3 + position: {x: -0.020049982, y: 0.003538114, z: -0.012281116} + rotation: {x: 0.37079856, y: 0, z: -0, w: 0.9287133} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandPinky1 + parentName: EthanRightHand + position: {x: -0.006750106, y: 0.09838347, z: 0.005122984} + rotation: {x: 0.14634132, y: -0.0853054, z: -0.3388892, w: 0.92545193} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandPinky2 + parentName: EthanRightHandPinky1 + position: {x: -0.010876534, y: 0.00954607, z: -0.009400739} + rotation: {x: 0.035175707, y: -0.014915071, z: -0.15348981, w: 0.98741126} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandPinky3 + parentName: EthanRightHandPinky2 + position: {x: -0.015650306, y: 0.004325165, z: -0.010911368} + rotation: {x: 0.04428908, y: -0.00024435105, z: -0.18078858, w: 0.9825242} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandPinky4 + parentName: EthanRightHandPinky3 + position: {x: -0.009746457, y: -0.002438951, z: -0.006764462} + rotation: {x: 0.1938353, y: 4.4878757e-17, z: 1.2351859e-17, w: 0.9810341} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandRing1 + parentName: EthanRightHand + position: {x: 0.011635365, y: 0.09708646, z: -0.008494926} + rotation: {x: 0.06069251, y: 0.019897, z: -0.24453726, w: 0.96753407} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandRing2 + parentName: EthanRightHandRing1 + position: {x: -0.011261935, y: 0.021090085, z: -0.014353217} + rotation: {x: 0.06872708, y: -0.023836246, z: -0.2580223, w: 0.9633966} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandRing3 + parentName: EthanRightHandRing2 + position: {x: -0.015814971, y: 0.0064337812, z: -0.012026324} + rotation: {x: 0.019224158, y: -0.0019391933, z: -0.09966884, w: 0.99483305} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandRing4 + parentName: EthanRightHandRing3 + position: {x: -0.017074374, y: 0.0010487483, z: -0.012320689} + rotation: {x: 0.4587139, y: 0, z: -0, w: 0.888584} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandThumb1 + parentName: EthanRightHand + position: {x: -0.0046337163, y: 0.028035993, z: -0.04895318} + rotation: {x: -0.660343, y: 0.28093126, z: -0.23108025, w: 0.656983} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandThumb2 + parentName: EthanRightHandThumb1 + position: {x: -0.0031383634, y: 0.025515651, z: 0.014984788} + rotation: {x: -0.04299499, y: 0.025953224, z: -0.17635447, w: 0.9830448} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandThumb3 + parentName: EthanRightHandThumb2 + position: {x: -0.010218882, y: 0.014567167, z: 0.012677433} + rotation: {x: -0.04783391, y: 0.015310023, z: -0.17635584, w: 0.9830443} + scale: {x: 1, y: 1, z: 1} + - name: EthanRightHandThumb4 + parentName: EthanRightHandThumb3 + position: {x: -0.016609553, y: 0.007850429, z: 0.0147271305} + rotation: {x: -0.8654032, y: 0, z: 0, w: 0.5010762} + scale: {x: 1, y: 1, z: 1} + armTwist: 0.5 + foreArmTwist: 0.5 + upperLegTwist: 0.5 + legTwist: 0.5 + armStretch: 0.05 + legStretch: 0.05 + feetSpacing: 0 + rootMotionBoneName: + rootMotionBoneRotation: {x: 0, y: 0, z: 0, w: 1} + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 0 + lastHumanDescriptionAvatarSource: {instanceID: 0} + animationType: 3 + humanoidOversampling: 1 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures.meta new file mode 100644 index 0000000..0f2ff54 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures.meta @@ -0,0 +1,6 @@ +fileFormatVersion: 2 +guid: 0de3730b71e479c47995d4a98395073e +folderAsset: yes +DefaultImporter: + userData: + assetBundleName: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanNormals.png b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanNormals.png new file mode 100644 index 0000000..9d28f04 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanNormals.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff3ae9e222c093f84b48aff4a030867ee472428ca361f8af265801a35239b09 +size 9721683 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanNormals.png.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanNormals.png.meta new file mode 100644 index 0000000..86d43c9 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanNormals.png.meta @@ -0,0 +1,52 @@ +fileFormatVersion: 2 +guid: 3b5b7be0f2332c24f89a2af018daa62d +TextureImporter: + fileIDToRecycleName: {} + serializedVersion: 2 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + linearTexture: 1 + correctGamma: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 1 + heightScale: .25 + normalMapFilter: 0 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 0 + cubemapConvolution: 0 + cubemapConvolutionSteps: 8 + cubemapConvolutionExponent: 1.5 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 4096 + 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: diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanOcclusion.png b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanOcclusion.png new file mode 100644 index 0000000..cb86b26 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanOcclusion.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:322bbead6254173d15e88c02198a053f21c58428d185f0baa5bf43b0166319ad +size 4850787 diff --git a/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanOcclusion.png.meta b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanOcclusion.png.meta new file mode 100644 index 0000000..49257e2 --- /dev/null +++ b/Assets/Standard Assets/Characters/ThirdPersonCharacter/Textures/EthanOcclusion.png.meta @@ -0,0 +1,52 @@ +fileFormatVersion: 2 +guid: 4e2f32e9a1fefc24092337ae061f3dbc +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: 4096 + textureSettings: + filterMode: 2 + 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: 0 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: + assetBundleName: diff --git a/Assets/Stylize Terrain Texture.meta b/Assets/Stylize Terrain Texture.meta new file mode 100644 index 0000000..beaf0cd --- /dev/null +++ b/Assets/Stylize Terrain Texture.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 03ff84c339b7c076bbb4ed92604f7a5f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Stylize Terrain Texture/Materials.meta b/Assets/Stylize Terrain Texture/Materials.meta new file mode 100644 index 0000000..1091979 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Materials.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 855350d72edd5b546aba24877b32789a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Stylize Terrain Texture/Materials/Stylize Terrain Diffuse.mat b/Assets/Stylize Terrain Texture/Materials/Stylize Terrain Diffuse.mat new file mode 100644 index 0000000..1031eb9 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Materials/Stylize Terrain Diffuse.mat @@ -0,0 +1,83 @@ +%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: Stylize Terrain Diffuse + m_Shader: {fileID: 10703, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _NORMALMAP _PARALLAXMAP _SPECGLOSSMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 2800000, guid: b272fa9f67bc2264a8dad2ab221b1bd0, type: 3} + 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: bd7d0d213a99c4b45ab6bc5789ca5f6e, 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: 2800000, guid: b8b0891ae6553db4ca9e6205fa25ae94, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 2800000, guid: e72c12bf32534c0498c954c844a7abb6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 2800000, guid: 7bd4dda1485f9fe4abc4f31f641596e4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 0.183 + - _Glossiness: 1 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.0485 + - _Shininess: 0.71 + - _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} + - _SpecColor: {r: 0.103773594, g: 0.103773594, b: 0.103773594, a: 1} diff --git a/Assets/Stylize Terrain Texture/Materials/Stylize Terrain Diffuse.mat.meta b/Assets/Stylize Terrain Texture/Materials/Stylize Terrain Diffuse.mat.meta new file mode 100644 index 0000000..1d649c9 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Materials/Stylize Terrain Diffuse.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c7d0747bd7053804da8250ca0ea203d4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Stylize Terrain Texture/Materials/Stylize Terrain.mat b/Assets/Stylize Terrain Texture/Materials/Stylize Terrain.mat new file mode 100644 index 0000000..539e149 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Materials/Stylize Terrain.mat @@ -0,0 +1,83 @@ +%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: Stylize Terrain + m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: _NORMALMAP _PARALLAXMAP _SPECGLOSSMAP + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 5d1a91da624cbe3419894ef66da10da7, type: 3} + 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: bd7d0d213a99c4b45ab6bc5789ca5f6e, 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: 2800000, guid: 76400e21d2b92c24ebe4a922cb01a517, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 2800000, guid: 8a227c50dab076244a3682b6594cefd8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 2800000, guid: bd7d0d213a99c4b45ab6bc5789ca5f6e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 0.236 + - _Glossiness: 1 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.0485 + - _Shininess: 0.71 + - _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} + - _SpecColor: {r: 0.103773594, g: 0.103773594, b: 0.103773594, a: 1} diff --git a/Assets/Stylize Terrain Texture/Materials/Stylize Terrain.mat.meta b/Assets/Stylize Terrain Texture/Materials/Stylize Terrain.mat.meta new file mode 100644 index 0000000..0aad84b --- /dev/null +++ b/Assets/Stylize Terrain Texture/Materials/Stylize Terrain.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7475c0152fb3fbb48a312d226cc846bb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Stylize Terrain Texture/Textures.meta b/Assets/Stylize Terrain Texture/Textures.meta new file mode 100644 index 0000000..fa4ace2 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 70867da6bf5f23744b22677a580e0ad7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Ambient_Occlusion.png b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Ambient_Occlusion.png new file mode 100644 index 0000000..9dff1f6 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Ambient_Occlusion.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86b9ecbecd01a94dab93593767b4c58f98165508d4d08d3519369930f845b5ec +size 1478032 diff --git a/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Ambient_Occlusion.png.meta b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Ambient_Occlusion.png.meta new file mode 100644 index 0000000..dcccb38 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Ambient_Occlusion.png.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 76400e21d2b92c24ebe4a922cb01a517 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Base_Color.png b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Base_Color.png new file mode 100644 index 0000000..8494259 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Base_Color.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab0dc698a4483343d7b9e78453a6894a545ed30af470c4ff72bf453db3200cec +size 5320151 diff --git a/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Base_Color.png.meta b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Base_Color.png.meta new file mode 100644 index 0000000..cb73d6e --- /dev/null +++ b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Base_Color.png.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: bd7d0d213a99c4b45ab6bc5789ca5f6e +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Height.png b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Height.png new file mode 100644 index 0000000..b6d6c16 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Height.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d857066e6d7732ac2804d37691181568d81e9110c9b4608df978853ddc23577 +size 1211978 diff --git a/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Height.png.meta b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Height.png.meta new file mode 100644 index 0000000..4899dc7 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Height.png.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 8a227c50dab076244a3682b6594cefd8 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Normal.png b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Normal.png new file mode 100644 index 0000000..d2c25d7 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3076de39e63629459260d1a02fb6aadb0dc94ed8c60d3d6f5f9ad636bee411d +size 6894960 diff --git a/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Normal.png.meta b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Normal.png.meta new file mode 100644 index 0000000..e88f1de --- /dev/null +++ b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Normal.png.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 5d1a91da624cbe3419894ef66da10da7 +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + 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: 1 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Roughness.png b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Roughness.png new file mode 100644 index 0000000..f853d73 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Roughness.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:388bbc38d839197939d6be8635d4c88676ad7931734cf6fdda9353f6a3f7968b +size 2845574 diff --git a/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Roughness.png.meta b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Roughness.png.meta new file mode 100644 index 0000000..ce68306 --- /dev/null +++ b/Assets/Stylize Terrain Texture/Textures/Vol_19_4_Roughness.png.meta @@ -0,0 +1,88 @@ +fileFormatVersion: 2 +guid: 0c454ba922aedb9419fd6ed6875cb63c +TextureImporter: + fileIDToRecycleName: {} + externalObjects: {} + serializedVersion: 9 + 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 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: -1 + wrapV: -1 + wrapW: -1 + 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 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Tower.prefab b/Assets/Tower.prefab new file mode 100644 index 0000000..ca15675 --- /dev/null +++ b/Assets/Tower.prefab @@ -0,0 +1,15013 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5567995395359841693 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5567995395359841702} + - component: {fileID: 5567995395359841689} + - component: {fileID: 5567995395359841688} + - component: {fileID: 5567995395359841691} + - component: {fileID: 5567995395359841690} + m_Layer: 0 + m_Name: Tower + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 8 + m_IsActive: 1 +--- !u!4 &5567995395359841702 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5567995395359841693} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -12.3, y: 3.14, z: 22.6} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 8280618446719454950} + - {fileID: 5567995396293658440} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &5567995395359841689 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5567995395359841693} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8233d90336aea43098adf6dbabd606a2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MeshFormatVersion: 1 + m_Faces: + - m_Indexes: e7020000e9020000ea020000e7020000e8020000e9020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 6 + - m_Indexes: f1020000ef020000f0020000f1020000f2020000ef020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 6 + - m_Indexes: f3020000f5020000f6020000f3020000f4020000f5020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 6 + - m_Indexes: f5040000f6040000f8040000f6040000f7040000f8040000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: fb040000fc040000f9040000fb040000f9040000fa040000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: fd040000fe0400000005000000050000fe040000ff040000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 040500000105000003050000030500000105000002050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 050500000605000007050000050500000705000008050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 0b0500000c050000090500000b050000090500000a050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 0d0500000e0500000f0500000d0500000f05000010050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 140500001105000012050000140500001205000013050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 150500001605000017050000180500001505000017050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 190500001a0500001b050000190500001b0500001c050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 1d0500001e0500001f0500001d0500001f05000020050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 210500002205000023050000210500002305000024050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 270500002505000026050000270500002805000025050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 290500002a0500002b050000290500002b0500002c050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 2d0500002e0500002f0500002d0500002f05000030050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 310500003205000033050000310500003305000034050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 360500003805000035050000360500003705000038050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 3a0500003c050000390500003a0500003b0500003c050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 3d0500003e0500003f0500003d0500003f05000040050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 410500004205000043050000410500004305000044050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 470500004505000046050000470500004805000045050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 4a0500004c050000490500004a0500004b0500004c050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 4f0500004d0500004e0500004f050000500500004d050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 520500005405000051050000520500005305000054050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 550500005605000057050000550500005705000058050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 590500005a0500005b050000590500005b0500005c050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 5d0500005e0500005f0500005d0500005f05000060050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 610500006205000063050000610500006305000064050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 660500006705000068050000660500006805000065050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 690500006a0500006b050000690500006b0500006c050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 6e0500006f050000700500006e050000700500006d050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 710500007205000073050000710500007305000074050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 750500007605000078050000760500007705000078050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 7c0500007a0500007b0500007c050000790500007a050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 7f050000800500007e050000800500007d0500007e050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 820500008405000081050000820500008305000084050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 870500008505000086050000870500008805000085050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 8a0500008c050000890500008a0500008b0500008c050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 8f0500008d0500008e0500008f050000900500008d050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 920500009405000091050000920500009305000094050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 970500009505000096050000970500009805000095050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 9a0500009c050000990500009a0500009b0500009c050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: 9f0500009d0500009e0500009f050000a00500009d050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: a2050000a4050000a1050000a2050000a3050000a4050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: a5050000a6050000a8050000a6050000a7050000a8050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: ac050000aa050000ab050000ac050000a9050000aa050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: af050000b0050000ae050000b0050000ad050000ae050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: b2050000b4050000b1050000b2050000b3050000b4050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: b6050000b8050000b5050000b6050000b7050000b8050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: ba050000bc050000b9050000ba050000bb050000bc050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: be050000bf050000bd050000bf050000c0050000bd050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: c2050000c3050000c1050000c3050000c4050000c1050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: c7050000c5050000c6050000c7050000c8050000c5050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: ca050000cc050000c9050000ca050000cb050000cc050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: cf050000cd050000ce050000cf050000d0050000cd050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: d2050000d4050000d1050000d2050000d3050000d4050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: d6050000d7050000d8050000d6050000d8050000d5050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: d9050000da050000db050000d9050000db050000dc050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: de050000df050000e0050000de050000e0050000dd050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: e1050000e2050000e3050000e1050000e3050000e4050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: e6050000e7050000e8050000e6050000e8050000e5050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: ea050000eb050000e9050000eb050000ec050000e9050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: f0050000ed050000ee050000f0050000ee050000ef050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: f4050000f1050000f3050000f1050000f2050000f3050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 4 + - m_Indexes: f7050000f8050000f5050000f7050000f5050000f6050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 7 + - m_Indexes: fb050000f9050000fa050000fb050000fc050000f9050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 7 + - m_Indexes: 00060000fd050000ff050000fd050000fe050000ff050000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 8 + - m_Indexes: 030600000406000002060000040600000106000002060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 8 + - m_Indexes: 050600000606000008060000060600000706000008060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 9 + - m_Indexes: 0c060000090600000a0600000b0600000c0600000a060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 9 + - m_Indexes: 0f060000100600000d0600000f0600000d0600000e060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 140600001106000013060000110600001206000013060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 150600001606000018060000160600001706000018060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 340600003106000032060000340600003206000033060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 370600003806000035060000370600003506000036060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 3c060000390600003a0600003c0600003a0600003b060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 18 + - m_Indexes: 3f060000400600003d0600003f0600003d0600003e060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 18 + - m_Indexes: 4b0600004c060000490600004b060000490600004a060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 550600005606000054060000560600005306000054060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 22 + - m_Indexes: 5d0600005e0600005f060000600600005d0600005f060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 25 + - m_Indexes: 640600006106000062060000630600006406000062060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 25 + - m_Indexes: 6d0600006e0600006b0600006d0600006b0600006c060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 27 + - m_Indexes: 710600006f0600007006000071060000720600006f060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 27 + - m_Indexes: 7a0600007706000078060000790600007a06000078060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 29 + - m_Indexes: 7b0600007c0600007d0600007e0600007b0600007d060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 30 + - m_Indexes: 820600007f06000080060000810600008206000080060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 30 + - m_Indexes: 830600008406000085060000860600008306000085060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 31 + - m_Indexes: 8a0600008706000088060000890600008a06000088060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 31 + - m_Indexes: 8d0600008e0600008b0600008d0600008b0600008c060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 32 + - m_Indexes: 90060000910600009206000090060000920600008f060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 32 + - m_Indexes: 930600009406000095060000960600009306000095060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 33 + - m_Indexes: 9a0600009706000098060000990600009a06000098060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 33 + - m_Indexes: 9d0600009e0600009b0600009d0600009b0600009c060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 34 + - m_Indexes: a10600009f060000a0060000a1060000a20600009f060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 34 + - m_Indexes: a5060000a6060000a3060000a5060000a3060000a4060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 35 + - m_Indexes: a9060000a7060000a8060000a9060000aa060000a7060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 35 + - m_Indexes: b6060000b3060000b5060000b3060000b4060000b5060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 40 + - m_Indexes: b9060000ba060000b7060000b9060000b7060000b8060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 40 + - m_Indexes: c4060000c1060000c2060000c3060000c4060000c2060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 43 + - m_Indexes: ca060000c7060000c8060000c9060000ca060000c8060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 44 + - m_Indexes: d0060000cd060000ce060000cf060000d0060000ce060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 45 + - m_Indexes: d6060000d3060000d4060000d5060000d6060000d4060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 46 + - m_Indexes: dc060000d9060000da060000db060000dc060000da060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 47 + - m_Indexes: e2060000df060000e0060000e1060000e2060000e0060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 48 + - m_Indexes: e6060000e3060000e5060000e3060000e4060000e5060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: e9060000ea060000e8060000ea060000e7060000e8060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: f2060000ef060000f0060000f1060000f2060000f0060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: f6060000f4060000f5060000f6060000f3060000f4060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: fa060000f7060000f9060000f7060000f8060000f9060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 52 + - m_Indexes: fd060000fe060000fc060000fe060000fb060000fc060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 52 + - m_Indexes: 02070000ff06000000070000020700000007000001070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 53 + - m_Indexes: 050700000607000003070000050700000307000004070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 53 + - m_Indexes: 0707000008070000090700000a0700000707000009070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 0e0700000b0700000d0700000b0700000c0700000d070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 110700001207000010070000120700000f07000010070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 160700001307000014070000160700001407000015070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 170700001807000019070000180700001a07000019070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 1e0600001f060000200600001d0600001e060000200600001e0600001d06000024060000240600001d0600002306000024060000230600004406000023060000430600004406000044060000430600002f060000440600002f06000030060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 1b0600001c060000190600001a0600001b060000190600001b0600001a06000022060000220600001a0600002106000022060000210600004206000021060000410600004206000042060000410600002d0600002e060000420600002d060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: e3020000e1020000e2020000e3020000e4020000e1020000e6020000e2020000e5020000e6020000e3020000e2020000ec020000e5020000eb020000ec020000e6020000e5020000ee020000eb020000ed020000ee020000ec020000eb020000f8020000ed020000f7020000f8020000ee020000ed020000fa020000f7020000f9020000fa020000f8020000f7020000fc020000f9020000fb020000fc020000fa020000f9020000fe020000fb020000fd020000fe020000fc020000fb020000d2020000fd020000d1020000d2020000fe020000fd020000d4020000d1020000d3020000d4020000d2020000d1020000d6020000d3020000d5020000d6020000d4020000d3020000d8020000d5020000d7020000d8020000d6020000d5020000da020000d7020000d9020000da020000d8020000d7020000dc020000d9020000db020000dc020000da020000d9020000de020000db020000dd020000de020000dc020000db020000e0020000dd020000df020000e0020000de020000dd02000010030000df0200000f03000010030000e0020000df020000120300000f0300001103000012030000100300000f0300001403000011030000130300001403000012030000110300001603000013030000150300001603000014030000130300001803000015030000170300001803000016030000150300001a03000017030000190300001a03000018030000170300001c030000190300001b0300001c0300001a030000190300001e0300001b0300001d0300001e0300001c0300001b030000000300001d030000ff020000000300001e0300001d03000002030000ff020000010300000203000000030000ff0200000403000001030000030300000403000002030000010300000603000003030000050300000603000004030000030300000803000005030000070300000803000006030000050300000a03000007030000090300000a03000008030000070300000c030000090300000b0300000c0300000a030000090300000e0300000b0300000d0300000e0300000c0300000b030000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 6 + - m_Indexes: 4f060000500600004d0600004f0600004d0600004e06000050060000740600007306000050060000730600004d06000074060000ac060000ab06000074060000ab06000073060000ac060000ae060000ad060000ac060000ad060000ab060000ae060000b2060000b1060000ae060000b1060000ad060000b2060000be060000bd060000b2060000bd060000b1060000be060000b0060000af060000be060000af060000bd060000b0060000bc060000bb060000b0060000bb060000af060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 00040000fe030000ff0300000004000001040000fe03000003040000ff030000020400000304000000040000ff0300000504000002040000040400000504000003040000020400000704000004040000060400000704000005040000040400000a040000060400000b0400000a0400000704000006040000080400000a040000090400000a0400000b040000090400000e040000080400000f04000008040000090400000f0400000c0400000f0400000d0400000c0400000e0400000f040000110400000d04000010040000110400000c0400000d0400001304000010040000120400001304000011040000100400001504000012040000140400001504000013040000120400001704000014040000160400001704000015040000140400001904000016040000180400001904000017040000160400001b040000180400001a0400001b04000019040000180400001d0400001a0400001c0400001d0400001b0400001a0400001f0400001c0400001e0400001f0400001d0400001c040000210400001e04000020040000210400001f0400001e0400002304000020040000220400002304000021040000200400002504000022040000240400002504000023040000220400002704000024040000260400002704000025040000240400002904000026040000280400002904000027040000260400002b040000280400002a0400002b04000029040000280400002d0400002a0400002c0400002d0400002b0400002a0400002f0400002c0400002e0400002f0400002d0400002c040000310400002e04000030040000310400002f0400002e0400003304000030040000320400003304000031040000300400003504000032040000340400003504000033040000320400003704000034040000360400003704000035040000340400003904000036040000380400003904000037040000360400003b040000380400003a0400003b04000039040000380400003d0400003a0400003c0400003d0400003b0400003a0400003f0400003c0400003e0400003f0400003d0400003c040000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 2 + - m_Indexes: 2b0600002c0600002a0600002c060000290600002a0600002a06000029060000570600002a0600005706000058060000570600005b06000058060000580600005b0600005c060000690600005c0600005b060000690600006a0600005c060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 66060000680600006506000066060000670600006806000059060000650600005a0600005a060000650600006806000025060000270600002806000025060000260600002706000027060000260600005906000027060000590600005a060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 1f0700002007000021070000200700002207000021070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 230700002407000025070000240700002607000025070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 270700002807000029070000280700002a07000029070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 2b0700002c0700002d0700002c0700002e0700002d070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 2f0700003007000031070000300700003207000031070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 330700003407000035070000340700003607000035070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 370700003807000039070000380700003a07000039070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 3b0700003c0700003d0700003c0700003e0700003d070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 3f0700004007000041070000400700004207000041070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 430700004407000045070000440700004607000045070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 470700004807000049070000480700004a07000049070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 4b0700004c0700004d0700004c0700004e0700004d070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 4f0700005007000051070000500700005207000051070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 530700005407000055070000540700005607000055070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 570700005807000059070000580700005a07000059070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 5b0700005c0700005d0700005c0700005e0700005d070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 5f0700006007000061070000600700006207000061070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 630700006407000065070000640700006607000065070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 670700006807000069070000680700006a07000069070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 6b0700006c0700006d0700006c0700006e0700006d070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 6f0700007007000071070000700700007207000071070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 730700007407000075070000740700007607000075070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 770700007807000079070000780700007a07000079070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 7b0700007c0700007d0700007c0700007e0700007d070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 7f0700008007000081070000800700008207000081070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 830700008407000085070000840700008607000085070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 870700008807000089070000880700008a07000089070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 8b0700008c0700008d0700008c0700008e0700008d070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 8f0700009007000091070000900700009207000091070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 930700009407000095070000940700009607000095070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 970700009807000099070000980700009a07000099070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 9b0700009c0700009d0700009c0700009e0700009d070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 9f070000a0070000a1070000a0070000a2070000a1070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: a3070000a4070000a5070000a4070000a6070000a5070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: a7070000a8070000a9070000a8070000aa070000a9070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: ab070000ac070000ad070000ac070000ae070000ad070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: af070000b0070000b1070000b0070000b2070000b1070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b3070000b4070000b5070000b4070000b6070000b5070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b7070000b8070000b9070000b8070000ba070000b9070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: bb070000bc070000bd070000bc070000be070000bd070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: bf070000c0070000c1070000c0070000c2070000c1070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c3070000c4070000c5070000c4070000c6070000c5070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c7070000c8070000c9070000c8070000ca070000c9070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: cb070000cc070000cd070000cc070000ce070000cd070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: cc040000cd040000cb040000cd040000ce040000cb040000ce040000cd040000d0040000cd040000cf040000d0040000d0040000cf040000d2040000cf040000d1040000d2040000d2040000d1040000d4040000d1040000d3040000d4040000d3040000da040000db040000d4040000d3040000db040000da040000dc040000db040000dc040000dd040000db040000dc040000de040000dd040000de040000df040000dd040000de040000e0040000df040000e0040000e1040000df040000d8040000d9040000de040000d9040000e0040000de040000d7040000d8040000dc040000d8040000de040000dc040000d6040000d7040000da040000d7040000dc040000da040000d6040000d3040000d5040000d6040000da040000d3040000ca040000d5040000d1040000d1040000d5040000d3040000c9040000ca040000cf040000cf040000ca040000d1040000cd040000c8040000c9040000cd040000c9040000cf040000c7040000c8040000cc040000c8040000cd040000cc040000d9040000e2040000e3040000e0040000d9040000e30400001b0700001c0700001d0700001c0700001e0700001d070000e4040000e5040000e6040000e7040000e4040000e60400001b070000e4040000e70400001c0700001b070000e7040000e5040000e8040000e9040000e6040000e5040000e9040000e8040000ea040000eb040000e9040000e8040000eb040000ec040000ed040000ee040000ef040000ec040000ee040000ea040000ec040000ef040000eb040000ea040000ef040000e6040000e9040000f0040000f1040000e6040000f0040000e9040000eb040000f2040000f0040000e9040000f2040000eb040000ef040000f3040000f2040000eb040000f3040000ef040000ee040000f3040000ee040000f4040000f3040000f3040000f4040000c1040000f4040000c0040000c1040000f0040000f2040000bf040000f2040000be040000bf040000f1040000f0040000bd040000f0040000bf040000bd040000f2040000f3040000be040000f3040000c1040000be040000c1040000c0040000c6040000c0040000c5040000c6040000be040000c1040000c4040000c1040000c6040000c4040000bf040000be040000c3040000be040000c4040000c3040000bd040000bf040000c2040000bf040000c3040000c2040000e1040000b2040000b4040000b2040000b3040000b4040000b4040000b3040000b7040000b8040000b4040000b7040000b3040000b9040000ba040000b7040000b3040000ba040000b2040000b5040000b3040000b5040000b9040000b3040000ba040000b9040000bb040000ba040000bb040000bc040000b5040000b6040000bb040000b9040000b5040000bb040000bc040000bb040000bd040000bc040000bd040000c2040000b6040000f1040000bb040000f1040000bd040000bb040000df040000e1040000b4040000ad040000df040000b4040000dd040000df040000ad040000ac040000dd040000ad040000db040000dd040000ac040000ab040000db040000ac040000d4040000db040000ab040000aa040000d4040000ab040000d0040000d2040000a4040000a5040000d0040000a4040000cb040000ce040000a2040000a3040000cb040000a2040000ce040000d0040000a5040000a2040000ce040000a5040000d2040000d4040000aa040000a4040000d2040000aa040000ad040000b4040000b8040000b1040000ad040000b8040000ac040000ad040000b1040000b0040000ac040000b1040000aa040000ab040000ae040000af040000aa040000ae040000ab040000ac040000b0040000ae040000ab040000b0040000a4040000aa040000af040000a9040000a4040000af040000a5040000a4040000a9040000a8040000a5040000a9040000a2040000a5040000a8040000a7040000a2040000a8040000a3040000a2040000a7040000a6040000a3040000a7040000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: d1070000d0070000cf070000d1070000d2070000d0070000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: d3070000d4070000d5070000d7070000d3070000d5070000d5070000d6070000d7070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 10 + - m_Indexes: dc070000d9070000db070000d9070000da070000db070000dc070000d8070000d9070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: e1070000de070000df070000e1070000df070000e0070000de070000e1070000dd070000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 01080000020800000308000001080000030800000408000001080000040800000508000001080000050800000608000001080000060800000708000001080000070800000808000001080000080800000908000001080000090800000a080000010800000a0800000b080000010800000b0800000c080000010800000c0800000d080000010800000d0800000e080000f4070000010800000e0800000e080000f3070000f40700000e0800000f080000f30700000f080000f2070000f30700000f08000010080000f207000010080000f1070000f20700001008000011080000f107000011080000f0070000f10700001108000012080000f007000012080000ef070000f00700001208000013080000ef07000013080000ee070000ef0700001308000014080000ee07000014080000ed070000ee0700001408000015080000ed07000015080000ec070000ed0700001508000016080000ec07000016080000eb070000ec0700001608000017080000eb07000017080000ea070000eb0700001708000018080000ea07000018080000e9070000ea0700001808000019080000e907000019080000e8070000e9070000190800001a080000e80700001a080000e7070000e80700001a0800001b080000e70700001b080000e6070000e70700001b0800001c080000e60700001c080000e5070000e60700001c0800001d080000e50700001d080000e4070000e50700001d0800001e080000e40700001e080000e3070000e40700001e0800001f080000e30700001f080000e2070000e30700001f08000020080000e20700002008000022080000e2070000200800002108000022080000f4070000f507000001080000f5070000f607000001080000f6070000f707000001080000f7070000f807000001080000f8070000f907000001080000f9070000fa07000001080000fa070000fb07000001080000fb070000fc07000001080000fc070000fd07000001080000fd070000fe07000001080000fe070000ff0700000108000001080000ff07000000080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 6 + - m_Indexes: 230800002408000025080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 260800002708000028080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 290800002a0800002b080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 2c0800002d0800002e080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 2f0800003008000031080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 320800003308000034080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 370800003608000035080000370800003808000036080000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 3b0800003a080000390800003b0800003c0800003a080000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 3f0800003e0800003d0800003f080000400800003e080000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 450800004108000042080000420800004408000045080000420800004308000044080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 12 + - m_Indexes: 4b0800004608000047080000470800004a0800004b0800004a0800004708000049080000480800004908000047080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 3 + - m_Indexes: 4f080000500800004e080000500800005108000052080000520800004e08000050080000520800004c0800004d080000520800004d0800004e080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 3 + - m_Indexes: 570800005308000056080000530800005408000056080000550800005608000054080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 54 + - m_Indexes: 5c0800005808000059080000590800005b0800005c080000590800005a0800005b080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 3 + - m_Indexes: 5f0800005e0800005d080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 600800006108000062080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 630800006408000065080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 660800006708000068080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 690800006a0800006b080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 6e0800006d0800006c080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 6f0800007008000071080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 720800007308000074080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 750800007608000077080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 78080000790800007a080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 7d0800007c0800007b0800007d0800007e0800007c080000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 81080000800800007f080000810800008208000080080000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 860800008308000085080000850800008308000084080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 880800008908000087080000890800008a08000087080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 900800008b0800008f0800008c0800008d0800008e0800008e0800008b0800008c0800008e0800008f0800008b080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: b0080000b1080000b2080000b0080000b2080000b3080000b0080000b3080000b4080000b0080000b4080000b5080000b0080000b5080000b6080000b0080000b6080000b7080000b0080000b7080000b8080000b0080000b8080000b9080000b0080000b9080000ba080000b0080000ba080000bb080000b0080000bb080000bc080000b0080000bc080000bd080000b0080000bd080000be080000b0080000be080000bf080000b0080000bf080000c0080000b0080000c0080000c1080000b0080000c1080000c2080000b0080000c2080000c30800009d080000b0080000c3080000c30800009c0800009d080000c3080000c40800009c080000c40800009b0800009c080000c4080000c50800009b080000c50800009a0800009b080000c5080000c60800009a080000c6080000990800009a080000c6080000c708000099080000c70800009808000099080000c7080000c808000098080000c80800009708000098080000c8080000c908000097080000c90800009608000097080000c9080000ca08000096080000ca0800009508000096080000ca080000cb08000095080000cb0800009408000095080000cb080000cc08000094080000cc0800009308000094080000cc080000cd08000093080000cd0800009208000093080000cd080000ce08000092080000ce0800009108000092080000ce080000cf08000091080000cf080000d108000091080000cf080000d0080000d10800009d0800009e080000b00800009e0800009f080000b00800009f080000a0080000b0080000a0080000a1080000b0080000a1080000a2080000b0080000a2080000a3080000b0080000a3080000a4080000b0080000a4080000a5080000b0080000a5080000a6080000b0080000a6080000a7080000b0080000a7080000a8080000b0080000a8080000a9080000b0080000a9080000aa080000b0080000aa080000ab080000b0080000ab080000ac080000b0080000ac080000ad080000b0080000ae080000b0080000ad080000ae080000af080000b0080000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 6 + - m_Indexes: d2080000d3080000d4080000d2080000d4080000d5080000d2080000d5080000d6080000d2080000d6080000d7080000d2080000d7080000d8080000d2080000d8080000d9080000d2080000d9080000da080000d2080000da080000db080000d2080000db080000dc080000d2080000dc080000dd080000d2080000dd080000de08000007090000d2080000de080000de0800000609000007090000de080000df08000006090000df0800000509000006090000df080000e008000005090000e00800000409000005090000e0080000e108000004090000e10800000309000004090000e1080000e208000003090000e20800000209000003090000e2080000e308000002090000e30800000109000002090000e3080000e408000001090000e40800000009000001090000e4080000e508000000090000e5080000ff08000000090000e5080000e6080000ff080000e6080000fe080000ff080000e6080000e7080000fe080000e7080000fd080000fe080000e7080000e8080000fd080000e8080000fc080000fd080000e8080000e9080000fc080000e9080000fb080000fc080000e9080000ea080000fb080000ea080000fa080000fb080000ea080000eb080000fa080000eb080000f9080000fa080000eb080000ec080000f9080000ec080000f8080000f9080000ec080000ed080000f8080000ed080000f7080000f8080000ed080000ee080000f7080000ee080000f6080000f7080000ee080000ef080000f6080000ef080000f5080000f6080000ef080000f0080000f5080000f0080000f4080000f5080000f0080000f1080000f4080000f1080000f3080000f4080000f1080000f2080000f3080000d2080000070900001309000013090000070900000809000013090000080900000909000013090000090900000a090000130900000a0900000b090000130900000b0900000c090000130900000c0900000d090000130900000d0900000e090000130900000e0900000f090000130900000f09000010090000100900001109000013090000120900001309000011090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 6 + - m_Indexes: 170900001809000019090000140900001509000016090000160900001b09000014090000160900001a0900001b09000016090000170900001a0900001a0900001709000019090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 3 + - m_Indexes: 1d090000200900001c090000200900001d0900001e090000200900001e0900001f090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 51 + - m_Indexes: 240900002609000021090000230900002409000021090000210900002209000023090000260900002409000025090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 56 + - m_Indexes: 290900002809000027090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 2a0900002b0900002c090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 2d0900002e0900002f090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 300900003109000032090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 330900003409000035090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 360900003709000038090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 3b0900003a090000390900003b0900003c0900003a090000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 3f0900003e0900003d0900003f090000400900003e090000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 440900004509000043090000450900004109000042090000450900004209000043090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 490900004a09000046090000460900004809000049090000480900004609000047090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 930900004f0900005009000093090000500900005109000093090000510900005209000093090000520900007209000072090000520900005309000072090000530900005409000072090000540900005509000072090000550900005609000072090000560900005709000072090000570900005809000072090000580900005909000072090000590900005a090000720900005a0900005b090000720900005b0900005c090000720900005c0900005d090000720900005d0900005e090000720900005e0900005f090000720900005f09000060090000720900006009000061090000720900006109000062090000720900006209000063090000720900006309000064090000720900006409000065090000710900007209000065090000650900006609000071090000660900006709000071090000670900006809000071090000680900006909000071090000690900006a090000710900006a0900006b090000710900006b0900006c090000710900006c0900006d090000710900006d0900006e090000710900006e0900006f090000710900006f090000700900007109000093090000720900009209000092090000720900009109000091090000720900009009000090090000720900008f0900008f090000720900008e0900008e090000720900008d0900008d090000720900008c0900008c090000720900008b0900008b090000720900008a0900008a090000720900008909000089090000720900008809000088090000720900008709000087090000720900008609000086090000720900008509000085090000720900008409000084090000720900008309000083090000720900008209000082090000720900008109000081090000720900008009000080090000720900007f09000072090000730900007f090000730900007e0900007f090000730900007d0900007e090000730900007c0900007d090000730900007b0900007c090000730900007a0900007b09000073090000790900007a090000730900007809000079090000730900007709000078090000730900007609000077090000730900007509000076090000730900007409000075090000930900004e0900004f090000930900004d0900004e090000930900004c0900004d0900004b0900004c09000093090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 6 + - m_Indexes: 9409000095090000960900009e0900009409000096090000970900009e09000096090000980900009e09000097090000990900009e090000980900009a0900009e090000990900009b0900009e0900009a0900009c0900009e0900009b0900009d0900009e0900009c090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: a1090000a00900009f090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: a2090000a3090000a4090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: a7090000a6090000a5090000a7090000a8090000a6090000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: ab090000aa090000a9090000ab090000ac090000aa090000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b0090000b1090000af090000b1090000ae090000af090000b1090000ad090000ae090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b4090000b2090000b3090000b2090000b4090000b5090000b5090000b6090000b2090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: b9090000ba090000bb090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: c1090000c0090000bf090000c1090000c2090000c0090000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: c5090000c4090000c3090000c5090000c6090000c4090000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: cf090000d2090000d3090000d0090000d1090000cf090000cf090000d1090000d2090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: d5090000d8090000d4090000d5090000d6090000d8090000d8090000d6090000d7090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: de090000dd090000dc090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: e1090000e0090000df090000e1090000e2090000e0090000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: e5090000e4090000e3090000e5090000e6090000e4090000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: ea090000eb090000e7090000ea090000e7090000e9090000e7090000e8090000e9090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: ed090000f0090000ec090000ee090000f0090000ed090000ef090000f0090000ee090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 260a0000270a0000280a0000260a0000280a0000290a0000260a0000290a00002a0a0000260a00002a0a00002b0a0000260a00002b0a00002c0a0000260a00002c0a00002d0a0000260a00002d0a00002e0a0000260a00002e0a00002f0a0000260a00002f0a0000300a0000260a0000300a0000310a00001c0a0000260a0000310a00001c0a0000310a0000320a00001c0a0000320a0000330a00001c0a0000330a0000fb090000fb090000330a0000fa090000fa090000330a0000f9090000f9090000330a0000f8090000f8090000330a0000340a0000f8090000340a0000350a0000f8090000350a0000360a0000f8090000360a0000370a0000f8090000370a0000380a0000f8090000380a0000390a0000f8090000390a00003a0a0000f80900003a0a00003b0a0000f80900003b0a00003c0a0000f80900003c0a00003d0a0000f80900003d0a00003e0a0000f80900003e0a00003f0a0000f80900003f0a0000400a0000f8090000400a0000410a0000410a0000f7090000f8090000410a0000420a0000f7090000420a0000430a0000f7090000430a0000440a0000f7090000440a0000450a0000f7090000450a0000460a0000f7090000460a0000f6090000f70900001c0a0000fb090000fc0900001c0a0000fc0900001b0a00001b0a0000fc0900001a0a00001a0a0000fc090000190a0000190a0000fc090000180a0000180a0000fc090000170a0000170a0000fc090000160a0000160a0000fc090000150a0000150a0000fc090000140a0000140a0000fc090000130a0000130a0000fc090000120a0000120a0000fc090000110a0000110a0000fc090000100a0000100a0000fc0900000f0a00000f0a0000fc0900000e0a00000e0a0000fc0900000d0a00000d0a0000fc0900000c0a00000c0a0000fc0900000b0a00000b0a0000fc0900000a0a00000a0a0000fc090000090a0000090a0000fc090000080a0000080a0000fc090000070a0000070a0000fc090000060a0000060a0000fc090000050a0000050a0000fc090000040a0000fc090000fd090000040a0000fd090000030a0000040a0000fd090000020a0000030a0000fd090000010a0000020a0000fd090000000a0000010a0000fd090000ff090000000a0000fd090000fe090000ff0900001c0a0000250a0000260a00001c0a0000240a0000250a00001c0a0000230a0000240a00001c0a0000220a0000230a00001c0a0000210a0000220a00001c0a0000200a0000210a00001c0a00001f0a0000200a00001d0a00001f0a00001c0a00001f0a00001d0a00001e0a0000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 6 + - m_Indexes: 470a0000480a0000490a0000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 4c0a00004b0a00004a0a0000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 4e0a00004d0a0000550a00004f0a00004e0a0000550a0000500a00004f0a0000550a0000510a0000500a0000550a0000520a0000510a0000550a0000530a0000520a0000550a0000530a0000550a0000540a0000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: f1090000f4090000f5090000f2090000f4090000f1090000f2090000f3090000f40900008a0300008b0300008c0300008a0300008c0300008d030000880300008a0300008d030000880300008d030000890300009003000088030000890300009003000089030000910300008e03000090030000910300008e030000910300008f030000930300008e0300008f030000930300008f03000092030000930300009203000095030000950300009203000094030000950300009403000097030000970300009403000096030000990300009703000096030000990300009603000098030000ac0300009903000098030000ac03000098030000ad030000aa030000ac030000ad030000aa030000ad030000ab030000b0030000aa030000ab030000b0030000ab030000b1030000ae030000b0030000b1030000ae030000b1030000af030000b4030000ae030000af030000b4030000af030000b5030000b2030000b4030000b5030000b2030000b5030000b3030000b8030000b2030000b3030000b8030000b3030000b9030000b6030000b8030000b9030000b6030000b9030000b7030000cc030000b6030000b7030000cc030000b7030000cd030000ca030000cc030000cd030000ca030000cd030000cb030000d0030000ca030000cb030000d0030000cb030000d1030000ce030000d0030000d1030000ce030000d1030000cf030000d4030000ce030000cf030000d4030000cf030000d5030000d2030000d4030000d5030000d2030000d5030000d3030000d8030000d2030000d3030000d8030000d3030000d9030000d6030000d8030000d9030000d6030000d9030000d7030000ec030000d6030000d7030000ec030000d7030000ed030000ea030000ec030000ed030000ea030000ed030000eb030000f0030000ea030000eb030000f0030000eb030000f1030000ee030000f0030000f1030000ee030000f1030000ef030000f4030000ee030000ef030000f4030000ef030000f5030000f2030000f4030000f5030000f2030000f5030000f3030000f1090000f2030000f3030000f1090000f3030000f2090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 1 + - m_Indexes: 7e0300007f03000080030000810300007e0300008003000081030000800300008203000083030000810300008203000083030000820300008403000085030000830300008403000085030000840300008603000087030000850300008603000087030000860300009d0300009c030000870300009d0300009a0300009c0300009d0300009a0300009d0300009b030000a00300009a0300009b030000a00300009b030000a1030000a0030000a10300009f0300009e030000a00300009f0300009e0300009f030000a2030000a30300009e030000a2030000a3030000a2030000a4030000a5030000a3030000a4030000a5030000a4030000a6030000a7030000a5030000a6030000a7030000a6030000a8030000a9030000a7030000a8030000a9030000a8030000ba030000bb030000a9030000ba030000bb030000ba030000bc030000bd030000bb030000bc030000bd030000bc030000be030000bf030000bd030000be030000bf030000be030000c0030000c1030000bf030000c0030000c1030000c0030000c2030000c3030000c1030000c2030000c3030000c2030000c4030000c5030000c3030000c4030000c5030000c4030000c6030000c7030000c5030000c6030000c7030000c6030000c8030000c9030000c7030000c8030000c9030000c8030000da030000db030000c9030000da030000db030000da030000dc030000dd030000db030000dc030000dd030000dc030000de030000df030000dd030000de030000df030000de030000e0030000e1030000df030000e0030000e1030000e0030000e2030000e3030000e1030000e2030000e3030000e2030000e4030000e5030000e3030000e4030000e5030000e4030000e6030000e7030000e5030000e6030000e7030000e6030000e8030000e9030000e7030000e8030000e9030000e8030000f6030000f7030000e9030000f6030000f7030000f6030000f8030000f9030000f7030000f8030000f9030000f8030000fa030000fb030000f9030000fa030000fb030000fa030000fc030000fd030000fb030000fc030000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 1 + - m_Indexes: ca090000cd090000ce090000ca090000cb090000cd090000cd090000cb090000cc09000047030000480300004903000047030000490300004a0300003f03000040030000480300003f030000480300004703000045030000470300004a030000450300004a030000460300003e0300003f030000470300003e03000047030000450300004303000045030000460300004303000046030000440300003d0300003e030000450300003d03000045030000430300004103000043030000440300004103000044030000420300003c0300003d030000430300003c03000043030000410300005003000041030000420300005003000042030000510300003b0300003c030000410300003b03000041030000500300004e03000050030000510300004e030000510300004f0300003a0300003b030000500300003a030000500300004e0300004c0300004e0300004f0300004c0300004f0300004d030000390300003a0300004e030000390300004e0300004c03000037030000390300004c030000370300004c03000038030000380300004c0300004d030000380300004d0300004b03000028030000370300003803000028030000380300002903000029030000380300004b030000290300004b0300002f03000026030000280300002903000026030000290300002703000027030000290300002f030000270300002f0300002e0300002c030000270300002e0300002c0300002e0300002d03000025030000260300002703000025030000270300002c0300002a0300002c0300002d0300002a0300002d0300002b03000024030000250300002c030000240300002c0300002a030000350300002a0300002b030000350300002b0300003603000023030000240300002a030000230300002a030000350300002103000023030000350300002103000035030000220300002203000035030000360300002203000036030000340300003203000022030000340300003203000034030000330300002003000021030000220300002003000022030000320300003003000032030000330300003003000033030000310300001f03000020030000320300001f03000032030000300300007403000030030000310300007403000031030000750300006e0300001f030000300300006e03000030030000740300007203000074030000750300007203000075030000730300006d0300006e030000740300006d03000074030000720300006b0300006d030000720300006b030000720300006c0300006c03000072030000730300006c03000073030000710300006f0300006c030000710300006f03000071030000700300006a0300006b0300006c0300006a0300006c0300006f0300007c0300006f030000700300007c030000700300007d030000690300006a0300006f030000690300006f0300007c0300007a0300007c0300007d0300007a0300007d0300007b03000068030000690300007c030000680300007c0300007a030000780300007a0300007b030000780300007b0300007903000067030000680300007a030000670300007a030000780300007603000078030000790300007603000079030000770300006603000067030000780300006603000078030000760300005e03000076030000770300005e030000770300005f03000057030000660300007603000057030000760300005e0300005c0300005e0300005f0300005c0300005f0300005d03000056030000570300005e030000560300005e0300005c0300005a0300005c0300005d0300005a0300005d0300005b03000055030000560300005c030000550300005c0300005a030000580300005a0300005b030000580300005b0300005903000054030000550300005a030000540300005a03000058030000640300005803000059030000640300005903000065030000530300005403000058030000530300005803000064030000620300006403000065030000620300006503000063030000520300005303000064030000520300006403000062030000cb0900006203000063030000cb0900006303000061030000ca0900005203000062030000ca09000062030000cb090000cc090000cb09000061030000cc0900006103000060030000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 1 + - m_Indexes: 420000003f000000400000004100000042000000400000004100000040000000490000004a00000041000000490000004a000000490000004b0000004c0000004a0000004b0000004c0000004b0000005f000000600000004c0000005f000000600000005f000000610000006200000060000000610000006200000061000000690000006a00000062000000690000006a000000690000006b0000006c0000006a0000006b0000006c0000006b0000007f000000800000006c0000007f000000800000007f000000810000008200000080000000810000008200000081000000890000008a00000082000000890000008a000000890000008b0000008c0000008a0000008b0000008c0000008b0000009f000000a00000008c0000009f000000a00000009f000000a1000000a2000000a0000000a1000000a2000000a1000000a9000000aa000000a2000000a9000000aa000000a9000000ab000000ac000000aa000000ab000000ac000000ab0000003402000035020000ac0000003402000035020000340200003602000037020000350200003602000037020000360200003e0200003f020000370200003e0200003f0200003e02000040020000410200003f0200004002000041020000400200005402000055020000410200005402000055020000540200005602000057020000550200005602000057020000560200005e0200005f020000570200005e0200005f0200005e02000060020000610200005f0200006002000061020000600200007402000075020000610200007402000075020000740200007602000077020000750200007602000077020000760200007e0200007f020000770200007e0200007f0200007e02000080020000810200007f0200008002000081020000800200009402000095020000810200009402000095020000940200009602000097020000950200009602000097020000960200009e0200009f020000970200009e0200009f0200009e020000a0020000a10200009f020000a00200003d0000003e0000003f000000420000003d0000003f000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 5 + - m_Indexes: 390000003a0000003b0000003c000000390000003b0000003c0000003b00000043000000440000003c0000004300000043000000470000004400000043000000480000004700000047000000480000004600000045000000470000004600000045000000460000005d0000005e000000450000005d0000005e0000005d00000063000000640000005e0000006300000063000000670000006400000063000000680000006700000067000000680000006600000065000000670000006600000065000000660000007d0000007e000000650000007d0000007e0000007d00000083000000840000007e0000008300000083000000870000008400000083000000880000008700000087000000880000008600000085000000870000008600000085000000860000009d0000009e000000850000009d0000009e0000009d000000a3000000a40000009e000000a3000000a3000000a7000000a4000000a3000000a8000000a7000000a7000000a8000000a6000000a5000000a7000000a6000000a5000000a60000003202000033020000a500000032020000330200003202000038020000390200003302000038020000380200003c02000039020000380200003d0200003c0200003c0200003d0200003b0200003a0200003c0200003b0200003a0200003b02000052020000530200003a02000052020000530200005202000058020000590200005302000058020000580200005c02000059020000580200005d0200005c0200005c0200005d0200005b0200005a0200005c0200005b0200005a0200005b02000072020000730200005a02000072020000730200007202000078020000790200007302000078020000780200007c02000079020000780200007d0200007c0200007c0200007d0200007b0200007a0200007c0200007b0200007a0200007b02000092020000930200007a02000092020000930200009202000098020000990200009302000098020000980200009c02000099020000980200009d0200009c0200009c0200009d0200009b0200009a0200009c0200009b020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 5 + - m_Indexes: 3300000034000000350000003600000033000000350000003800000036000000370000003600000035000000370000003800000037000000520000005200000037000000510000005200000051000000530000005400000052000000530000005400000053000000590000005a00000054000000590000005c0000005a0000005b0000005a000000590000005b0000005c0000005b00000072000000720000005b000000710000007200000071000000730000007400000072000000730000007400000073000000790000007a00000074000000790000007c0000007a0000007b0000007a000000790000007b0000007c0000007b00000092000000920000007b000000910000009200000091000000930000009400000092000000930000009400000093000000990000009a00000094000000990000009c0000009a0000009b0000009a000000990000009b0000009c0000009b000000b2000000b20000009b000000b1000000b2000000b1000000b3000000b4000000b2000000b3000000b4000000b30000002e0200002f020000b40000002e020000310200002f020000300200002f0200002e0200003002000031020000300200004702000047020000300200004602000047020000460200004802000049020000470200004802000049020000480200004e0200004f020000490200004e020000510200004f020000500200004f0200004e0200005002000051020000500200006702000067020000500200006602000067020000660200006802000069020000670200006802000069020000680200006e0200006f020000690200006e020000710200006f020000700200006f0200006e0200007002000071020000700200008702000087020000700200008602000087020000860200008802000089020000870200008802000089020000880200008e0200008f020000890200008e020000910200008f020000900200008f0200008e020000900200009102000090020000a7020000a702000090020000a6020000a7020000a6020000a8020000a9020000a7020000a8020000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 5 + - m_Indexes: 2d0000002e000000300000002e0000002f000000300000004f0000002d000000300000004f00000030000000500000004f000000500000004e0000004d0000004f0000004e0000004d0000004e00000058000000570000004d000000580000005500000057000000560000005700000058000000560000006f00000055000000560000006f00000056000000700000006f000000700000006e0000006d0000006f0000006e0000006d0000006e00000078000000770000006d000000780000007500000077000000760000007700000078000000760000008f00000075000000760000008f00000076000000900000008f000000900000008e0000008d0000008f0000008e0000008d0000008e00000098000000970000008d00000098000000950000009700000096000000970000009800000096000000af0000009500000096000000af00000096000000b0000000af000000b0000000ae000000ad000000af000000ae000000ad000000ae0000002d0200002c020000ad0000002d0200002a0200002c0200002b0200002c0200002d0200002b020000440200002a0200002b020000440200002b0200004502000044020000450200004302000042020000440200004302000042020000430200004d0200004c020000420200004d0200004a0200004c0200004b0200004c0200004d0200004b020000640200004a0200004b020000640200004b0200006502000064020000650200006302000062020000640200006302000062020000630200006d0200006c020000620200006d0200006a0200006c0200006b0200006c0200006d0200006b020000840200006a0200006b020000840200006b0200008502000084020000850200008302000082020000840200008302000082020000830200008d0200008c020000820200008d0200008a0200008c0200008b0200008c0200008d0200008b020000a40200008a0200008b020000a40200008b020000a5020000a4020000a5020000a3020000a2020000a4020000a302000031000000320000002f0000002e000000310000002f000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 5 + - m_Indexes: cc020000cd020000ca020000cb020000cc020000ca02000002000000030000000400000005000000020000000400000000000000020000000500000001000000000000000500000003000000090000000a00000004000000030000000a000000090000000b0000000c0000000a000000090000000c000000010000000500000007000000080000000100000007000000050000000400000006000000070000000500000006000000040000000a0000000e00000006000000040000000e0000000a0000000c0000000d0000000e0000000a0000000d000000070000000600000014000000150000000700000014000000080000000700000015000000130000000800000015000000060000000e0000000f00000014000000060000000f0000000e0000000d000000100000000f0000000e00000010000000130000001500000017000000180000001300000017000000150000001400000016000000170000001500000016000000140000000f000000120000001600000014000000120000000f0000001000000011000000120000000f0000001100000017000000160000001a0000001b000000170000001a00000018000000170000001b00000019000000180000001b00000016000000120000001f0000001a000000160000001f0000001200000011000000200000001f0000001200000020000000190000001b0000001d0000001e000000190000001d0000001b0000001a0000001c0000001d0000001b0000001c0000001a0000001f000000220000001c0000001a000000220000001f0000002000000021000000220000001f000000210000001e0000001d00000027000000280000001e000000270000001d0000001c00000029000000270000001d000000290000001c0000002200000023000000290000001c0000002300000022000000210000002400000023000000220000002400000027000000290000002a0000002b000000270000002a00000028000000270000002b0000002c000000280000002b0000002900000023000000260000002a00000029000000260000002300000024000000250000002600000023000000250000002b0000002a000000b6000000b70000002b000000b60000002c0000002b000000b7000000b50000002c000000b70000002600000025000000bb000000bc00000026000000bb0000002a00000026000000bc000000b60000002a000000bc000000b7000000b6000000b8000000b9000000b7000000b8000000b5000000b7000000b9000000ba000000b5000000b9000000bc000000bb000000bd000000be000000bc000000bd000000b6000000bc000000be000000b8000000b6000000be000000ba000000b9000000c5000000c6000000ba000000c5000000be000000bd000000c0000000c1000000be000000c0000000b8000000be000000c1000000bf000000b8000000c1000000b9000000b8000000bf000000c5000000b9000000bf000000c1000000c0000000c2000000c3000000c1000000c2000000bf000000c1000000c3000000c4000000bf000000c3000000c5000000bf000000c4000000c7000000c5000000c4000000c6000000c5000000c7000000c8000000c6000000c7000000c3000000c2000000ce000000cf000000c3000000ce000000c4000000c3000000cf000000cd000000c4000000cf000000c7000000c4000000cd000000ca000000c7000000cd000000c8000000c7000000ca000000c9000000c8000000ca000000cf000000ce000000d0000000d1000000cf000000d0000000cd000000cf000000d1000000d2000000cd000000d1000000ca000000cd000000d2000000cb000000ca000000d2000000c9000000ca000000cb000000cc000000c9000000cb000000d1000000d0000000d4000000d5000000d1000000d4000000d2000000d1000000d5000000d3000000d2000000d5000000cb000000d2000000d3000000da000000cb000000d3000000cc000000cb000000da000000d9000000cc000000da000000d5000000d4000000d6000000d7000000d5000000d6000000d3000000d5000000d7000000d8000000d3000000d7000000da000000d3000000d8000000db000000da000000d8000000d9000000da000000db000000dc000000d9000000db000000d7000000d60000000702000008020000d700000007020000d8000000d70000000802000006020000d800000008020000db000000d80000000602000003020000db00000006020000dc000000db0000000302000002020000dc000000030200000802000007020000090200000a020000080200000902000006020000080200000a0200000b020000060200000a02000003020000060200000b02000004020000030200000b0200000202000003020000040200000502000002020000040200000a020000090200000d0200000e0200000a0200000d0200000b0200000a0200000e0200000c0200000b0200000e020000040200000b0200000c02000013020000040200000c0200000502000004020000130200001202000005020000130200000e0200000d0200000f020000100200000e0200000f0200000c0200000e02000010020000110200000c02000010020000130200000c02000011020000140200001302000011020000120200001302000014020000150200001202000014020000100200000f0200001b0200001c020000100200001b02000011020000100200001c0200001a020000110200001c02000014020000110200001a02000017020000140200001a0200001502000014020000170200001602000015020000170200001c0200001b0200001d0200001e0200001c0200001d0200001a0200001c0200001e0200001f0200001a0200001e020000170200001a0200001f02000018020000170200001f0200001602000017020000180200001902000016020000180200001e0200001d02000021020000220200001e020000210200001f0200001e02000022020000200200001f02000022020000180200001f020000200200002702000018020000200200001902000018020000270200002602000019020000270200002202000021020000230200002402000022020000230200002002000022020000240200002502000020020000240200002702000020020000250200002802000027020000250200002602000027020000280200002902000026020000280200002402000023020000af020000b002000024020000af0200002502000024020000b0020000ae02000025020000b00200002802000025020000ae020000ab02000028020000ae0200002902000028020000ab020000aa02000029020000ab020000b0020000af020000b1020000b2020000b0020000b1020000ae020000b0020000b2020000b3020000ae020000b2020000ab020000ae020000b3020000ac020000ab020000b3020000aa020000ab020000ac020000ad020000aa020000ac020000b2020000b1020000b5020000b6020000b2020000b5020000b3020000b2020000b6020000b4020000b3020000b6020000ac020000b3020000b4020000bb020000ac020000b4020000ad020000ac020000bb020000ba020000ad020000bb020000b6020000b5020000b7020000b8020000b6020000b7020000b4020000b6020000b8020000b9020000b4020000b8020000bb020000b4020000b9020000bc020000bb020000b9020000ba020000bb020000bc020000bd020000ba020000bc020000b8020000b7020000c3020000c4020000b8020000c3020000b9020000b8020000c4020000c2020000b9020000c4020000bc020000b9020000c2020000bf020000bc020000c2020000bd020000bc020000bf020000be020000bd020000bf020000c4020000c3020000c5020000c6020000c4020000c5020000c2020000c4020000c6020000c7020000c2020000c6020000bf020000c2020000c7020000c0020000bf020000c7020000be020000bf020000c0020000c1020000be020000c0020000c6020000c5020000c8020000cd020000c6020000c8020000c7020000c6020000cd020000cc020000c7020000cd020000c0020000c7020000cc020000cf020000c0020000cc020000c1020000c0020000cf020000ce020000c1020000cf020000cf020000cc020000cb020000d0020000cf020000cb020000cd020000c8020000c9020000ca020000cd020000c9020000b7090000b8090000ce020000ce020000cf020000b7090000cf020000d0020000b7090000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: 5 + - m_Indexes: 780a0000770a0000760a0000780a0000760a0000750a0000780a0000750a0000740a0000780a0000740a0000730a0000780a0000730a0000720a0000780a0000720a0000710a0000780a0000710a00007f0a0000710a0000700a00007f0a0000700a0000800a00007f0a0000700a00006f0a0000800a00006f0a0000810a0000800a00006f0a00006e0a0000810a00006e0a0000820a0000810a00006e0a00006d0a0000820a00006d0a0000830a0000820a00006d0a00006c0a0000830a00006c0a0000840a0000830a00006c0a00006b0a0000840a00006b0a0000850a0000840a00006b0a00006a0a0000850a00006a0a0000860a0000850a00006a0a0000690a0000860a0000690a0000870a0000860a0000690a0000680a0000870a0000680a0000880a0000870a0000680a0000670a0000880a0000670a0000890a0000880a0000670a0000660a0000890a0000660a00008a0a0000890a0000660a0000650a00008a0a0000650a00008b0a00008a0a0000650a0000640a00008b0a0000640a00008c0a00008b0a0000640a0000630a00008c0a0000630a00008d0a00008c0a0000630a0000620a00008d0a0000620a00008e0a00008d0a0000620a0000610a00008e0a0000610a00008f0a00008e0a0000610a0000600a00008f0a0000600a0000900a00008f0a0000600a00005f0a0000900a00005f0a0000910a0000900a00005f0a00005e0a0000910a00005e0a0000920a0000910a00005e0a00005d0a0000920a0000920a00005d0a0000930a00005d0a00005c0a0000930a0000930a00005c0a0000940a00005c0a00005b0a0000940a00005b0a0000950a0000940a00005b0a00005a0a0000950a00005a0a0000960a0000950a00005a0a0000590a0000960a0000590a0000970a0000960a0000590a0000580a0000970a0000580a0000980a0000970a0000580a0000570a0000980a0000570a0000560a0000980a00007f0a00007e0a0000780a00007e0a00007d0a0000780a00007d0a00007c0a0000780a00007c0a00007b0a0000780a0000780a00007b0a00007a0a0000790a0000780a00007a0a0000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 2100000, guid: c22777d6e868e4f2fb421913386b154e, type: 2} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: eb060000ec060000ed060000ee060000eb060000ed060000dd060000eb060000ee060000de060000dd060000ee060000d7060000dd060000de060000d8060000d7060000de060000d1060000d7060000d8060000d2060000d1060000d8060000c5060000d1060000d2060000c6060000c5060000d2060000cb060000c5060000c6060000cc060000cb060000c6060000bf060000cb060000cc060000c0060000bf060000cc06000075060000bf060000c00600007606000075060000c0060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: d9090000da090000db090000c8090000c9090000da090000c7090000da090000c9090000c7090000db090000da090000dd010000c9090000c8090000dc010000dd010000c8090000e1010000e2010000e3010000e0010000e1010000e3010000e2010000e4010000e5010000e3010000e2010000e5010000e5010000e4010000ef010000e4010000ee010000ef010000ef010000ee010000f1010000ee010000f0010000f1010000f0010000df010000de010000f1010000f0010000de010000df010000dd010000dc010000de010000df010000dc0100002101000022010000230100002401000021010000230100001f0100002101000024010000200100001f010000240100001c0100001f010000200100001d0100001c010000200100001c0100001a0100001b0100001c0100001d0100001a010000f90000001b010000fa000000fa0000001b0100001a010000f8000000f7000000f9000000f8000000f9000000fa000000f4000000f7000000f8000000f5000000f4000000f8000000f3000000f4000000f5000000f2000000f3000000f50000002401000023010000250100002601000024010000250100002001000024010000260100002701000020010000260100001d01000020010000270100001e0100001d010000270100001a0100001d0100001e010000190100001a0100001e0100001a010000fb000000fa0000001a01000019010000fb000000f8000000fa000000fc000000fc000000fa000000fb000000f6000000f5000000f8000000f6000000f8000000fc000000f2000000f5000000f6000000f1000000f2000000f60000002601000025010000290100002a010000260100002901000027010000260100002a01000028010000270100002a0100001e0100002701000028010000160100001e01000028010000190100001e01000016010000150100001901000016010000fb0000001901000015010000fe000000fb00000015010000fc000000fb000000fe000000fd000000fc000000fe000000f6000000fc000000fd000000ee000000f6000000fd000000f1000000f6000000ee000000ed000000f1000000ee0000002a010000290100002b0100002c0100002a0100002b010000280100002a0100002c0100002d010000280100002c01000016010000280100002d01000017010000160100002d010000150100001601000017010000180100001501000017010000fe0000001501000018010000ff000000fe00000018010000fd000000fe000000ff00000000010000fd000000ff000000ee000000fd00000000010000ef000000ee00000000010000ed000000ee000000ef000000f0000000ed000000ef0000002c0100002b01000006010000070100002c010000060100002d0100002c01000007010000050100002d01000007010000170100002d01000005010000020100001701000005010000180100001701000002010000010100001801000002010000ff0000001801000001010000e3000000ff00000001010000ff000000e200000000010000ff000000e3000000e2000000ef00000000010000df000000df00000000010000e2000000de000000f0000000ef000000de000000ef000000df0000000701000006010000080100000901000007010000080100000501000007010000090100000a010000050100000901000002010000050100000a01000003010000020100000a010000010100000201000003010000040100000101000003010000e30000000101000004010000e4000000e300000004010000e2000000e3000000e4000000e1000000e2000000e4000000df000000e2000000e1000000e0000000df000000e1000000de000000df000000e0000000dd000000de000000e000000009010000080100000c0100000d010000090100000c0100000a010000090100000d0100000b0100000a0100000d010000030100000a0100000b01000012010000030100000b010000040100000301000012010000110100000401000012010000e40000000401000011010000e6000000e400000011010000e1000000e4000000e6000000e5000000e1000000e6000000e0000000e1000000e5000000eb000000e0000000e5000000dd000000e0000000eb000000ea000000dd000000eb0000000d0100000c0100000e0100000f0100000d0100000e0100000b0100000d0100000f010000100100000b0100000f010000120100000b01000010010000130100001201000010010000110100001201000013010000140100001101000013010000e60000001101000014010000e7000000e600000014010000e5000000e6000000e7000000e8000000e5000000e7000000ec000000eb000000e8000000eb000000e5000000e8000000e9000000ea000000ec000000ea000000eb000000ec0000000f0100000e01000033010000340100000f01000033010000100100000f010000340100003201000010010000340100001301000010010000320100002f010000130100003201000014010000130100002f0100002e010000140100002f010000e7000000140100002e0100006c010000e70000002e010000e70000006b010000e8000000e70000006c0100006b010000ec000000e80000006801000068010000e80000006b01000067010000e9000000ec00000067010000ec000000680100003401000033010000350100003601000034010000350100003201000034010000360100003701000032010000360100002f0100003201000037010000300100002f010000370100002e0100002f01000030010000310100002e010000300100006c0100002e010000310100006d0100006c010000310100006b0100006c0100006d0100006a0100006b0100006d010000680100006b0100006a01000069010000680100006a0100006701000068010000690100006601000067010000690100003601000035010000390100003a010000360100003901000037010000360100003a01000038010000370100003a0100003001000037010000380100003f010000300100003801000031010000300100003f0100003e010000310100003f0100006d010000310100003e0100006f0100006d0100003e0100006a0100006d0100006f0100006e0100006a0100006f010000690100006a0100006e01000074010000690100006e0100006601000069010000740100007301000066010000740100003a010000390100003b0100003c0100003a0100003b010000380100003a0100003c0100003d010000380100003c0100003f010000380100003d010000400100003f0100003d0100003e0100003f01000040010000410100003e010000400100006f0100003e01000041010000700100006f010000410100006e0100006f01000070010000710100006e01000070010000750100007401000071010000740100006e010000710100007201000073010000750100007301000074010000750100003c0100003b01000047010000480100003c010000470100003d0100003c01000048010000460100003d01000048010000400100003d010000460100004301000040010000460100004101000040010000430100004201000041010000430100007001000041010000420100005f010000700100004201000071010000700100005f0100005e010000710100005f01000075010000710100005e0100005b010000750100005e01000072010000750100005b0100005a010000720100005b0100004801000047010000490100004a010000480100004901000046010000480100004a0100004b010000460100004a01000043010000460100004b01000044010000430100004b0100004201000043010000440100004501000042010000440100005f0100004201000045010000600100005f010000450100005e0100005f01000060010000610100005e010000600100005b0100005e010000610100005c0100005b010000610100005a0100005b0100005c0100005d0100005a0100005c0100004a010000490100004d0100004e0100004a0100004d0100004b0100004a0100004e0100004c0100004b0100004e010000440100004b0100004c01000053010000440100004c010000450100004401000053010000520100004501000053010000600100004501000052010000640100006001000052010000630100006101000064010000610100006001000064010000580100005c010000630100005c01000061010000630100005d0100005c01000058010000570100005d010000580100004e0100004d0100004f010000500100004e0100004f0100004c0100004e01000050010000510100004c01000050010000530100004c01000051010000540100005301000051010000520100005301000054010000550100005201000054010000650100006401000055010000640100005201000055010000620100006301000065010000630100006401000065010000580100006301000062010000590100005801000062010000570100005801000059010000560100005701000059010000500100004f010000b3010000b401000050010000b30100005101000050010000b4010000b201000051010000b40100005401000051010000b2010000b001000054010000b201000054010000af0100005501000054010000b0010000af01000065010000550100008f0100008f01000055010000af0100008e01000062010000650100008e010000650100008f01000059010000620100008e0100008c010000590100008e01000056010000590100008c0100008b010000560100008c010000b4010000b3010000b5010000b6010000b4010000b5010000b2010000b4010000b6010000b7010000b2010000b6010000b0010000b2010000b7010000b1010000b0010000b7010000af010000b0010000b1010000ae010000af010000b1010000af010000900100008f010000af010000ae010000900100008e0100008f01000091010000910100008f010000900100008d0100008c0100008e0100008d0100008e010000910100008b0100008c0100008d0100008a0100008b0100008d010000b6010000b5010000b9010000ba010000b6010000b9010000b7010000b6010000ba010000b8010000b7010000ba010000b1010000b7010000b8010000ab010000b1010000b8010000ae010000b1010000ab010000aa010000ae010000ab01000090010000ae010000aa0100009301000090010000aa0100009101000090010000930100009201000091010000930100008d0100009101000092010000870100008d010000920100008a0100008d01000087010000860100008a01000087010000ba010000b9010000bb010000bc010000ba010000bb010000b8010000ba010000bc010000bd010000b8010000bc010000ab010000b8010000bd010000ac010000ab010000bd010000aa010000ab010000ac010000ad010000aa010000ac01000093010000aa010000ad0100009401000093010000ad010000920100009301000094010000950100009201000094010000870100009201000095010000880100008701000095010000860100008701000088010000890100008601000088010000bc010000bb0100009b0100009c010000bc0100009b010000bd010000bc0100009c0100009a010000bd0100009c010000ac010000bd0100009a01000097010000ac0100009a010000ad010000ac0100009701000096010000ad0100009701000094010000ad010000960100007c0100009401000096010000940100007b01000095010000940100007c0100007b01000088010000950100007801000078010000950100007b0100007701000089010000880100007701000088010000780100009c0100009b0100009d0100009e0100009c0100009d0100009a0100009c0100009e0100009f0100009a0100009e010000970100009a0100009f01000098010000970100009f0100009601000097010000980100009901000096010000980100007c01000096010000990100007d0100007c010000990100007b0100007c0100007d0100007a0100007b0100007d010000780100007b0100007a01000079010000780100007a0100007701000078010000790100007601000077010000790100009e0100009d010000a1010000a20100009e010000a10100009f0100009e010000a2010000a00100009f010000a2010000980100009f010000a0010000a701000098010000a00100009901000098010000a7010000a601000099010000a70100007d01000099010000a60100007f0100007d010000a60100007a0100007d0100007f0100007e0100007a0100007f010000790100007a0100007e01000084010000790100007e010000760100007901000084010000830100007601000084010000a2010000a1010000a3010000a4010000a2010000a3010000a0010000a2010000a4010000a5010000a0010000a4010000a7010000a0010000a5010000a8010000a7010000a5010000a6010000a7010000a8010000a9010000a6010000a80100007f010000a6010000a9010000800100007f010000a90100007e0100007f01000080010000810100007e01000080010000850100008401000081010000840100007e01000081010000820100008301000085010000830100008401000085010000a4010000a3010000c3010000c4010000a4010000c3010000a5010000a4010000c4010000c2010000a5010000c4010000a8010000a5010000c2010000bf010000a8010000c2010000a9010000a8010000bf010000be010000a9010000bf01000080010000a9010000be010000f801000080010000be01000080010000f70100008101000080010000f8010000f70100008501000081010000f4010000f401000081010000f7010000f30100008201000085010000f301000085010000f4010000c4010000c3010000c5010000c6010000c4010000c5010000c2010000c4010000c6010000c7010000c2010000c6010000bf010000c2010000c7010000c0010000bf010000c7010000be010000bf010000c0010000c1010000be010000c0010000f8010000be010000c1010000f9010000f8010000c1010000f7010000f8010000f9010000f6010000f7010000f9010000f4010000f7010000f6010000f5010000f4010000f6010000f3010000f4010000f5010000f2010000f3010000f5010000c6010000c5010000c9010000ca010000c6010000c9010000c7010000c6010000ca010000c8010000c7010000ca010000c0010000c7010000c8010000cf010000c0010000c8010000c1010000c0010000cf010000ce010000c1010000cf010000f9010000c1010000ce010000fb010000f9010000ce010000f6010000f9010000fb010000fa010000f6010000fb010000f5010000f6010000fa01000000020000f5010000fa010000f2010000f501000000020000ff010000f201000000020000ca010000c9010000cb010000cc010000ca010000cb010000c8010000ca010000cc010000cd010000c8010000cc010000cf010000c8010000cd010000d0010000cf010000cd010000ce010000cf010000d0010000d1010000ce010000d0010000fb010000ce010000d1010000fc010000fb010000d1010000fa010000fb010000fc010000fd010000fa010000fc0100000102000000020000fd01000000020000fa010000fd010000fe010000ff01000001020000ff0100000002000001020000cc010000cb010000d7010000d8010000cc010000d7010000cd010000cc010000d8010000d6010000cd010000d8010000d0010000cd010000d6010000d3010000d0010000d6010000d1010000d0010000d3010000d2010000d1010000d3010000fc010000d1010000d2010000eb010000fc010000d2010000fd010000fc010000eb010000ea010000fd010000eb01000001020000fd010000ea010000e701000001020000ea010000fe01000001020000e7010000e6010000fe010000e7010000d8010000d7010000d9010000da010000d8010000d9010000d6010000d8010000da010000db010000d6010000da010000d3010000d6010000db010000d4010000d3010000db010000d2010000d3010000d4010000d5010000d2010000d4010000eb010000d2010000d5010000ec010000eb010000d5010000ea010000eb010000ec010000ed010000ea010000ec010000e7010000ea010000ed010000e8010000e7010000ed010000e6010000e7010000e8010000e9010000e6010000e8010000da010000d9010000c7090000c9090000da010000c7090000db010000da010000c9090000dd010000db010000c9090000d4010000db010000dd010000df010000d4010000dd010000d5010000d4010000df010000f0010000d5010000df010000ec010000d5010000f0010000ee010000ec010000f0010000e4010000ed010000ee010000ed010000ec010000ee010000e2010000e8010000e4010000e8010000ed010000e4010000e9010000e8010000e2010000e1010000e9010000e2010000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: 480600004506000046060000480600004606000047060000520600005106000045060000520600004506000048060000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: 0 + m_TextureGroup: -1 + - m_Indexes: be090000bd090000bc09000073040000740400007604000074040000750400007604000067040000680400006a04000068040000690400006a0400005f0400006004000067040000600400006804000067040000650400006704000066040000670400006a040000660400005e0400005f040000650400005f04000067040000650400006304000065040000640400006504000066040000640400005d0400005e040000630400005e04000065040000630400006104000063040000620400006304000064040000620400005c0400005d040000610400005d04000063040000610400007104000061040000720400006104000062040000720400005b0400005c040000710400005c04000061040000710400006f04000071040000700400007104000072040000700400005a0400005b0400006f0400005b040000710400006f0400006d0400006f0400006e0400006f040000700400006e040000590400005a0400006d0400005a0400006f0400006d0400006b0400006d0400006c0400006d0400006e0400006c04000058040000590400006b040000590400006d0400006b0400004e0400006b0400004f0400006b0400006c0400004f04000047040000580400004e040000580400006b0400004e0400004c0400004e0400004d0400004e0400004f0400004d04000046040000470400004c040000470400004e0400004c0400004a0400004c0400004b0400004c0400004d0400004b04000045040000460400004a040000460400004c0400004a040000480400004a040000490400004a0400004b04000049040000440400004504000048040000450400004a040000480400005604000048040000570400004804000049040000570400004304000044040000560400004404000048040000560400005404000056040000550400005604000057040000550400004204000043040000540400004304000056040000540400005204000054040000530400005404000055040000530400004104000042040000520400004204000054040000520400005004000052040000510400005204000053040000510400004004000041040000500400004104000052040000500400009804000050040000990400005004000051040000990400009104000040040000980400004004000050040000980400009604000098040000970400009804000099040000970400009004000091040000960400009104000098040000960400009404000096040000950400009604000097040000950400008f04000090040000940400009004000096040000940400009204000094040000930400009404000095040000930400008e0400008f040000920400008f0400009404000092040000a004000092040000a10400009204000093040000a10400008d0400008e040000a00400008e04000092040000a00400009e040000a00400009f040000a0040000a10400009f0400008c0400008d0400009e0400008d040000a00400009e0400009c0400009e0400009d0400009e0400009f0400009d0400008b0400008c0400009c0400008c0400009e0400009c0400009a0400009c0400009b0400009c0400009d0400009b0400008a0400008b0400009a0400008b0400009c0400009a040000830400009a040000840400009a0400009b040000840400007c0400008a040000830400008a0400009a040000830400008104000083040000820400008304000084040000820400007b0400007c040000810400007c04000083040000810400007f04000081040000800400008104000082040000800400007a0400007b0400007f0400007b040000810400007f0400007d0400007f0400007e0400007f040000800400007e040000790400007a0400007d0400007a0400007f0400007d040000880400007d040000890400007d0400007e04000089040000780400007904000088040000790400007d040000880400008604000088040000870400008804000089040000870400007704000078040000860400007804000088040000860400007504000086040000850400008604000087040000850400007404000077040000750400007704000086040000750400007604000075040000bc090000bc0900007504000085040000be090000bc09000085040000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: 0 + m_TextureGroup: -1 + m_SharedVertices: + - m_Vertices: 0000000069040000ed050000 + - m_Vertices: 02000000f0050000f4050000 + - m_Vertices: 05000000 + - m_Vertices: 010000006a040000 + - m_Vertices: 03000000ea050000f3050000 + - m_Vertices: 04000000 + - m_Vertices: 06000000 + - m_Vertices: 07000000 + - m_Vertices: 0800000066040000 + - m_Vertices: 09000000e7050000e9050000 + - m_Vertices: 0a000000 + - m_Vertices: 0b00000031000000c2050000e6050000 + - m_Vertices: 0c0000002e000000 + - m_Vertices: 0d0000002d000000 + - m_Vertices: 0e000000 + - m_Vertices: 0f000000 + - m_Vertices: 14000000 + - m_Vertices: 100000004f000000 + - m_Vertices: 110000004d000000 + - m_Vertices: 12000000 + - m_Vertices: 16000000 + - m_Vertices: 15000000 + - m_Vertices: 1300000064040000 + - m_Vertices: 17000000 + - m_Vertices: 1800000062040000 + - m_Vertices: 1b000000 + - m_Vertices: 1900000072040000 + - m_Vertices: 1a000000 + - m_Vertices: 1c000000 + - m_Vertices: 1d000000 + - m_Vertices: 1e00000070040000 + - m_Vertices: 1f000000 + - m_Vertices: 2000000057000000 + - m_Vertices: 2100000055000000 + - m_Vertices: 22000000 + - m_Vertices: 23000000 + - m_Vertices: 29000000 + - m_Vertices: 240000006f000000 + - m_Vertices: 250000006d000000 + - m_Vertices: 26000000 + - m_Vertices: 2a000000 + - m_Vertices: 27000000 + - m_Vertices: 280000006e040000 + - m_Vertices: 2b000000 + - m_Vertices: 2c0000006c040000 + - m_Vertices: 2f00000036000000 + - m_Vertices: 3000000038000000 + - m_Vertices: 3200000033000000be050000c1050000 + - m_Vertices: 3400000039000000ba050000bd050000 + - m_Vertices: 350000003c000000 + - m_Vertices: 3700000044000000 + - m_Vertices: 3a0000003d000000b6050000b9050000 + - m_Vertices: 3b00000042000000 + - m_Vertices: 3e000000f3000000a5050000b5050000 + - m_Vertices: 3f000000f2000000 + - m_Vertices: 40000000f1000000 + - m_Vertices: 4100000043000000 + - m_Vertices: 4500000053000000 + - m_Vertices: 4700000051000000 + - m_Vertices: 480000004a000000 + - m_Vertices: 460000004c000000 + - m_Vertices: 49000000ed000000 + - m_Vertices: 4b000000f0000000 + - m_Vertices: 5000000052000000 + - m_Vertices: 4e00000054000000 + - m_Vertices: 580000005a000000 + - m_Vertices: 560000005c000000 + - m_Vertices: 590000005e000000 + - m_Vertices: 5b00000064000000 + - m_Vertices: 5d00000060000000 + - m_Vertices: 5f000000de000000 + - m_Vertices: 61000000dd000000 + - m_Vertices: 6200000063000000 + - m_Vertices: 6500000073000000 + - m_Vertices: 6700000071000000 + - m_Vertices: 680000006a000000 + - m_Vertices: 660000006c000000 + - m_Vertices: 69000000ea000000 + - m_Vertices: 6b000000e9000000 + - m_Vertices: 7000000072000000 + - m_Vertices: 6e00000074000000 + - m_Vertices: 75000000bd000000 + - m_Vertices: 77000000bb000000 + - m_Vertices: 780000007a000000 + - m_Vertices: 760000007c000000 + - m_Vertices: 790000007e000000 + - m_Vertices: 7b00000084000000 + - m_Vertices: 7d00000080000000 + - m_Vertices: 7f00000067010000 + - m_Vertices: 8100000066010000 + - m_Vertices: 8200000083000000 + - m_Vertices: 8500000093000000 + - m_Vertices: 8700000091000000 + - m_Vertices: 880000008a000000 + - m_Vertices: 860000008c000000 + - m_Vertices: 8900000073010000 + - m_Vertices: 8b00000072010000 + - m_Vertices: 8d000000c2000000 + - m_Vertices: 8f000000c0000000 + - m_Vertices: 9000000092000000 + - m_Vertices: 8e00000094000000 + - m_Vertices: 95000000d0000000 + - m_Vertices: 97000000ce000000 + - m_Vertices: 980000009a000000 + - m_Vertices: 960000009c000000 + - m_Vertices: 990000009e000000 + - m_Vertices: 9b000000a4000000 + - m_Vertices: 9d000000a0000000 + - m_Vertices: 9f0000005a010000 + - m_Vertices: a10000005d010000 + - m_Vertices: a2000000a3000000 + - m_Vertices: a5000000b3000000 + - m_Vertices: a7000000b1000000 + - m_Vertices: a8000000aa000000 + - m_Vertices: a6000000ac000000 + - m_Vertices: a900000057010000 + - m_Vertices: ab00000056010000 + - m_Vertices: ad000000d6000000 + - m_Vertices: af000000d4000000 + - m_Vertices: b0000000b2000000 + - m_Vertices: ae000000b4000000 + - m_Vertices: b7000000 + - m_Vertices: b50000004f040000 + - m_Vertices: b6000000 + - m_Vertices: b8000000 + - m_Vertices: b9000000 + - m_Vertices: ba0000004d040000 + - m_Vertices: bc000000 + - m_Vertices: be000000 + - m_Vertices: c1000000 + - m_Vertices: bf000000 + - m_Vertices: c3000000 + - m_Vertices: c4000000 + - m_Vertices: c5000000 + - m_Vertices: c60000004b040000 + - m_Vertices: c7000000 + - m_Vertices: c800000049040000 + - m_Vertices: ca000000 + - m_Vertices: c900000057040000 + - m_Vertices: cd000000 + - m_Vertices: d2000000 + - m_Vertices: cb000000 + - m_Vertices: cc00000055040000 + - m_Vertices: cf000000 + - m_Vertices: d1000000 + - m_Vertices: d5000000 + - m_Vertices: d3000000 + - m_Vertices: d7000000 + - m_Vertices: d8000000 + - m_Vertices: da000000 + - m_Vertices: d900000053040000 + - m_Vertices: db000000 + - m_Vertices: dc00000051040000 + - m_Vertices: df000000 + - m_Vertices: e0000000 + - m_Vertices: ef000000 + - m_Vertices: 00010000 + - m_Vertices: e2000000 + - m_Vertices: e1000000 + - m_Vertices: e3000000 + - m_Vertices: e4000000 + - m_Vertices: ff000000 + - m_Vertices: 18010000 + - m_Vertices: 01010000 + - m_Vertices: 04010000 + - m_Vertices: e6000000 + - m_Vertices: e5000000 + - m_Vertices: 11010000 + - m_Vertices: 14010000 + - m_Vertices: e7000000 + - m_Vertices: e8000000 + - m_Vertices: eb000000 + - m_Vertices: ec000000 + - m_Vertices: f6000000 + - m_Vertices: ee000000 + - m_Vertices: fc000000 + - m_Vertices: fd000000 + - m_Vertices: f5000000 + - m_Vertices: f4000000a8050000ac050000 + - m_Vertices: f7000000ab050000b2050000 + - m_Vertices: f8000000 + - m_Vertices: f9000000af050000b1050000 + - m_Vertices: fa000000 + - m_Vertices: 1b01000075050000ae050000 + - m_Vertices: 1a010000 + - m_Vertices: 19010000 + - m_Vertices: fb000000 + - m_Vertices: fe000000 + - m_Vertices: 15010000 + - m_Vertices: 17010000 + - m_Vertices: 02010000 + - m_Vertices: 2d010000 + - m_Vertices: 05010000 + - m_Vertices: 0a010000 + - m_Vertices: 03010000 + - m_Vertices: 2c010000 + - m_Vertices: 07010000 + - m_Vertices: 2b0100003c030000 + - m_Vertices: 060100003b030000 + - m_Vertices: 080100003a030000 + - m_Vertices: 09010000 + - m_Vertices: 0d010000 + - m_Vertices: 0b010000 + - m_Vertices: 0c01000039030000 + - m_Vertices: 0e01000037030000 + - m_Vertices: 0f010000 + - m_Vertices: 10010000 + - m_Vertices: 12010000 + - m_Vertices: 13010000 + - m_Vertices: 1e010000 + - m_Vertices: 16010000 + - m_Vertices: 27010000 + - m_Vertices: 28010000 + - m_Vertices: 1d010000 + - m_Vertices: 1c010000780500007c050000 + - m_Vertices: 1f0100007b05000082050000 + - m_Vertices: 20010000 + - m_Vertices: 210100007f05000081050000 + - m_Vertices: 24010000 + - m_Vertices: 22010000400300007e050000 + - m_Vertices: 230100003f030000 + - m_Vertices: 250100003e030000 + - m_Vertices: 26010000 + - m_Vertices: 2a010000 + - m_Vertices: 290100003d030000 + - m_Vertices: 2f010000 + - m_Vertices: 2e010000 + - m_Vertices: 32010000 + - m_Vertices: 37010000 + - m_Vertices: 30010000 + - m_Vertices: 31010000 + - m_Vertices: 34010000 + - m_Vertices: 3301000028030000 + - m_Vertices: 3501000026030000 + - m_Vertices: 36010000 + - m_Vertices: 3a010000 + - m_Vertices: 38010000 + - m_Vertices: 3901000025030000 + - m_Vertices: 3b01000024030000 + - m_Vertices: 3c010000 + - m_Vertices: 3d010000 + - m_Vertices: 3f010000 + - m_Vertices: 3e010000 + - m_Vertices: 40010000 + - m_Vertices: 41010000 + - m_Vertices: 43010000 + - m_Vertices: 42010000 + - m_Vertices: 46010000 + - m_Vertices: 4b010000 + - m_Vertices: 44010000 + - m_Vertices: 45010000 + - m_Vertices: 48010000 + - m_Vertices: 4701000023030000 + - m_Vertices: 4901000021030000 + - m_Vertices: 4a010000 + - m_Vertices: 4e010000 + - m_Vertices: 4c010000 + - m_Vertices: 4d01000020030000 + - m_Vertices: 4f0100001f030000 + - m_Vertices: 50010000 + - m_Vertices: 51010000 + - m_Vertices: 53010000 + - m_Vertices: 52010000 + - m_Vertices: 54010000 + - m_Vertices: 55010000 + - m_Vertices: 58010000 + - m_Vertices: 59010000 + - m_Vertices: 5c010000 + - m_Vertices: 61010000 + - m_Vertices: 63010000 + - m_Vertices: 62010000 + - m_Vertices: 75010000 + - m_Vertices: 5b010000 + - m_Vertices: 71010000 + - m_Vertices: 5e010000 + - m_Vertices: 70010000 + - m_Vertices: 5f010000 + - m_Vertices: 60010000 + - m_Vertices: 64010000 + - m_Vertices: 65010000 + - m_Vertices: 68010000 + - m_Vertices: 69010000 + - m_Vertices: 6b010000 + - m_Vertices: 6a010000 + - m_Vertices: 6c010000 + - m_Vertices: 6d010000 + - m_Vertices: 6f010000 + - m_Vertices: 6e010000 + - m_Vertices: 74010000 + - m_Vertices: 7601000056020000 + - m_Vertices: 7701000054020000 + - m_Vertices: 78010000 + - m_Vertices: 79010000 + - m_Vertices: 8901000040020000 + - m_Vertices: 88010000 + - m_Vertices: 95010000 + - m_Vertices: 7b010000 + - m_Vertices: 7a010000 + - m_Vertices: 7c010000 + - m_Vertices: 7d010000 + - m_Vertices: 94010000 + - m_Vertices: ad010000 + - m_Vertices: 96010000 + - m_Vertices: 99010000 + - m_Vertices: 7f010000 + - m_Vertices: 7e010000 + - m_Vertices: a6010000 + - m_Vertices: a9010000 + - m_Vertices: 80010000 + - m_Vertices: 81010000 + - m_Vertices: 8201000060020000 + - m_Vertices: 830100005e020000 + - m_Vertices: 84010000 + - m_Vertices: 85010000 + - m_Vertices: 8a01000036020000 + - m_Vertices: 8d010000 + - m_Vertices: 87010000 + - m_Vertices: 860100003e020000 + - m_Vertices: 91010000 + - m_Vertices: 92010000 + - m_Vertices: 8b01000034020000 + - m_Vertices: 8c010000 + - m_Vertices: 8e010000 + - m_Vertices: 8f010000 + - m_Vertices: af010000 + - m_Vertices: ae010000 + - m_Vertices: 90010000 + - m_Vertices: 93010000 + - m_Vertices: aa010000 + - m_Vertices: ac010000 + - m_Vertices: 97010000 + - m_Vertices: bd010000 + - m_Vertices: 9a010000 + - m_Vertices: 9f010000 + - m_Vertices: 98010000 + - m_Vertices: bc010000 + - m_Vertices: 9c010000 + - m_Vertices: bb0100006a030000 + - m_Vertices: 9b01000069030000 + - m_Vertices: 9d01000068030000 + - m_Vertices: 9e010000 + - m_Vertices: a2010000 + - m_Vertices: a0010000 + - m_Vertices: a101000067030000 + - m_Vertices: a301000066030000 + - m_Vertices: a4010000 + - m_Vertices: a5010000 + - m_Vertices: a7010000 + - m_Vertices: a8010000 + - m_Vertices: b1010000 + - m_Vertices: ab010000 + - m_Vertices: b7010000 + - m_Vertices: b8010000 + - m_Vertices: b0010000 + - m_Vertices: b2010000 + - m_Vertices: b4010000 + - m_Vertices: b30100006e030000 + - m_Vertices: b50100006d030000 + - m_Vertices: b6010000 + - m_Vertices: ba010000 + - m_Vertices: b90100006b030000 + - m_Vertices: bf010000 + - m_Vertices: be010000 + - m_Vertices: c2010000 + - m_Vertices: c7010000 + - m_Vertices: c0010000 + - m_Vertices: c1010000 + - m_Vertices: c4010000 + - m_Vertices: c301000057030000 + - m_Vertices: c501000056030000 + - m_Vertices: c6010000 + - m_Vertices: ca010000 + - m_Vertices: c8010000 + - m_Vertices: c901000055030000 + - m_Vertices: cb01000054030000 + - m_Vertices: cc010000 + - m_Vertices: cd010000 + - m_Vertices: cf010000 + - m_Vertices: ce010000 + - m_Vertices: d0010000 + - m_Vertices: d1010000 + - m_Vertices: d3010000 + - m_Vertices: d2010000 + - m_Vertices: d6010000 + - m_Vertices: db010000 + - m_Vertices: d4010000 + - m_Vertices: d5010000 + - m_Vertices: d8010000 + - m_Vertices: d701000053030000 + - m_Vertices: d901000052030000 + - m_Vertices: da010000 + - m_Vertices: c9090000 + - m_Vertices: dd010000 + - m_Vertices: c7090000ca090000 + - m_Vertices: eb060000c8090000 + - m_Vertices: dc010000dd060000 + - m_Vertices: df010000 + - m_Vertices: f0010000 + - m_Vertices: de010000d7060000 + - m_Vertices: f1010000d1060000 + - m_Vertices: e0010000a0020000750600007c060000 + - m_Vertices: e10100009e020000 + - m_Vertices: e2010000 + - m_Vertices: e3010000bf060000 + - m_Vertices: e901000096020000 + - m_Vertices: e8010000 + - m_Vertices: ed010000 + - m_Vertices: e4010000 + - m_Vertices: e5010000cb060000 + - m_Vertices: fe01000080020000 + - m_Vertices: 01020000 + - m_Vertices: e7010000 + - m_Vertices: e601000094020000 + - m_Vertices: fd010000 + - m_Vertices: ea010000 + - m_Vertices: fc010000 + - m_Vertices: eb010000 + - m_Vertices: ec010000 + - m_Vertices: ee010000 + - m_Vertices: ef010000c5060000 + - m_Vertices: f201000076020000 + - m_Vertices: f301000074020000 + - m_Vertices: f4010000 + - m_Vertices: f5010000 + - m_Vertices: f7010000 + - m_Vertices: f6010000 + - m_Vertices: f8010000 + - m_Vertices: f9010000 + - m_Vertices: fb010000 + - m_Vertices: fa010000 + - m_Vertices: ff0100007e020000 + - m_Vertices: 00020000 + - m_Vertices: 03020000 + - m_Vertices: 0202000099040000 + - m_Vertices: 06020000 + - m_Vertices: 0b020000 + - m_Vertices: 04020000 + - m_Vertices: 0502000097040000 + - m_Vertices: 08020000 + - m_Vertices: 070200002c020000 + - m_Vertices: 090200002a020000 + - m_Vertices: 0a020000 + - m_Vertices: 0e020000 + - m_Vertices: 0c020000 + - m_Vertices: 0d02000044020000 + - m_Vertices: 0f02000042020000 + - m_Vertices: 10020000 + - m_Vertices: 11020000 + - m_Vertices: 13020000 + - m_Vertices: 1202000095040000 + - m_Vertices: 14020000 + - m_Vertices: 1502000093040000 + - m_Vertices: 17020000 + - m_Vertices: 16020000a1040000 + - m_Vertices: 1a020000 + - m_Vertices: 1f020000 + - m_Vertices: 18020000 + - m_Vertices: 190200009f040000 + - m_Vertices: 1c020000 + - m_Vertices: 1b0200004c020000 + - m_Vertices: 1d0200004a020000 + - m_Vertices: 1e020000 + - m_Vertices: 22020000 + - m_Vertices: 20020000 + - m_Vertices: 2102000064020000 + - m_Vertices: 2302000062020000 + - m_Vertices: 24020000 + - m_Vertices: 25020000 + - m_Vertices: 27020000 + - m_Vertices: 260200009d040000 + - m_Vertices: 28020000 + - m_Vertices: 290200009b040000 + - m_Vertices: 2d0200002f020000 + - m_Vertices: 2b02000031020000 + - m_Vertices: 2e02000033020000 + - m_Vertices: 3002000039020000 + - m_Vertices: 3202000035020000 + - m_Vertices: 3702000038020000 + - m_Vertices: 3a02000048020000 + - m_Vertices: 3c02000046020000 + - m_Vertices: 3d0200003f020000 + - m_Vertices: 3b02000041020000 + - m_Vertices: 4502000047020000 + - m_Vertices: 4302000049020000 + - m_Vertices: 4d0200004f020000 + - m_Vertices: 4b02000051020000 + - m_Vertices: 4e02000053020000 + - m_Vertices: 5002000059020000 + - m_Vertices: 5202000055020000 + - m_Vertices: 5702000058020000 + - m_Vertices: 5a02000068020000 + - m_Vertices: 5c02000066020000 + - m_Vertices: 5d0200005f020000 + - m_Vertices: 5b02000061020000 + - m_Vertices: 6502000067020000 + - m_Vertices: 6302000069020000 + - m_Vertices: 6a020000b1020000 + - m_Vertices: 6c020000af020000 + - m_Vertices: 6d0200006f020000 + - m_Vertices: 6b02000071020000 + - m_Vertices: 6e02000073020000 + - m_Vertices: 7002000079020000 + - m_Vertices: 7202000075020000 + - m_Vertices: 7702000078020000 + - m_Vertices: 7a02000088020000 + - m_Vertices: 7c02000086020000 + - m_Vertices: 7d0200007f020000 + - m_Vertices: 7b02000081020000 + - m_Vertices: 82020000b7020000 + - m_Vertices: 84020000b5020000 + - m_Vertices: 8502000087020000 + - m_Vertices: 8302000089020000 + - m_Vertices: 8a020000c5020000 + - m_Vertices: 8c020000c3020000 + - m_Vertices: 8d0200008f020000 + - m_Vertices: 8b02000091020000 + - m_Vertices: 8e02000093020000 + - m_Vertices: 9002000099020000 + - m_Vertices: 9202000095020000 + - m_Vertices: 9702000098020000 + - m_Vertices: 9a020000a80200008306000094060000 + - m_Vertices: 9c020000a6020000 + - m_Vertices: 9d0200009f020000 + - m_Vertices: 9b020000a10200007b06000084060000 + - m_Vertices: a2020000c90200005d06000066060000 + - m_Vertices: a4020000c8020000 + - m_Vertices: a5020000a7020000 + - m_Vertices: a3020000a90200005e06000093060000 + - m_Vertices: ab020000 + - m_Vertices: aa02000084040000 + - m_Vertices: ae020000 + - m_Vertices: b3020000 + - m_Vertices: ac020000 + - m_Vertices: ad02000082040000 + - m_Vertices: b0020000 + - m_Vertices: b2020000 + - m_Vertices: b6020000 + - m_Vertices: b4020000 + - m_Vertices: b8020000 + - m_Vertices: b9020000 + - m_Vertices: bb020000 + - m_Vertices: ba02000080040000 + - m_Vertices: bc020000 + - m_Vertices: bd0200007e040000 + - m_Vertices: bf020000 + - m_Vertices: be02000089040000 + - m_Vertices: c2020000 + - m_Vertices: c7020000 + - m_Vertices: c0020000 + - m_Vertices: c102000087040000 + - m_Vertices: c4020000 + - m_Vertices: c6020000 + - m_Vertices: cd020000 + - m_Vertices: cc020000 + - m_Vertices: ca02000065060000 + - m_Vertices: cb02000059060000 + - m_Vertices: cf020000 + - m_Vertices: ce02000085040000 + - m_Vertices: d002000026060000 + - m_Vertices: d102000067090000 + - m_Vertices: d2020000e9070000 + - m_Vertices: d302000066090000 + - m_Vertices: d4020000ea070000 + - m_Vertices: d502000065090000 + - m_Vertices: d6020000eb070000 + - m_Vertices: d702000064090000 + - m_Vertices: d8020000ec070000 + - m_Vertices: d902000063090000 + - m_Vertices: da020000ed070000 + - m_Vertices: db02000062090000 + - m_Vertices: dc020000ee070000 + - m_Vertices: dd02000061090000 + - m_Vertices: de020000ef070000 + - m_Vertices: df02000060090000 + - m_Vertices: e0020000f0070000 + - m_Vertices: e1020000530500006505000070090000 + - m_Vertices: e20200006f090000 + - m_Vertices: e3020000ea02000022080000 + - m_Vertices: e4020000e90200005005000054050000 + - m_Vertices: e50200006e090000 + - m_Vertices: e6020000e2070000 + - m_Vertices: e7020000f002000021080000f3080000 + - m_Vertices: e8020000ef0200004b0500004d050000 + - m_Vertices: eb0200006d090000 + - m_Vertices: ec020000e3070000 + - m_Vertices: ed0200006c090000 + - m_Vertices: ee020000e4070000 + - m_Vertices: f1020000f6020000d1080000f2080000 + - m_Vertices: f2020000f5020000480500004c050000 + - m_Vertices: f3020000d0080000ff090000 + - m_Vertices: f40200002305000045050000fe090000 + - m_Vertices: f70200006b090000 + - m_Vertices: f8020000e5070000 + - m_Vertices: f90200006a090000 + - m_Vertices: fa020000e6070000 + - m_Vertices: fb02000069090000 + - m_Vertices: fc020000e7070000 + - m_Vertices: fd02000068090000 + - m_Vertices: fe020000e8070000 + - m_Vertices: ff02000057090000 + - m_Vertices: 00030000f9070000 + - m_Vertices: 0103000056090000 + - m_Vertices: 02030000fa070000 + - m_Vertices: 0303000055090000 + - m_Vertices: 04030000fb070000 + - m_Vertices: 0503000054090000 + - m_Vertices: 06030000fc070000 + - m_Vertices: 0703000053090000 + - m_Vertices: 08030000fd070000 + - m_Vertices: 0903000052090000 + - m_Vertices: 0a030000fe070000 + - m_Vertices: 0b03000051090000 + - m_Vertices: 0c030000ff070000 + - m_Vertices: 0d030000f60500001906000050090000 + - m_Vertices: 0e030000f50500000e06000000080000 + - m_Vertices: 0f0300005f090000 + - m_Vertices: 10030000f1070000 + - m_Vertices: 110300005e090000 + - m_Vertices: 12030000f2070000 + - m_Vertices: 130300005d090000 + - m_Vertices: 14030000f3070000 + - m_Vertices: 150300005c090000 + - m_Vertices: 16030000f4070000 + - m_Vertices: 170300005b090000 + - m_Vertices: 18030000f5070000 + - m_Vertices: 190300005a090000 + - m_Vertices: 1a030000f6070000 + - m_Vertices: 1b03000059090000 + - m_Vertices: 1c030000f7070000 + - m_Vertices: 1d03000058090000 + - m_Vertices: 1e030000f8070000 + - m_Vertices: 32030000 + - m_Vertices: 30030000 + - m_Vertices: 22030000 + - m_Vertices: 35030000 + - m_Vertices: 2a030000 + - m_Vertices: 2c030000 + - m_Vertices: 27030000 + - m_Vertices: 29030000 + - m_Vertices: 38030000 + - m_Vertices: 2d030000a7030000 + - m_Vertices: 2b030000a9030000 + - m_Vertices: 2e030000a5030000 + - m_Vertices: 2f030000a3030000 + - m_Vertices: 4b0300009e030000 + - m_Vertices: 33030000bf030000 + - m_Vertices: 31030000c1030000 + - m_Vertices: 34030000bd030000 + - m_Vertices: 36030000bb030000 + - m_Vertices: 4c030000 + - m_Vertices: 4e030000 + - m_Vertices: 50030000 + - m_Vertices: 41030000 + - m_Vertices: 43030000 + - m_Vertices: 45030000 + - m_Vertices: 47030000 + - m_Vertices: 480300007d05000086050000 + - m_Vertices: 4403000085030000 + - m_Vertices: 4203000087030000 + - m_Vertices: 4603000083030000 + - m_Vertices: 4a03000081030000 + - m_Vertices: 490300007e0300000b05000085050000 + - m_Vertices: 4d030000a0030000 + - m_Vertices: 4f0300009a030000 + - m_Vertices: 510300009c030000 + - m_Vertices: 62030000 + - m_Vertices: cb090000 + - m_Vertices: 64030000 + - m_Vertices: 58030000 + - m_Vertices: 5a030000 + - m_Vertices: 5c030000 + - m_Vertices: 5e030000 + - m_Vertices: 76030000 + - m_Vertices: 5b030000e7030000 + - m_Vertices: 59030000e9030000 + - m_Vertices: 5d030000e5030000 + - m_Vertices: 5f030000e3030000 + - m_Vertices: 77030000e1030000 + - m_Vertices: b3060000e4060000cc090000 + - m_Vertices: 61030000fb030000 + - m_Vertices: 60030000fd030000b4060000f7060000 + - m_Vertices: 63030000f9030000 + - m_Vertices: 65030000f7030000 + - m_Vertices: 78030000 + - m_Vertices: 7a030000 + - m_Vertices: 7c030000 + - m_Vertices: 6f030000 + - m_Vertices: 6c030000 + - m_Vertices: 72030000 + - m_Vertices: 74030000 + - m_Vertices: 71030000c7030000 + - m_Vertices: 70030000c9030000 + - m_Vertices: 73030000c5030000 + - m_Vertices: 75030000c3030000 + - m_Vertices: 79030000df030000 + - m_Vertices: 7b030000dd030000 + - m_Vertices: 7d030000db030000 + - m_Vertices: 7f0300008b030000fb0400000a050000 + - m_Vertices: 800300008a030000 + - m_Vertices: 8203000088030000 + - m_Vertices: 8403000090030000 + - m_Vertices: 860300008e030000 + - m_Vertices: 8d030000460a0000 + - m_Vertices: 89030000450a0000 + - m_Vertices: 8c030000fa040000f6090000 + - m_Vertices: 91030000440a0000 + - m_Vertices: 8f030000430a0000 + - m_Vertices: 92030000420a0000 + - m_Vertices: 930300009d030000 + - m_Vertices: 94030000410a0000 + - m_Vertices: 950300009b030000 + - m_Vertices: 96030000400a0000 + - m_Vertices: 97030000a1030000 + - m_Vertices: 980300003f0a0000 + - m_Vertices: 990300009f030000 + - m_Vertices: a2030000ac030000 + - m_Vertices: a4030000aa030000 + - m_Vertices: a6030000b0030000 + - m_Vertices: a8030000ae030000 + - m_Vertices: ad0300003e0a0000 + - m_Vertices: ab0300003d0a0000 + - m_Vertices: b10300003c0a0000 + - m_Vertices: af0300003b0a0000 + - m_Vertices: b2030000bc030000 + - m_Vertices: b4030000ba030000 + - m_Vertices: b50300003a0a0000 + - m_Vertices: b3030000390a0000 + - m_Vertices: b6030000c0030000 + - m_Vertices: b8030000be030000 + - m_Vertices: b9030000380a0000 + - m_Vertices: b7030000370a0000 + - m_Vertices: c2030000cc030000 + - m_Vertices: c4030000ca030000 + - m_Vertices: c6030000d0030000 + - m_Vertices: c8030000ce030000 + - m_Vertices: cd030000360a0000 + - m_Vertices: cb030000350a0000 + - m_Vertices: d1030000340a0000 + - m_Vertices: cf030000330a0000 + - m_Vertices: d2030000dc030000 + - m_Vertices: d4030000da030000 + - m_Vertices: d5030000320a0000 + - m_Vertices: d3030000310a0000 + - m_Vertices: d6030000e0030000 + - m_Vertices: d8030000de030000 + - m_Vertices: d9030000300a0000 + - m_Vertices: d70300002f0a0000 + - m_Vertices: e2030000ec030000 + - m_Vertices: e4030000ea030000 + - m_Vertices: e6030000f0030000 + - m_Vertices: e8030000ee030000 + - m_Vertices: ed0300002e0a0000 + - m_Vertices: eb0300002d0a0000 + - m_Vertices: f10300002c0a0000 + - m_Vertices: ef0300002b0a0000 + - m_Vertices: f2030000f8030000 + - m_Vertices: f4030000f6030000 + - m_Vertices: f50300002a0a0000 + - m_Vertices: f3030000290a0000 + - m_Vertices: fa030000f1090000 + - m_Vertices: f2090000280a0000 + - m_Vertices: fc030000f80600000b070000f5090000 + - m_Vertices: fe0300006004000062050000e3050000 + - m_Vertices: ff0300005f040000 + - m_Vertices: 00040000980a0000 + - m_Vertices: 010400006305000072050000560a0000 + - m_Vertices: 020400005e040000 + - m_Vertices: 03040000970a0000 + - m_Vertices: 040400005d040000 + - m_Vertices: 05040000960a0000 + - m_Vertices: 060400005c040000 + - m_Vertices: 07040000950a0000 + - m_Vertices: 08040000930a0000 + - m_Vertices: 090400005a040000 + - m_Vertices: 0a040000940a0000 + - m_Vertices: 0b0400005b040000 + - m_Vertices: 0c040000910a0000 + - m_Vertices: 0d04000058040000 + - m_Vertices: 0e040000920a0000 + - m_Vertices: 0f04000059040000 + - m_Vertices: 1004000047040000 + - m_Vertices: 11040000900a0000 + - m_Vertices: 1204000046040000 + - m_Vertices: 130400008f0a0000 + - m_Vertices: 1404000045040000 + - m_Vertices: 150400008e0a0000 + - m_Vertices: 1604000044040000 + - m_Vertices: 170400008d0a0000 + - m_Vertices: 1804000043040000 + - m_Vertices: 190400008c0a0000 + - m_Vertices: 1a04000042040000 + - m_Vertices: 1b0400008b0a0000 + - m_Vertices: 1c04000041040000 + - m_Vertices: 1d0400008a0a0000 + - m_Vertices: 1e04000040040000 + - m_Vertices: 1f040000890a0000 + - m_Vertices: 2004000091040000 + - m_Vertices: 21040000880a0000 + - m_Vertices: 2204000090040000 + - m_Vertices: 23040000870a0000 + - m_Vertices: 240400008f040000 + - m_Vertices: 25040000860a0000 + - m_Vertices: 260400008e040000 + - m_Vertices: 27040000850a0000 + - m_Vertices: 280400008d040000 + - m_Vertices: 29040000840a0000 + - m_Vertices: 2a0400008c040000 + - m_Vertices: 2b040000830a0000 + - m_Vertices: 2c0400008b040000 + - m_Vertices: 2d040000820a0000 + - m_Vertices: 2e0400008a040000 + - m_Vertices: 2f040000810a0000 + - m_Vertices: 300400007c040000 + - m_Vertices: 31040000800a0000 + - m_Vertices: 320400007b040000 + - m_Vertices: 330400007f0a0000 + - m_Vertices: 340400007a040000 + - m_Vertices: 350400007e0a0000 + - m_Vertices: 3604000079040000 + - m_Vertices: 370400007d0a0000 + - m_Vertices: 3804000078040000 + - m_Vertices: 390400007c0a0000 + - m_Vertices: 3a04000077040000 + - m_Vertices: 3b0400007b0a0000 + - m_Vertices: 3c04000074040000 + - m_Vertices: 3d0400007a0a0000 + - m_Vertices: 3e040000730400003a06000051060000 + - m_Vertices: 3f0400003206000039060000790a0000 + - m_Vertices: 52040000 + - m_Vertices: 50040000 + - m_Vertices: 54040000 + - m_Vertices: 56040000 + - m_Vertices: 48040000 + - m_Vertices: 4a040000 + - m_Vertices: 4c040000 + - m_Vertices: 4e040000 + - m_Vertices: 6b040000 + - m_Vertices: 6d040000 + - m_Vertices: 6f040000 + - m_Vertices: 71040000 + - m_Vertices: 61040000 + - m_Vertices: 63040000 + - m_Vertices: 65040000 + - m_Vertices: 67040000 + - m_Vertices: 68040000e2050000ee050000 + - m_Vertices: 75040000 + - m_Vertices: 7604000045060000 + - m_Vertices: 86040000 + - m_Vertices: 88040000 + - m_Vertices: 7d040000 + - m_Vertices: 7f040000 + - m_Vertices: 81040000 + - m_Vertices: 83040000 + - m_Vertices: 9a040000 + - m_Vertices: 9c040000 + - m_Vertices: 9e040000 + - m_Vertices: a0040000 + - m_Vertices: 92040000 + - m_Vertices: 94040000 + - m_Vertices: 96040000 + - m_Vertices: 98040000 + - m_Vertices: a2040000 + - m_Vertices: a304000029070000d0090000 + - m_Vertices: a4040000 + - m_Vertices: a5040000 + - m_Vertices: a6040000d1090000d6090000 + - m_Vertices: a704000076070000d7090000 + - m_Vertices: a80400007207000075070000 + - m_Vertices: a90400005607000071070000 + - m_Vertices: aa040000 + - m_Vertices: ab040000 + - m_Vertices: ac040000 + - m_Vertices: ad040000 + - m_Vertices: ae040000450700004e070000 + - m_Vertices: af0400004607000055070000 + - m_Vertices: b0040000320700004d070000 + - m_Vertices: b10400002e07000031070000 + - m_Vertices: b20400007a0700007d070000 + - m_Vertices: b3040000 + - m_Vertices: b4040000 + - m_Vertices: b50400007e07000085070000 + - m_Vertices: b60400008607000091070000 + - m_Vertices: b70400003907000062070000 + - m_Vertices: b80400002d0700003a070000 + - m_Vertices: b9040000 + - m_Vertices: ba0400006107000082070000 + - m_Vertices: bb040000 + - m_Vertices: bc040000810700008e070000 + - m_Vertices: bd040000 + - m_Vertices: be040000 + - m_Vertices: bf040000 + - m_Vertices: c00400009e070000b0090000 + - m_Vertices: c1040000 + - m_Vertices: c20400008a0700008d070000 + - m_Vertices: c304000089070000aa070000 + - m_Vertices: c4040000a6070000a9070000 + - m_Vertices: c5040000af090000b4090000 + - m_Vertices: c6040000a5070000b3090000 + - m_Vertices: c7040000e9090000ee090000 + - m_Vertices: c804000035070000e8090000 + - m_Vertices: c9040000360700003d070000 + - m_Vertices: ca0400003e07000041070000 + - m_Vertices: cb040000250700002a070000 + - m_Vertices: cc04000026070000ef090000 + - m_Vertices: cd040000 + - m_Vertices: ce040000 + - m_Vertices: cf040000 + - m_Vertices: d0040000 + - m_Vertices: d1040000 + - m_Vertices: d2040000 + - m_Vertices: d3040000 + - m_Vertices: d4040000 + - m_Vertices: d50400004207000049070000 + - m_Vertices: d60400004a07000051070000 + - m_Vertices: d70400005207000059070000 + - m_Vertices: d80400005a07000065070000 + - m_Vertices: d90400002107000066070000 + - m_Vertices: da040000 + - m_Vertices: db040000 + - m_Vertices: dc040000 + - m_Vertices: dd040000 + - m_Vertices: de040000 + - m_Vertices: df040000 + - m_Vertices: e00400005d0700006a070000 + - m_Vertices: e10400005e07000079070000 + - m_Vertices: e2040000220700006d070000 + - m_Vertices: e3040000690700006e070000 + - m_Vertices: e4040000a1070000be070000 + - m_Vertices: e504000099070000a2070000 + - m_Vertices: e6040000b2070000b9070000 + - m_Vertices: e7040000ba070000c5070000 + - m_Vertices: e80400009a070000ad070000 + - m_Vertices: e9040000 + - m_Vertices: ea04000095070000ae070000 + - m_Vertices: eb040000 + - m_Vertices: ec0400009607000044090000 + - m_Vertices: ed0400004309000048090000 + - m_Vertices: ee040000b507000047090000 + - m_Vertices: ef040000 + - m_Vertices: f0040000 + - m_Vertices: f104000092070000b1070000 + - m_Vertices: f2040000 + - m_Vertices: f3040000 + - m_Vertices: f40400009d070000b6070000 + - m_Vertices: f5040000030500000605000012050000 + - m_Vertices: f604000002050000f8090000 + - m_Vertices: f7040000f9040000f7090000 + - m_Vertices: f8040000fc0400000705000009050000 + - m_Vertices: fd0400000e0500001505000025050000 + - m_Vertices: fe04000018050000fa090000 + - m_Vertices: ff04000001050000f9090000 + - m_Vertices: 00050000040500000f05000011050000 + - m_Vertices: 05050000130500008b0500008d050000 + - m_Vertices: 080500000c050000880500008c050000 + - m_Vertices: 0d050000260500009305000095050000 + - m_Vertices: 10050000140500009005000094050000 + - m_Vertices: 1605000019050000280500002c050000 + - m_Vertices: 170500001c050000fb090000 + - m_Vertices: 1a0500001d0500002b05000030050000 + - m_Vertices: 1b05000020050000fc090000 + - m_Vertices: 1e050000210500002f05000034050000 + - m_Vertices: 1f05000024050000fd090000 + - m_Vertices: 22050000330500003805000046050000 + - m_Vertices: 2705000029050000980500009c050000 + - m_Vertices: 2a0500002d0500009b0500009d050000 + - m_Vertices: 2e05000031050000a0050000a4050000 + - m_Vertices: 3205000035050000a3050000c5050000 + - m_Vertices: 3605000039050000c8050000cc050000 + - m_Vertices: 370500003c0500004705000049050000 + - m_Vertices: 3a0500003d050000cb050000cd050000 + - m_Vertices: 3b050000400500004a0500004e050000 + - m_Vertices: 3e05000041050000d0050000d4050000 + - m_Vertices: 3f050000440500004f05000051050000 + - m_Vertices: 4205000055050000d3050000d5050000 + - m_Vertices: 43050000520500005805000066050000 + - m_Vertices: 5605000059050000d8050000dc050000 + - m_Vertices: 570500005c0500006705000069050000 + - m_Vertices: 5a0500005d050000db050000dd050000 + - m_Vertices: 5b050000600500006a0500006e050000 + - m_Vertices: 5e05000061050000e0050000e4050000 + - m_Vertices: 5f050000640500006f05000071050000 + - m_Vertices: 680500006c05000071090000 + - m_Vertices: 6b0500006d05000072090000 + - m_Vertices: 700500007405000073090000 + - m_Vertices: 7305000074090000570a0000 + - m_Vertices: 760500009205000096050000ad050000 + - m_Vertices: 77050000790500008f05000091050000 + - m_Vertices: 7a050000830500008a0500008e050000 + - m_Vertices: 80050000840500008705000089050000 + - m_Vertices: 9705000099050000b0050000b4050000 + - m_Vertices: 9a0500009e050000aa050000b3050000 + - m_Vertices: 9f050000a1050000a7050000a9050000 + - m_Vertices: a2050000a6050000b8050000c6050000 + - m_Vertices: b7050000bc050000c7050000c9050000 + - m_Vertices: bb050000c0050000ca050000ce050000 + - m_Vertices: bf050000c4050000cf050000d1050000 + - m_Vertices: c3050000d2050000d6050000e5050000 + - m_Vertices: d7050000d9050000e8050000ec050000 + - m_Vertices: da050000de050000eb050000f2050000 + - m_Vertices: df050000e1050000ef050000f1050000 + - m_Vertices: f7050000f90500001c06000020060000 + - m_Vertices: f8050000fc0500000f060000d7070000 + - m_Vertices: fa0500001f06000097070000a0070000 + - m_Vertices: fb0500009f070000bc070000d3070000 + - m_Vertices: fd050000a40600004d080000 + - m_Vertices: fe050000050600004c080000 + - m_Vertices: ff05000001060000080600000c060000 + - m_Vertices: 0006000004060000a5060000a7060000 + - m_Vertices: 020600000b060000b0070000b7070000 + - m_Vertices: 03060000a806000090070000af070000 + - m_Vertices: 060600001506000052080000 + - m_Vertices: 07060000090600001806000045080000 + - m_Vertices: 0a060000b8070000c307000044080000 + - m_Vertices: 0d060000d0070000010800002b0800002c080000 + - m_Vertices: 10060000cf070000d60700002308000028080000 + - m_Vertices: 1106000036080000620800006308000019090000 + - m_Vertices: 12060000d2070000290800003408000018090000 + - m_Vertices: 13060000d1070000d80700002508000086080000 + - m_Vertices: 14060000dc070000350800003b0800005d080000 + - m_Vertices: 160600003808000051080000600800006b080000 + - m_Vertices: 1706000037080000410800005e080000 + - m_Vertices: 1a0600004f090000 + - m_Vertices: 1b0600001d060000 + - m_Vertices: 1e06000098070000ab070000 + - m_Vertices: 210600004e090000 + - m_Vertices: 2206000023060000 + - m_Vertices: 2406000093070000ac070000 + - m_Vertices: 25060000ab090000b7090000bd090000 + - m_Vertices: 2706000029060000 + - m_Vertices: 280600002c060000a7090000ac090000 + - m_Vertices: 2a060000a3070000b2090000 + - m_Vertices: 2b060000a8090000b6090000ba090000 + - m_Vertices: 2d060000400900004c090000a3090000 + - m_Vertices: 2e0600002f0600003c0900003f090000 + - m_Vertices: 300600003b09000041090000a0090000 + - m_Vertices: 310600003e090000a2090000780a0000 + - m_Vertices: 33060000350600003c06000040060000 + - m_Vertices: 34060000380600003a0900003d090000 + - m_Vertices: 360600003f060000b307000046090000 + - m_Vertices: 37060000390900004a0900009f090000 + - m_Vertices: 3b0600003d0600005206000056060000 + - m_Vertices: 3e060000550600009b070000b4070000 + - m_Vertices: 410600004d090000 + - m_Vertices: 4206000043060000 + - m_Vertices: 440600009407000045090000 + - m_Vertices: 46060000a9090000bc090000 + - m_Vertices: 4706000049060000a5090000aa090000 + - m_Vertices: 480600004c06000053060000 + - m_Vertices: 4a060000a6090000ad090000b9090000 + - m_Vertices: 4b060000540600009c070000b1090000 + - m_Vertices: 4d0600001f0a0000 + - m_Vertices: 4e060000f3060000b10800001e0a0000 + - m_Vertices: 4f060000f60600001e0900009d090000550a0000 + - m_Vertices: 500600009c090000 + - m_Vertices: 570600005a060000 + - m_Vertices: 58060000a4070000a7070000 + - m_Vertices: 5b06000068060000 + - m_Vertices: 5c06000087070000a8070000 + - m_Vertices: 5f06000061060000960600009a060000 + - m_Vertices: 60060000640600006706000069060000 + - m_Vertices: 62060000990600007f0700008c070000 + - m_Vertices: 630600006a060000880700008b070000 + - m_Vertices: 6b060000000700005b080000 + - m_Vertices: 6c0600008b060000490800005a080000 + - m_Vertices: 6d0600006f0600008e06000092060000 + - m_Vertices: 6e060000720600000107000003070000 + - m_Vertices: 7006000091060000780700007b070000 + - m_Vertices: 71060000040700005c07000077070000 + - m_Vertices: 73060000200a0000 + - m_Vertices: 740600009b090000 + - m_Vertices: 77060000c0060000c4060000 + - m_Vertices: 760600007a0600007d0600007f060000 + - m_Vertices: 78060000c30600002c0700002f070000 + - m_Vertices: 79060000800600002b07000038070000 + - m_Vertices: 7e060000820600008506000087060000 + - m_Vertices: 81060000880600003707000060070000 + - m_Vertices: 860600008a0600009506000097060000 + - m_Vertices: 89060000980600005f07000080070000 + - m_Vertices: 8c0600009b060000480800004f080000 + - m_Vertices: 8d0600008f0600009e060000a2060000 + - m_Vertices: 90060000a10600007c07000083070000 + - m_Vertices: 9c060000a30600004e080000 + - m_Vertices: 9d0600009f060000a6060000aa060000 + - m_Vertices: a0060000a9060000840700008f070000 + - m_Vertices: ab060000210a0000 + - m_Vertices: ac0600009a090000 + - m_Vertices: ad060000220a0000 + - m_Vertices: ae06000099090000 + - m_Vertices: af060000250a0000 + - m_Vertices: b006000096090000 + - m_Vertices: b1060000230a0000 + - m_Vertices: b206000098090000 + - m_Vertices: b5060000b7060000fa060000fe060000 + - m_Vertices: b6060000ba060000e5060000e7060000 + - m_Vertices: b8060000fd0600002307000028070000 + - m_Vertices: b9060000e806000027070000cf090000 + - m_Vertices: bb060000e5090000260a00004b0a0000 + - m_Vertices: bc06000095090000e1090000e6090000 + - m_Vertices: bd060000240a0000 + - m_Vertices: be06000097090000 + - m_Vertices: c1060000cc060000d0060000 + - m_Vertices: c2060000cf060000300700004b070000 + - m_Vertices: c7060000d2060000d6060000 + - m_Vertices: c6060000ca060000cd060000 + - m_Vertices: c8060000d50600004407000053070000 + - m_Vertices: c9060000ce060000430700004c070000 + - m_Vertices: d3060000d8060000dc060000 + - m_Vertices: d4060000db060000540700006f070000 + - m_Vertices: d9060000de060000e2060000 + - m_Vertices: da060000e10600007007000073070000 + - m_Vertices: df060000ee060000f2060000 + - m_Vertices: e0060000f106000074070000d8090000 + - m_Vertices: e3060000c0090000cd090000d9090000 + - m_Vertices: e6060000ea060000bf090000c4090000 + - m_Vertices: e9060000c3090000d3090000dc090000 + - m_Vertices: ec060000c2090000da090000 + - m_Vertices: ed060000ef060000c1090000c6090000 + - m_Vertices: f0060000c5090000d4090000dd090000 + - m_Vertices: f40600007f080000b00800002a09000035090000 + - m_Vertices: f5060000800800001f09000036090000 + - m_Vertices: f9060000fb0600000e07000012070000 + - m_Vertices: fc0600001107000024070000f0090000 + - m_Vertices: ff060000080700005c080000 + - m_Vertices: 02070000060700000907000053080000 + - m_Vertices: 050700005b0700006807000054080000 + - m_Vertices: 070700003e080000580800007108000072080000 + - m_Vertices: 0a0700003d080000570800006c080000 + - m_Vertices: 0c070000e3090000f40900004a0a0000 + - m_Vertices: 0d0700000f070000df090000e4090000 + - m_Vertices: 10070000e0090000ec090000470a0000 + - m_Vertices: 1307000081080000150900002c0900002d090000 + - m_Vertices: 14070000400800006f0800007a08000014090000 + - m_Vertices: 150700003f0800006d08000023090000 + - m_Vertices: 16070000820800002209000037090000 + - m_Vertices: 17070000c4070000c707000043080000 + - m_Vertices: 1807000039080000420800005f080000 + - m_Vertices: 19070000c8070000cb07000090080000 + - m_Vertices: 1a0700003a0800008b080000 + - m_Vertices: 1b070000bd070000c2070000 + - m_Vertices: 1c070000c6070000c9070000 + - m_Vertices: 1d070000c1070000ce070000 + - m_Vertices: 1e070000ca070000cd070000 + - m_Vertices: 1f070000640700001d090000540a0000 + - m_Vertices: 200700006b0700001c09000026090000 + - m_Vertices: 330700009e090000e70900004d0a0000 + - m_Vertices: 340700003b0700004e0a0000 + - m_Vertices: 3c0700003f0700004f0a0000 + - m_Vertices: 4007000047070000500a0000 + - m_Vertices: 480700004f070000510a0000 + - m_Vertices: 5007000057070000520a0000 + - m_Vertices: 5807000063070000530a0000 + - m_Vertices: 670700006c0700005508000025090000 + - m_Vertices: bb070000c0070000d4070000dd070000 + - m_Vertices: bf070000cc070000de0700008f080000 + - m_Vertices: d5070000e10700002608000088080000 + - m_Vertices: d90700007b0800008508000027090000 + - m_Vertices: da0700007c0800008d080000 + - m_Vertices: db0700003c0800008c080000 + - m_Vertices: df0700007e0800008e080000 + - m_Vertices: e00700007d0800008908000028090000 + - m_Vertices: 020800002e0800002f08000012090000 + - m_Vertices: 0308000011090000 + - m_Vertices: 0408000010090000 + - m_Vertices: 050800000f090000 + - m_Vertices: 060800000e090000 + - m_Vertices: 070800000d090000 + - m_Vertices: 080800000c090000 + - m_Vertices: 090800000b090000 + - m_Vertices: 0a0800000a090000 + - m_Vertices: 0b08000009090000 + - m_Vertices: 0c08000008090000 + - m_Vertices: 0d08000007090000 + - m_Vertices: 0e08000006090000 + - m_Vertices: 0f08000005090000 + - m_Vertices: 1008000004090000 + - m_Vertices: 1108000003090000 + - m_Vertices: 1208000002090000 + - m_Vertices: 1308000001090000 + - m_Vertices: 1408000000090000 + - m_Vertices: 15080000ff080000 + - m_Vertices: 16080000fe080000 + - m_Vertices: 17080000fd080000 + - m_Vertices: 18080000fc080000 + - m_Vertices: 19080000fb080000 + - m_Vertices: 1a080000fa080000 + - m_Vertices: 1b080000f9080000 + - m_Vertices: 1c080000f8080000 + - m_Vertices: 1d080000f7080000 + - m_Vertices: 1e080000f6080000 + - m_Vertices: 1f080000f5080000 + - m_Vertices: 20080000f4080000 + - m_Vertices: 24080000270800008308000087080000 + - m_Vertices: 2a0800002d0800003008000033080000 + - m_Vertices: 31080000320800001309000017090000 + - m_Vertices: 4608000065080000660800001a090000 + - m_Vertices: 47080000500800006808000069080000 + - m_Vertices: 4a080000590800007408000075080000 + - m_Vertices: 4b08000077080000780800001b090000 + - m_Vertices: 560800006e08000024090000 + - m_Vertices: 6108000064080000670800006a080000 + - m_Vertices: 70080000730800007608000079080000 + - m_Vertices: 840800008a08000029090000 + - m_Vertices: 91080000f1080000 + - m_Vertices: 92080000f0080000 + - m_Vertices: 93080000ef080000 + - m_Vertices: 94080000ee080000 + - m_Vertices: 95080000ed080000 + - m_Vertices: 96080000ec080000 + - m_Vertices: 97080000eb080000 + - m_Vertices: 98080000ea080000 + - m_Vertices: 99080000e9080000 + - m_Vertices: 9a080000e8080000 + - m_Vertices: 9b080000e7080000 + - m_Vertices: 9c080000e6080000 + - m_Vertices: 9d080000e5080000 + - m_Vertices: 9e080000e4080000 + - m_Vertices: 9f080000e3080000 + - m_Vertices: a0080000e2080000 + - m_Vertices: a1080000e1080000 + - m_Vertices: a2080000e0080000 + - m_Vertices: a3080000df080000 + - m_Vertices: a4080000de080000 + - m_Vertices: a5080000dd080000 + - m_Vertices: a6080000dc080000 + - m_Vertices: a7080000db080000 + - m_Vertices: a8080000da080000 + - m_Vertices: a9080000d9080000 + - m_Vertices: aa080000d8080000 + - m_Vertices: ab080000d7080000 + - m_Vertices: ac080000d6080000 + - m_Vertices: ad080000d5080000 + - m_Vertices: ae080000d4080000 + - m_Vertices: af080000d30800003209000033090000 + - m_Vertices: b20800001d0a0000 + - m_Vertices: b30800001c0a0000 + - m_Vertices: b40800001b0a0000 + - m_Vertices: b50800001a0a0000 + - m_Vertices: b6080000190a0000 + - m_Vertices: b7080000180a0000 + - m_Vertices: b8080000170a0000 + - m_Vertices: b9080000160a0000 + - m_Vertices: ba080000150a0000 + - m_Vertices: bb080000140a0000 + - m_Vertices: bc080000130a0000 + - m_Vertices: bd080000120a0000 + - m_Vertices: be080000110a0000 + - m_Vertices: bf080000100a0000 + - m_Vertices: c00800000f0a0000 + - m_Vertices: c10800000e0a0000 + - m_Vertices: c20800000d0a0000 + - m_Vertices: c30800000c0a0000 + - m_Vertices: c40800000b0a0000 + - m_Vertices: c50800000a0a0000 + - m_Vertices: c6080000090a0000 + - m_Vertices: c7080000080a0000 + - m_Vertices: c8080000070a0000 + - m_Vertices: c9080000060a0000 + - m_Vertices: ca080000050a0000 + - m_Vertices: cb080000040a0000 + - m_Vertices: cc080000030a0000 + - m_Vertices: cd080000020a0000 + - m_Vertices: ce080000010a0000 + - m_Vertices: cf080000000a0000 + - m_Vertices: d2080000160900002f09000030090000 + - m_Vertices: 200900002109000038090000 + - m_Vertices: 2b0900002e0900003109000034090000 + - m_Vertices: 4209000049090000a1090000 + - m_Vertices: 4b090000a4090000770a0000 + - m_Vertices: 75090000580a0000 + - m_Vertices: 76090000590a0000 + - m_Vertices: 770900005a0a0000 + - m_Vertices: 780900005b0a0000 + - m_Vertices: 790900005c0a0000 + - m_Vertices: 7a0900005d0a0000 + - m_Vertices: 7b0900005e0a0000 + - m_Vertices: 7c0900005f0a0000 + - m_Vertices: 7d090000600a0000 + - m_Vertices: 7e090000610a0000 + - m_Vertices: 7f090000620a0000 + - m_Vertices: 80090000630a0000 + - m_Vertices: 81090000640a0000 + - m_Vertices: 82090000650a0000 + - m_Vertices: 83090000660a0000 + - m_Vertices: 84090000670a0000 + - m_Vertices: 85090000680a0000 + - m_Vertices: 86090000690a0000 + - m_Vertices: 870900006a0a0000 + - m_Vertices: 880900006b0a0000 + - m_Vertices: 890900006c0a0000 + - m_Vertices: 8a0900006d0a0000 + - m_Vertices: 8b0900006e0a0000 + - m_Vertices: 8c0900006f0a0000 + - m_Vertices: 8d090000700a0000 + - m_Vertices: 8e090000710a0000 + - m_Vertices: 8f090000720a0000 + - m_Vertices: 90090000730a0000 + - m_Vertices: 91090000740a0000 + - m_Vertices: 92090000750a0000 + - m_Vertices: 93090000760a0000 + - m_Vertices: 94090000e2090000eb090000480a0000 + - m_Vertices: ae090000b5090000bb090000 + - m_Vertices: b8090000be090000 + - m_Vertices: ce090000db090000 + - m_Vertices: d2090000d5090000de090000 + - m_Vertices: ea090000ed090000490a0000 + - m_Vertices: f3090000270a00004c0a0000 + m_SharedTextures: [] + m_Positions: + - {x: -3.536171, y: 0, z: 2.774189} + - {x: -3.536171, y: 0.03125, z: 2.774189} + - {x: 0.24686718, y: 0, z: 2.774189} + - {x: 0.4937334, y: 0, z: 2.774189} + - {x: 0.4937334, y: 0.03125, z: 2.774189} + - {x: 0.24686718, y: 0.03125, z: 2.774189} + - {x: 0.4937334, y: 0.0625, z: 2.774189} + - {x: 0.24686718, y: 0.0625, z: 2.774189} + - {x: -3.536171, y: 0.0625, z: 2.774189} + - {x: 0.74059963, y: 0, z: 2.774189} + - {x: 0.74059963, y: 0.03125, z: 2.774189} + - {x: 0.9874668, y: 0, z: 2.774189} + - {x: 0.9874668, y: 0.03125, z: 2.774189} + - {x: 0.9874668, y: 0.0625, z: 2.774189} + - {x: 0.74059963, y: 0.0625, z: 2.774189} + - {x: 0.74059963, y: 0.09375, z: 2.774189} + - {x: 0.9874668, y: 0.09375, z: 2.774189} + - {x: 0.9874668, y: 0.125, z: 2.774189} + - {x: 0.74059963, y: 0.125, z: 2.774189} + - {x: -3.536171, y: 0.09375, z: 2.774189} + - {x: 0.4937334, y: 0.09375, z: 2.774189} + - {x: 0.24686718, y: 0.09375, z: 2.774189} + - {x: 0.4937334, y: 0.125, z: 2.774189} + - {x: 0.24686718, y: 0.125, z: 2.774189} + - {x: -3.536171, y: 0.125, z: 2.774189} + - {x: -3.536171, y: 0.15625, z: 2.774189} + - {x: 0.4937334, y: 0.15625, z: 2.774189} + - {x: 0.24686718, y: 0.15625, z: 2.774189} + - {x: 0.4937334, y: 0.1875, z: 2.774189} + - {x: 0.24686718, y: 0.1875, z: 2.774189} + - {x: -3.536171, y: 0.1875, z: 2.774189} + - {x: 0.74059963, y: 0.15625, z: 2.774189} + - {x: 0.9874668, y: 0.15625, z: 2.774189} + - {x: 0.9874668, y: 0.1875, z: 2.774189} + - {x: 0.74059963, y: 0.1875, z: 2.774189} + - {x: 0.74059963, y: 0.21875, z: 2.774189} + - {x: 0.9874668, y: 0.21875, z: 2.774189} + - {x: 0.9874668, y: 0.25, z: 2.774189} + - {x: 0.74059963, y: 0.25, z: 2.774189} + - {x: 0.24686718, y: 0.21875, z: 2.774189} + - {x: -3.536171, y: 0.21875, z: 2.774189} + - {x: 0.4937334, y: 0.21875, z: 2.774189} + - {x: 0.4937334, y: 0.25, z: 2.774189} + - {x: 0.24686718, y: 0.25, z: 2.774189} + - {x: -3.536171, y: 0.25, z: 2.774189} + - {x: 0.9874668, y: 0.0625, z: 2.774189} + - {x: 0.9874668, y: 0.03125, z: 2.774189} + - {x: 5.4768515, y: 0.03125, z: 2.774189} + - {x: 5.476851, y: 0.0625, z: 2.774189} + - {x: 0.9874668, y: 0, z: 2.774189} + - {x: 5.4768515, y: 0, z: 2.774189} + - {x: 5.4768515, y: 0, z: 2.774189} + - {x: 9.966236, y: 0, z: 2.774189} + - {x: 9.966236, y: 0.03125, z: 2.774189} + - {x: 5.4768515, y: 0.03125, z: 2.774189} + - {x: 9.966235, y: 0.0625, z: 2.774189} + - {x: 5.476851, y: 0.0625, z: 2.774189} + - {x: 9.966236, y: 0, z: 2.774189} + - {x: 13.933051, y: 0, z: 2.774189} + - {x: 13.933051, y: 0.03125, z: 2.774189} + - {x: 9.966236, y: 0.03125, z: 2.774189} + - {x: 13.933051, y: 0, z: 2.774189} + - {x: 23.981503, y: 0, z: 2.774189} + - {x: 23.981503, y: 0.03125, z: 2.774189} + - {x: 23.981503, y: 0.0625, z: 2.774189} + - {x: 13.933051, y: 0.0625, z: 2.774189} + - {x: 13.933051, y: 0.03125, z: 2.774189} + - {x: 13.933051, y: 0.0625, z: 2.774189} + - {x: 9.966235, y: 0.0625, z: 2.774189} + - {x: 9.966236, y: 0.125, z: 2.774189} + - {x: 13.933051, y: 0.125, z: 2.774189} + - {x: 9.966236, y: 0.09375, z: 2.774189} + - {x: 13.933051, y: 0.09375, z: 2.774189} + - {x: 23.981503, y: 0.09375, z: 2.774189} + - {x: 13.933051, y: 0.09375, z: 2.774189} + - {x: 23.981503, y: 0.125, z: 2.774189} + - {x: 13.933051, y: 0.125, z: 2.774189} + - {x: 0.9874668, y: 0.125, z: 2.774189} + - {x: 5.4768515, y: 0.125, z: 2.774189} + - {x: 0.9874668, y: 0.09375, z: 2.774189} + - {x: 5.4768515, y: 0.09375, z: 2.774189} + - {x: 9.966236, y: 0.09375, z: 2.774189} + - {x: 5.4768515, y: 0.09375, z: 2.774189} + - {x: 9.966236, y: 0.125, z: 2.774189} + - {x: 5.4768515, y: 0.125, z: 2.774189} + - {x: 0.9874668, y: 0.1875, z: 2.774189} + - {x: 5.476851, y: 0.1875, z: 2.774189} + - {x: 0.9874668, y: 0.15625, z: 2.774189} + - {x: 5.4768515, y: 0.15625, z: 2.774189} + - {x: 9.966236, y: 0.15625, z: 2.774189} + - {x: 5.4768515, y: 0.15625, z: 2.774189} + - {x: 9.966235, y: 0.1875, z: 2.774189} + - {x: 5.476851, y: 0.1875, z: 2.774189} + - {x: 13.933051, y: 0.15625, z: 2.774189} + - {x: 9.966236, y: 0.15625, z: 2.774189} + - {x: 23.981503, y: 0.15625, z: 2.774189} + - {x: 13.933051, y: 0.15625, z: 2.774189} + - {x: 23.981503, y: 0.1875, z: 2.774189} + - {x: 13.933051, y: 0.1875, z: 2.774189} + - {x: 13.933051, y: 0.1875, z: 2.774189} + - {x: 9.966235, y: 0.1875, z: 2.774189} + - {x: 9.966236, y: 0.25, z: 2.774189} + - {x: 13.933051, y: 0.25, z: 2.774189} + - {x: 9.966236, y: 0.21875, z: 2.774189} + - {x: 13.933051, y: 0.21875, z: 2.774189} + - {x: 23.981503, y: 0.21875, z: 2.774189} + - {x: 13.933051, y: 0.21875, z: 2.774189} + - {x: 23.981503, y: 0.25, z: 2.774189} + - {x: 13.933051, y: 0.25, z: 2.774189} + - {x: 0.9874668, y: 0.25, z: 2.774189} + - {x: 5.4768515, y: 0.25, z: 2.774189} + - {x: 0.9874668, y: 0.21875, z: 2.774189} + - {x: 5.4768515, y: 0.21875, z: 2.774189} + - {x: 9.966236, y: 0.21875, z: 2.774189} + - {x: 5.4768515, y: 0.21875, z: 2.774189} + - {x: 9.966236, y: 0.25, z: 2.774189} + - {x: 5.4768515, y: 0.25, z: 2.774189} + - {x: 0.9874668, y: 0.3125, z: 2.774189} + - {x: 5.476851, y: 0.3125, z: 2.774189} + - {x: 0.9874668, y: 0.28125, z: 2.774189} + - {x: 5.4768515, y: 0.28125, z: 2.774189} + - {x: 9.966236, y: 0.28125, z: 2.774189} + - {x: 5.4768515, y: 0.28125, z: 2.774189} + - {x: 9.966235, y: 0.3125, z: 2.774189} + - {x: 5.476851, y: 0.3125, z: 2.774189} + - {x: 13.933051, y: 0.28125, z: 2.774189} + - {x: 9.966236, y: 0.28125, z: 2.774189} + - {x: 23.981503, y: 0.28125, z: 2.774189} + - {x: 13.933051, y: 0.28125, z: 2.774189} + - {x: 23.981503, y: 0.3125, z: 2.774189} + - {x: 13.933051, y: 0.3125, z: 2.774189} + - {x: 13.933051, y: 0.3125, z: 2.774189} + - {x: 9.966235, y: 0.3125, z: 2.774189} + - {x: 9.966236, y: 0.375, z: 2.774189} + - {x: 13.933051, y: 0.375, z: 2.774189} + - {x: 9.966236, y: 0.34375, z: 2.774189} + - {x: 13.933051, y: 0.34375, z: 2.774189} + - {x: 23.981503, y: 0.34375, z: 2.774189} + - {x: 13.933051, y: 0.34375, z: 2.774189} + - {x: 23.981503, y: 0.375, z: 2.774189} + - {x: 13.933051, y: 0.375, z: 2.774189} + - {x: 0.9874668, y: 0.375, z: 2.774189} + - {x: 5.4768515, y: 0.375, z: 2.774189} + - {x: 0.9874668, y: 0.34375, z: 2.774189} + - {x: 5.4768515, y: 0.34375, z: 2.774189} + - {x: 9.966236, y: 0.34375, z: 2.774189} + - {x: 5.4768515, y: 0.34375, z: 2.774189} + - {x: 9.966236, y: 0.375, z: 2.774189} + - {x: 5.4768515, y: 0.375, z: 2.774189} + - {x: 0.9874668, y: 0.4375, z: 2.774189} + - {x: 5.476851, y: 0.4375, z: 2.774189} + - {x: 0.9874668, y: 0.40625, z: 2.774189} + - {x: 5.4768515, y: 0.40625, z: 2.774189} + - {x: 9.966236, y: 0.40625, z: 2.774189} + - {x: 5.4768515, y: 0.40625, z: 2.774189} + - {x: 9.966235, y: 0.4375, z: 2.774189} + - {x: 5.476851, y: 0.4375, z: 2.774189} + - {x: 13.933051, y: 0.40625, z: 2.774189} + - {x: 9.966236, y: 0.40625, z: 2.774189} + - {x: 23.981503, y: 0.40625, z: 2.774189} + - {x: 13.933051, y: 0.40625, z: 2.774189} + - {x: 23.981503, y: 0.4375, z: 2.774189} + - {x: 13.933051, y: 0.4375, z: 2.774189} + - {x: 13.933051, y: 0.4375, z: 2.774189} + - {x: 9.966235, y: 0.4375, z: 2.774189} + - {x: 9.966236, y: 0.5, z: 2.774189} + - {x: 13.933051, y: 0.5, z: 2.774189} + - {x: 9.966236, y: 0.46875, z: 2.774189} + - {x: 13.933051, y: 0.46875, z: 2.774189} + - {x: 23.981503, y: 0.46875, z: 2.774189} + - {x: 13.933051, y: 0.46875, z: 2.774189} + - {x: 23.981503, y: 0.5, z: 2.774189} + - {x: 13.933051, y: 0.5, z: 2.774189} + - {x: 0.9874668, y: 0.5, z: 2.774189} + - {x: 5.4768515, y: 0.5, z: 2.774189} + - {x: 0.9874668, y: 0.46875, z: 2.774189} + - {x: 5.4768515, y: 0.46875, z: 2.774189} + - {x: 9.966236, y: 0.46875, z: 2.774189} + - {x: 5.4768515, y: 0.46875, z: 2.774189} + - {x: 9.966236, y: 0.5, z: 2.774189} + - {x: 5.4768515, y: 0.5, z: 2.774189} + - {x: -3.536171, y: 0.28125, z: 2.774189} + - {x: 0.4937334, y: 0.28125, z: 2.774189} + - {x: 0.24686718, y: 0.28125, z: 2.774189} + - {x: 0.4937334, y: 0.3125, z: 2.774189} + - {x: 0.24686718, y: 0.3125, z: 2.774189} + - {x: -3.536171, y: 0.3125, z: 2.774189} + - {x: 0.9874668, y: 0.28125, z: 2.774189} + - {x: 0.74059963, y: 0.28125, z: 2.774189} + - {x: 0.9874668, y: 0.3125, z: 2.774189} + - {x: 0.74059963, y: 0.3125, z: 2.774189} + - {x: 0.4937334, y: 0.34375, z: 2.774189} + - {x: 0.9874668, y: 0.34375, z: 2.774189} + - {x: 0.74059963, y: 0.34375, z: 2.774189} + - {x: 0.9874668, y: 0.375, z: 2.774189} + - {x: 0.74059963, y: 0.375, z: 2.774189} + - {x: 0.4937334, y: 0.375, z: 2.774189} + - {x: 0.24686718, y: 0.34375, z: 2.774189} + - {x: -3.536171, y: 0.34375, z: 2.774189} + - {x: 0.24686718, y: 0.375, z: 2.774189} + - {x: -3.536171, y: 0.375, z: 2.774189} + - {x: -3.536171, y: 0.40625, z: 2.774189} + - {x: 0.24686718, y: 0.40625, z: 2.774189} + - {x: 0.24686718, y: 0.4375, z: 2.774189} + - {x: -3.536171, y: 0.4375, z: 2.774189} + - {x: 0.4937334, y: 0.40625, z: 2.774189} + - {x: 0.9874668, y: 0.40625, z: 2.774189} + - {x: 0.74059963, y: 0.40625, z: 2.774189} + - {x: 0.9874668, y: 0.4375, z: 2.774189} + - {x: 0.74059963, y: 0.4375, z: 2.774189} + - {x: 0.4937334, y: 0.4375, z: 2.774189} + - {x: 0.4937334, y: 0.46875, z: 2.774189} + - {x: 0.9874668, y: 0.46875, z: 2.774189} + - {x: 0.74059963, y: 0.46875, z: 2.774189} + - {x: 0.9874668, y: 0.5, z: 2.774189} + - {x: 0.74059963, y: 0.5, z: 2.774189} + - {x: 0.4937334, y: 0.5, z: 2.774189} + - {x: -3.536171, y: 0.46875, z: 2.774189} + - {x: 0.24686718, y: 0.46875, z: 2.774189} + - {x: 0.24686718, y: 0.5, z: 2.774189} + - {x: -3.536171, y: 0.5, z: 2.774189} + - {x: 23.981503, y: 0.1875, z: 2.774189} + - {x: 23.981503, y: 0.15625, z: 2.774189} + - {x: 24.108814, y: 0.15625, z: 2.774189} + - {x: 24.108814, y: 0.1875, z: 2.774189} + - {x: 24.23613, y: 0.1875, z: 2.774189} + - {x: 24.23613, y: 0.15625, z: 2.774189} + - {x: 24.363441, y: 0.15625, z: 2.774189} + - {x: 24.363441, y: 0.1875, z: 2.774189} + - {x: 24.23613, y: 0.21875, z: 2.774189} + - {x: 24.363441, y: 0.21875, z: 2.774189} + - {x: 24.363441, y: 0.25, z: 2.774189} + - {x: 24.236126, y: 0.25, z: 2.774189} + - {x: 23.981503, y: 0.25, z: 2.774189} + - {x: 23.981503, y: 0.21875, z: 2.774189} + - {x: 24.108814, y: 0.21875, z: 2.774189} + - {x: 24.108814, y: 0.25, z: 2.774189} + - {x: 23.981503, y: 0.09375, z: 2.774189} + - {x: 24.108814, y: 0.09375, z: 2.774189} + - {x: 24.108814, y: 0.125, z: 2.774189} + - {x: 23.981503, y: 0.125, z: 2.774189} + - {x: 23.981503, y: 0.0625, z: 2.774189} + - {x: 23.981503, y: 0.03125, z: 2.774189} + - {x: 23.981503, y: 0, z: 2.774189} + - {x: 24.108814, y: 0, z: 2.774189} + - {x: 24.108814, y: 0.03125, z: 2.774189} + - {x: 24.108814, y: 0.0625, z: 2.774189} + - {x: 24.236126, y: 0, z: 2.774189} + - {x: 24.236126, y: 0.03125, z: 2.774189} + - {x: 24.363438, y: 0, z: 2.774189} + - {x: 24.363438, y: 0.03125, z: 2.774189} + - {x: 24.363441, y: 0.0625, z: 2.774189} + - {x: 24.236126, y: 0.0625, z: 2.774189} + - {x: 24.236126, y: 0.09375, z: 2.774189} + - {x: 24.363441, y: 0.09375, z: 2.774189} + - {x: 24.363441, y: 0.125, z: 2.774189} + - {x: 24.236126, y: 0.125, z: 2.774189} + - {x: 24.490753, y: 0.15625, z: 2.774189} + - {x: 24.618065, y: 0.15625, z: 2.774189} + - {x: 24.618065, y: 0.1875, z: 2.774189} + - {x: 24.490753, y: 0.1875, z: 2.774189} + - {x: 24.745377, y: 0.15625, z: 2.774189} + - {x: 28.211613, y: 0.15625, z: 2.774187} + - {x: 24.872688, y: 0.15625, z: 2.774189} + - {x: 28.211613, y: 0.1875, z: 2.774187} + - {x: 24.872688, y: 0.1875, z: 2.774189} + - {x: 24.745377, y: 0.1875, z: 2.774189} + - {x: 24.745377, y: 0.21875, z: 2.774189} + - {x: 28.211613, y: 0.21875, z: 2.774187} + - {x: 24.872688, y: 0.21875, z: 2.774189} + - {x: 28.211613, y: 0.25, z: 2.774187} + - {x: 24.872688, y: 0.25, z: 2.774189} + - {x: 24.745377, y: 0.25, z: 2.774189} + - {x: 24.490753, y: 0.21875, z: 2.774189} + - {x: 24.618065, y: 0.21875, z: 2.774189} + - {x: 24.618065, y: 0.25, z: 2.774189} + - {x: 24.490753, y: 0.25, z: 2.774189} + - {x: 24.490753, y: 0.09375, z: 2.774189} + - {x: 24.618065, y: 0.09375, z: 2.774189} + - {x: 24.618065, y: 0.125, z: 2.774189} + - {x: 24.490753, y: 0.125, z: 2.774189} + - {x: 24.490753, y: 0.0625, z: 2.774189} + - {x: 24.490753, y: 0.03125, z: 2.774189} + - {x: 24.49075, y: 0, z: 2.774189} + - {x: 24.618065, y: 0, z: 2.774189} + - {x: 24.618065, y: 0.03125, z: 2.774189} + - {x: 24.618065, y: 0.0625, z: 2.774189} + - {x: 24.745377, y: 0, z: 2.774189} + - {x: 24.745377, y: 0.03125, z: 2.774189} + - {x: 24.872688, y: 0, z: 2.774189} + - {x: 28.211613, y: 0, z: 2.774187} + - {x: 28.211613, y: 0.03125, z: 2.774187} + - {x: 24.872688, y: 0.03125, z: 2.774189} + - {x: 28.211613, y: 0.0625, z: 2.774187} + - {x: 24.872688, y: 0.0625, z: 2.774189} + - {x: 24.745377, y: 0.0625, z: 2.774189} + - {x: 24.745377, y: 0.09375, z: 2.774189} + - {x: 28.211613, y: 0.09375, z: 2.774187} + - {x: 24.872688, y: 0.09375, z: 2.774189} + - {x: 28.211613, y: 0.125, z: 2.774187} + - {x: 24.872688, y: 0.125, z: 2.774189} + - {x: 24.745377, y: 0.125, z: 2.774189} + - {x: 24.490753, y: 0.28125, z: 2.774189} + - {x: 24.618065, y: 0.28125, z: 2.774189} + - {x: 24.618065, y: 0.3125, z: 2.774189} + - {x: 24.490753, y: 0.3125, z: 2.774189} + - {x: 24.745377, y: 0.28125, z: 2.774189} + - {x: 28.211613, y: 0.28125, z: 2.774187} + - {x: 24.872688, y: 0.28125, z: 2.774189} + - {x: 28.211613, y: 0.3125, z: 2.774187} + - {x: 24.872688, y: 0.3125, z: 2.774189} + - {x: 24.745377, y: 0.3125, z: 2.774189} + - {x: 24.745377, y: 0.34375, z: 2.774189} + - {x: 28.211613, y: 0.34375, z: 2.774187} + - {x: 24.872688, y: 0.34375, z: 2.774189} + - {x: 28.211613, y: 0.375, z: 2.774187} + - {x: 24.872688, y: 0.375, z: 2.774189} + - {x: 24.745377, y: 0.375, z: 2.774189} + - {x: 24.490753, y: 0.34375, z: 2.774189} + - {x: 24.618065, y: 0.34375, z: 2.774189} + - {x: 24.618065, y: 0.375, z: 2.774189} + - {x: 24.490753, y: 0.375, z: 2.774189} + - {x: 24.490753, y: 0.40625, z: 2.774189} + - {x: 24.618065, y: 0.40625, z: 2.774189} + - {x: 24.618065, y: 0.4375, z: 2.774189} + - {x: 24.490753, y: 0.4375, z: 2.774189} + - {x: 24.745377, y: 0.40625, z: 2.774189} + - {x: 28.211613, y: 0.40625, z: 2.774187} + - {x: 24.872688, y: 0.40625, z: 2.774189} + - {x: 28.211613, y: 0.4375, z: 2.774187} + - {x: 24.872688, y: 0.4375, z: 2.774189} + - {x: 24.745377, y: 0.4375, z: 2.774189} + - {x: 24.745377, y: 0.46875, z: 2.774189} + - {x: 28.211613, y: 0.46875, z: 2.774187} + - {x: 24.872688, y: 0.46875, z: 2.774189} + - {x: 28.211613, y: 0.5, z: 2.774187} + - {x: 24.872688, y: 0.5, z: 2.774189} + - {x: 24.745377, y: 0.5, z: 2.774189} + - {x: 24.490753, y: 0.46875, z: 2.774189} + - {x: 24.618065, y: 0.46875, z: 2.774189} + - {x: 24.618065, y: 0.5, z: 2.774189} + - {x: 24.49075, y: 0.5, z: 2.774189} + - {x: 23.981503, y: 0.5, z: 2.774189} + - {x: 23.981503, y: 0.46875, z: 2.774189} + - {x: 24.108814, y: 0.46875, z: 2.774189} + - {x: 24.108814, y: 0.5, z: 2.774189} + - {x: 23.981503, y: 0.40625, z: 2.774189} + - {x: 24.108814, y: 0.40625, z: 2.774189} + - {x: 24.108814, y: 0.4375, z: 2.774189} + - {x: 23.981503, y: 0.4375, z: 2.774189} + - {x: 24.236126, y: 0.40625, z: 2.774189} + - {x: 24.363441, y: 0.40625, z: 2.774189} + - {x: 24.363441, y: 0.4375, z: 2.774189} + - {x: 24.236126, y: 0.4375, z: 2.774189} + - {x: 24.236126, y: 0.5, z: 2.774189} + - {x: 24.236126, y: 0.46875, z: 2.774189} + - {x: 24.363438, y: 0.46875, z: 2.774189} + - {x: 24.363438, y: 0.5, z: 2.774189} + - {x: 23.981503, y: 0.3125, z: 2.774189} + - {x: 23.981503, y: 0.28125, z: 2.774189} + - {x: 24.108814, y: 0.28125, z: 2.774189} + - {x: 24.108814, y: 0.3125, z: 2.774189} + - {x: 24.23613, y: 0.3125, z: 2.774189} + - {x: 24.23613, y: 0.28125, z: 2.774189} + - {x: 24.363441, y: 0.28125, z: 2.774189} + - {x: 24.363441, y: 0.3125, z: 2.774189} + - {x: 24.23613, y: 0.34375, z: 2.774189} + - {x: 24.363441, y: 0.34375, z: 2.774189} + - {x: 24.363441, y: 0.375, z: 2.774189} + - {x: 24.236126, y: 0.375, z: 2.774189} + - {x: 23.981503, y: 0.375, z: 2.774189} + - {x: 23.981503, y: 0.34375, z: 2.774189} + - {x: 24.108814, y: 0.34375, z: 2.774189} + - {x: 24.108814, y: 0.375, z: 2.774189} + - {x: 23.981503, y: 0.6875, z: 2.774189} + - {x: 23.981503, y: 0.65625, z: 2.774189} + - {x: 24.108814, y: 0.65625, z: 2.774189} + - {x: 24.108814, y: 0.6875, z: 2.774189} + - {x: 24.23613, y: 0.6875, z: 2.774189} + - {x: 24.23613, y: 0.65625, z: 2.774189} + - {x: 24.363441, y: 0.65625, z: 2.774189} + - {x: 24.363441, y: 0.6875, z: 2.774189} + - {x: 24.23613, y: 0.71875, z: 2.774189} + - {x: 24.363441, y: 0.71875, z: 2.774189} + - {x: 24.363441, y: 0.75, z: 2.774189} + - {x: 24.236126, y: 0.75, z: 2.774189} + - {x: 23.981503, y: 0.75, z: 2.774189} + - {x: 23.981503, y: 0.71875, z: 2.774189} + - {x: 24.108814, y: 0.71875, z: 2.774189} + - {x: 24.108814, y: 0.75, z: 2.774189} + - {x: 23.981503, y: 0.59375, z: 2.774189} + - {x: 24.108814, y: 0.59375, z: 2.774189} + - {x: 24.108814, y: 0.625, z: 2.774189} + - {x: 23.981503, y: 0.625, z: 2.774189} + - {x: 23.981503, y: 0.5625, z: 2.774189} + - {x: 23.981503, y: 0.53125, z: 2.774189} + - {x: 24.108814, y: 0.53125, z: 2.774189} + - {x: 24.108814, y: 0.5625, z: 2.774189} + - {x: 24.236126, y: 0.53125, z: 2.774189} + - {x: 24.363438, y: 0.53125, z: 2.774189} + - {x: 24.363441, y: 0.5625, z: 2.774189} + - {x: 24.236126, y: 0.5625, z: 2.774189} + - {x: 24.236126, y: 0.59375, z: 2.774189} + - {x: 24.363441, y: 0.59375, z: 2.774189} + - {x: 24.363441, y: 0.625, z: 2.774189} + - {x: 24.236126, y: 0.625, z: 2.774189} + - {x: 24.490753, y: 0.65625, z: 2.774189} + - {x: 24.618065, y: 0.65625, z: 2.774189} + - {x: 24.618065, y: 0.6875, z: 2.774189} + - {x: 24.490753, y: 0.6875, z: 2.774189} + - {x: 24.745377, y: 0.65625, z: 2.774189} + - {x: 28.211613, y: 0.65625, z: 2.774187} + - {x: 24.872688, y: 0.65625, z: 2.774189} + - {x: 28.211613, y: 0.6875, z: 2.774187} + - {x: 24.872688, y: 0.6875, z: 2.774189} + - {x: 24.745377, y: 0.6875, z: 2.774189} + - {x: 24.745377, y: 0.71875, z: 2.774189} + - {x: 28.211613, y: 0.71875, z: 2.774187} + - {x: 24.872688, y: 0.71875, z: 2.774189} + - {x: 28.211613, y: 0.75, z: 2.774187} + - {x: 24.872688, y: 0.75, z: 2.774189} + - {x: 24.745377, y: 0.75, z: 2.774189} + - {x: 24.490753, y: 0.71875, z: 2.774189} + - {x: 24.618065, y: 0.71875, z: 2.774189} + - {x: 24.618065, y: 0.75, z: 2.774189} + - {x: 24.490753, y: 0.75, z: 2.774189} + - {x: 24.490753, y: 0.59375, z: 2.774189} + - {x: 24.618065, y: 0.59375, z: 2.774189} + - {x: 24.618065, y: 0.625, z: 2.774189} + - {x: 24.490753, y: 0.625, z: 2.774189} + - {x: 24.490753, y: 0.5625, z: 2.774189} + - {x: 24.490753, y: 0.53125, z: 2.774189} + - {x: 24.618065, y: 0.53125, z: 2.774189} + - {x: 24.618065, y: 0.5625, z: 2.774189} + - {x: 24.745377, y: 0.53125, z: 2.774189} + - {x: 28.211613, y: 0.53125, z: 2.774187} + - {x: 24.872688, y: 0.53125, z: 2.774189} + - {x: 28.211613, y: 0.5625, z: 2.774187} + - {x: 24.872688, y: 0.5625, z: 2.774189} + - {x: 24.745377, y: 0.5625, z: 2.774189} + - {x: 24.745377, y: 0.59375, z: 2.774189} + - {x: 28.211613, y: 0.59375, z: 2.774187} + - {x: 24.872688, y: 0.59375, z: 2.774189} + - {x: 28.211613, y: 0.625, z: 2.774187} + - {x: 24.872688, y: 0.625, z: 2.774189} + - {x: 24.745377, y: 0.625, z: 2.774189} + - {x: 24.490753, y: 0.78125, z: 2.774189} + - {x: 24.618065, y: 0.78125, z: 2.774189} + - {x: 24.618065, y: 0.8125, z: 2.774189} + - {x: 24.490753, y: 0.8125, z: 2.774189} + - {x: 24.745377, y: 0.78125, z: 2.774189} + - {x: 28.211613, y: 0.78125, z: 2.774187} + - {x: 24.872688, y: 0.78125, z: 2.774189} + - {x: 28.211613, y: 0.8125, z: 2.774187} + - {x: 24.872688, y: 0.8125, z: 2.774189} + - {x: 24.745377, y: 0.8125, z: 2.774189} + - {x: 24.745377, y: 0.84375, z: 2.774189} + - {x: 28.211613, y: 0.84375, z: 2.774187} + - {x: 24.872688, y: 0.84375, z: 2.774189} + - {x: 28.211613, y: 0.875, z: 2.774187} + - {x: 24.872688, y: 0.875, z: 2.774189} + - {x: 24.745377, y: 0.875, z: 2.774189} + - {x: 24.490753, y: 0.84375, z: 2.774189} + - {x: 24.618065, y: 0.84375, z: 2.774189} + - {x: 24.618065, y: 0.875, z: 2.774189} + - {x: 24.490753, y: 0.875, z: 2.774189} + - {x: 24.490753, y: 0.90625, z: 2.774189} + - {x: 24.618065, y: 0.90625, z: 2.774189} + - {x: 24.618065, y: 0.9375, z: 2.774189} + - {x: 24.490753, y: 0.9375, z: 2.774189} + - {x: 24.745377, y: 0.90625, z: 2.774189} + - {x: 28.211613, y: 0.90625, z: 2.774187} + - {x: 24.872688, y: 0.90625, z: 2.774189} + - {x: 28.211613, y: 0.9375, z: 2.774187} + - {x: 24.872688, y: 0.9375, z: 2.774189} + - {x: 24.745377, y: 0.9375, z: 2.774189} + - {x: 24.745377, y: 1, z: 2.774189} + - {x: 24.745377, y: 0.96875, z: 2.774189} + - {x: 24.618065, y: 1, z: 2.774189} + - {x: 24.618065, y: 0.96875, z: 2.774189} + - {x: 23.981503, y: 1, z: 2.774189} + - {x: 23.981503, y: 0.96875, z: 2.774189} + - {x: 24.108814, y: 0.96875, z: 2.774189} + - {x: 24.108814, y: 1, z: 2.774189} + - {x: 24.236126, y: 0.96875, z: 2.774189} + - {x: 24.236126, y: 1, z: 2.774189} + - {x: 23.981503, y: 0.90625, z: 2.774189} + - {x: 24.108814, y: 0.90625, z: 2.774189} + - {x: 24.108814, y: 0.9375, z: 2.774189} + - {x: 23.981503, y: 0.9375, z: 2.774189} + - {x: 24.236126, y: 0.90625, z: 2.774189} + - {x: 24.363441, y: 0.90625, z: 2.774189} + - {x: 24.363441, y: 0.9375, z: 2.774189} + - {x: 24.236126, y: 0.9375, z: 2.774189} + - {x: 24.363438, y: 0.96875, z: 2.774189} + - {x: 24.363438, y: 1, z: 2.774189} + - {x: 24.490753, y: 0.96875, z: 2.774189} + - {x: 24.49075, y: 1, z: 2.774189} + - {x: 23.981503, y: 0.8125, z: 2.774189} + - {x: 23.981503, y: 0.78125, z: 2.774189} + - {x: 24.108814, y: 0.78125, z: 2.774189} + - {x: 24.108814, y: 0.8125, z: 2.774189} + - {x: 24.23613, y: 0.8125, z: 2.774189} + - {x: 24.23613, y: 0.78125, z: 2.774189} + - {x: 24.363441, y: 0.78125, z: 2.774189} + - {x: 24.363441, y: 0.8125, z: 2.774189} + - {x: 24.23613, y: 0.84375, z: 2.774189} + - {x: 24.363441, y: 0.84375, z: 2.774189} + - {x: 24.363441, y: 0.875, z: 2.774189} + - {x: 24.236126, y: 0.875, z: 2.774189} + - {x: 23.981503, y: 0.875, z: 2.774189} + - {x: 23.981503, y: 0.84375, z: 2.774189} + - {x: 24.108814, y: 0.84375, z: 2.774189} + - {x: 24.108814, y: 0.875, z: 2.774189} + - {x: -3.536171, y: 0.53125, z: 2.774189} + - {x: 0.24686718, y: 0.53125, z: 2.774189} + - {x: 0.24686718, y: 0.5625, z: 2.774189} + - {x: -3.536171, y: 0.5625, z: 2.774189} + - {x: 0.4937334, y: 0.53125, z: 2.774189} + - {x: 0.9874668, y: 0.53125, z: 2.774189} + - {x: 0.74059963, y: 0.53125, z: 2.774189} + - {x: 0.9874668, y: 0.5625, z: 2.774189} + - {x: 0.74059963, y: 0.5625, z: 2.774189} + - {x: 0.4937334, y: 0.5625, z: 2.774189} + - {x: 0.4937334, y: 0.59375, z: 2.774189} + - {x: 0.9874668, y: 0.59375, z: 2.774189} + - {x: 0.74059963, y: 0.59375, z: 2.774189} + - {x: 0.9874668, y: 0.625, z: 2.774189} + - {x: 0.74059963, y: 0.625, z: 2.774189} + - {x: 0.4937334, y: 0.625, z: 2.774189} + - {x: -3.536171, y: 0.59375, z: 2.774189} + - {x: 0.24686718, y: 0.59375, z: 2.774189} + - {x: 0.24686718, y: 0.625, z: 2.774189} + - {x: -3.536171, y: 0.625, z: 2.774189} + - {x: -3.536171, y: 0.65625, z: 2.774189} + - {x: 0.24686718, y: 0.65625, z: 2.774189} + - {x: 0.24686718, y: 0.6875, z: 2.774189} + - {x: -3.536171, y: 0.6875, z: 2.774189} + - {x: 0.4937334, y: 0.65625, z: 2.774189} + - {x: 0.9874668, y: 0.65625, z: 2.774189} + - {x: 0.74059963, y: 0.65625, z: 2.774189} + - {x: 0.9874668, y: 0.6875, z: 2.774189} + - {x: 0.74059963, y: 0.6875, z: 2.774189} + - {x: 0.4937334, y: 0.6875, z: 2.774189} + - {x: 0.4937334, y: 0.71875, z: 2.774189} + - {x: 0.9874668, y: 0.71875, z: 2.774189} + - {x: 0.74059963, y: 0.71875, z: 2.774189} + - {x: 0.9874668, y: 0.75, z: 2.774189} + - {x: 0.74059963, y: 0.75, z: 2.774189} + - {x: 0.4937334, y: 0.75, z: 2.774189} + - {x: -3.536171, y: 0.71875, z: 2.774189} + - {x: 0.24686718, y: 0.71875, z: 2.774189} + - {x: 0.24686718, y: 0.75, z: 2.774189} + - {x: -3.536171, y: 0.75, z: 2.774189} + - {x: 0.9874668, y: 0.5625, z: 2.774189} + - {x: 5.476851, y: 0.5625, z: 2.774189} + - {x: 0.9874668, y: 0.53125, z: 2.774189} + - {x: 5.4768515, y: 0.53125, z: 2.774189} + - {x: 9.966236, y: 0.53125, z: 2.774189} + - {x: 5.4768515, y: 0.53125, z: 2.774189} + - {x: 9.966235, y: 0.5625, z: 2.774189} + - {x: 5.476851, y: 0.5625, z: 2.774189} + - {x: 13.933051, y: 0.53125, z: 2.774189} + - {x: 9.966236, y: 0.53125, z: 2.774189} + - {x: 23.981503, y: 0.53125, z: 2.774189} + - {x: 13.933051, y: 0.53125, z: 2.774189} + - {x: 23.981503, y: 0.5625, z: 2.774189} + - {x: 13.933051, y: 0.5625, z: 2.774189} + - {x: 13.933051, y: 0.5625, z: 2.774189} + - {x: 9.966235, y: 0.5625, z: 2.774189} + - {x: 9.966236, y: 0.625, z: 2.774189} + - {x: 13.933051, y: 0.625, z: 2.774189} + - {x: 9.966236, y: 0.59375, z: 2.774189} + - {x: 13.933051, y: 0.59375, z: 2.774189} + - {x: 23.981503, y: 0.59375, z: 2.774189} + - {x: 13.933051, y: 0.59375, z: 2.774189} + - {x: 23.981503, y: 0.625, z: 2.774189} + - {x: 13.933051, y: 0.625, z: 2.774189} + - {x: 0.9874668, y: 0.625, z: 2.774189} + - {x: 5.4768515, y: 0.625, z: 2.774189} + - {x: 0.9874668, y: 0.59375, z: 2.774189} + - {x: 5.4768515, y: 0.59375, z: 2.774189} + - {x: 9.966236, y: 0.59375, z: 2.774189} + - {x: 5.4768515, y: 0.59375, z: 2.774189} + - {x: 9.966236, y: 0.625, z: 2.774189} + - {x: 5.4768515, y: 0.625, z: 2.774189} + - {x: 0.9874668, y: 0.6875, z: 2.774189} + - {x: 5.476851, y: 0.6875, z: 2.774189} + - {x: 0.9874668, y: 0.65625, z: 2.774189} + - {x: 5.4768515, y: 0.65625, z: 2.774189} + - {x: 9.966236, y: 0.65625, z: 2.774189} + - {x: 5.4768515, y: 0.65625, z: 2.774189} + - {x: 9.966235, y: 0.6875, z: 2.774189} + - {x: 5.476851, y: 0.6875, z: 2.774189} + - {x: 13.933051, y: 0.65625, z: 2.774189} + - {x: 9.966236, y: 0.65625, z: 2.774189} + - {x: 23.981503, y: 0.65625, z: 2.774189} + - {x: 13.933051, y: 0.65625, z: 2.774189} + - {x: 23.981503, y: 0.6875, z: 2.774189} + - {x: 13.933051, y: 0.6875, z: 2.774189} + - {x: 13.933051, y: 0.6875, z: 2.774189} + - {x: 9.966235, y: 0.6875, z: 2.774189} + - {x: 9.966236, y: 0.75, z: 2.774189} + - {x: 13.933051, y: 0.75, z: 2.774189} + - {x: 9.966236, y: 0.71875, z: 2.774189} + - {x: 13.933051, y: 0.71875, z: 2.774189} + - {x: 23.981503, y: 0.71875, z: 2.774189} + - {x: 13.933051, y: 0.71875, z: 2.774189} + - {x: 23.981503, y: 0.75, z: 2.774189} + - {x: 13.933051, y: 0.75, z: 2.774189} + - {x: 0.9874668, y: 0.75, z: 2.774189} + - {x: 5.4768515, y: 0.75, z: 2.774189} + - {x: 0.9874668, y: 0.71875, z: 2.774189} + - {x: 5.4768515, y: 0.71875, z: 2.774189} + - {x: 9.966236, y: 0.71875, z: 2.774189} + - {x: 5.4768515, y: 0.71875, z: 2.774189} + - {x: 9.966236, y: 0.75, z: 2.774189} + - {x: 5.4768515, y: 0.75, z: 2.774189} + - {x: 0.9874668, y: 0.8125, z: 2.774189} + - {x: 5.476851, y: 0.8125, z: 2.774189} + - {x: 0.9874668, y: 0.78125, z: 2.774189} + - {x: 5.4768515, y: 0.78125, z: 2.774189} + - {x: 9.966236, y: 0.78125, z: 2.774189} + - {x: 5.4768515, y: 0.78125, z: 2.774189} + - {x: 9.966235, y: 0.8125, z: 2.774189} + - {x: 5.476851, y: 0.8125, z: 2.774189} + - {x: 13.933051, y: 0.78125, z: 2.774189} + - {x: 9.966236, y: 0.78125, z: 2.774189} + - {x: 23.981503, y: 0.78125, z: 2.774189} + - {x: 13.933051, y: 0.78125, z: 2.774189} + - {x: 23.981503, y: 0.8125, z: 2.774189} + - {x: 13.933051, y: 0.8125, z: 2.774189} + - {x: 13.933051, y: 0.8125, z: 2.774189} + - {x: 9.966235, y: 0.8125, z: 2.774189} + - {x: 9.966236, y: 0.875, z: 2.774189} + - {x: 13.933051, y: 0.875, z: 2.774189} + - {x: 9.966236, y: 0.84375, z: 2.774189} + - {x: 13.933051, y: 0.84375, z: 2.774189} + - {x: 23.981503, y: 0.84375, z: 2.774189} + - {x: 13.933051, y: 0.84375, z: 2.774189} + - {x: 23.981503, y: 0.875, z: 2.774189} + - {x: 13.933051, y: 0.875, z: 2.774189} + - {x: 0.9874668, y: 0.875, z: 2.774189} + - {x: 5.4768515, y: 0.875, z: 2.774189} + - {x: 0.9874668, y: 0.84375, z: 2.774189} + - {x: 5.4768515, y: 0.84375, z: 2.774189} + - {x: 9.966236, y: 0.84375, z: 2.774189} + - {x: 5.4768515, y: 0.84375, z: 2.774189} + - {x: 9.966236, y: 0.875, z: 2.774189} + - {x: 5.4768515, y: 0.875, z: 2.774189} + - {x: 0.9874668, y: 0.9375, z: 2.774189} + - {x: 5.476851, y: 0.9375, z: 2.774189} + - {x: 0.9874668, y: 0.90625, z: 2.774189} + - {x: 5.4768515, y: 0.90625, z: 2.774189} + - {x: 9.966236, y: 0.90625, z: 2.774189} + - {x: 5.4768515, y: 0.90625, z: 2.774189} + - {x: 9.966235, y: 0.9375, z: 2.774189} + - {x: 5.476851, y: 0.9375, z: 2.774189} + - {x: 13.933051, y: 0.90625, z: 2.774189} + - {x: 9.966236, y: 0.90625, z: 2.774189} + - {x: 23.981503, y: 0.90625, z: 2.774189} + - {x: 13.933051, y: 0.90625, z: 2.774189} + - {x: 23.981503, y: 0.9375, z: 2.774189} + - {x: 13.933051, y: 0.9375, z: 2.774189} + - {x: 13.933051, y: 0.9375, z: 2.774189} + - {x: 9.966235, y: 0.9375, z: 2.774189} + - {x: 9.966236, y: 1, z: 2.774189} + - {x: 13.933051, y: 1, z: 2.774189} + - {x: 9.966236, y: 0.96875, z: 2.774189} + - {x: 13.933051, y: 0.96875, z: 2.774189} + - {x: 23.981503, y: 0.96875, z: 2.774189} + - {x: 13.933051, y: 0.96875, z: 2.774189} + - {x: 23.981503, y: 1, z: 2.774189} + - {x: 13.933051, y: 1, z: 2.774189} + - {x: 0.9874668, y: 1, z: 2.774189} + - {x: 5.4768515, y: 1, z: 2.774189} + - {x: 0.9874668, y: 0.96875, z: 2.774189} + - {x: 5.4768515, y: 0.96875, z: 2.774189} + - {x: 9.966236, y: 0.96875, z: 2.774189} + - {x: 5.4768515, y: 0.96875, z: 2.774189} + - {x: 9.966236, y: 1, z: 2.774189} + - {x: 5.4768515, y: 1, z: 2.774189} + - {x: -3.536171, y: 0.78125, z: 2.774189} + - {x: 0.24686718, y: 0.78125, z: 2.774189} + - {x: 0.24686718, y: 0.8125, z: 2.774189} + - {x: -3.536171, y: 0.8125, z: 2.774189} + - {x: 0.4937334, y: 0.78125, z: 2.774189} + - {x: 0.9874668, y: 0.78125, z: 2.774189} + - {x: 0.74059963, y: 0.78125, z: 2.774189} + - {x: 0.9874668, y: 0.8125, z: 2.774189} + - {x: 0.74059963, y: 0.8125, z: 2.774189} + - {x: 0.4937334, y: 0.8125, z: 2.774189} + - {x: 0.4937334, y: 0.84375, z: 2.774189} + - {x: 0.9874668, y: 0.84375, z: 2.774189} + - {x: 0.74059963, y: 0.84375, z: 2.774189} + - {x: 0.9874668, y: 0.875, z: 2.774189} + - {x: 0.74059963, y: 0.875, z: 2.774189} + - {x: 0.4937334, y: 0.875, z: 2.774189} + - {x: -3.536171, y: 0.84375, z: 2.774189} + - {x: 0.24686718, y: 0.84375, z: 2.774189} + - {x: 0.24686718, y: 0.875, z: 2.774189} + - {x: -3.536171, y: 0.875, z: 2.774189} + - {x: -3.536171, y: 0.90625, z: 2.774189} + - {x: 0.24686718, y: 0.90625, z: 2.774189} + - {x: 0.24686718, y: 0.9375, z: 2.774189} + - {x: -3.536171, y: 0.9375, z: 2.774189} + - {x: 0.4937334, y: 0.90625, z: 2.774189} + - {x: 0.9874668, y: 0.90625, z: 2.774189} + - {x: 0.74059963, y: 0.90625, z: 2.774189} + - {x: 0.9874668, y: 0.9375, z: 2.774189} + - {x: 0.74059963, y: 0.9375, z: 2.774189} + - {x: 0.4937334, y: 0.9375, z: 2.774189} + - {x: 0.9874668, y: 0.96875, z: 2.774189} + - {x: 0.9874668, y: 1, z: 2.774189} + - {x: 0.74059963, y: 1, z: 2.774189} + - {x: 0.4937334, y: 1, z: 2.774189} + - {x: 0.4937334, y: 0.96875, z: 2.774189} + - {x: 0.74059963, y: 0.96875, z: 2.774189} + - {x: -3.536171, y: 0.96875, z: 2.774189} + - {x: 0.24686718, y: 0.96875, z: 2.774189} + - {x: 0.24686718, y: 1, z: 2.774189} + - {x: 0.9874668, y: 0.28125, z: -28.970829} + - {x: 5.4768505, y: 0.28125, z: -28.970829} + - {x: 0.9874668, y: 0.3125, z: -28.970829} + - {x: 5.4768505, y: 0.3125, z: -28.970829} + - {x: 0.9874668, y: 0.34375, z: -28.970829} + - {x: 5.4768505, y: 0.34375, z: -28.970829} + - {x: 0.9874668, y: 0.375, z: -28.970829} + - {x: 5.4768505, y: 0.375, z: -28.970829} + - {x: 0.9874668, y: 0.40625, z: -28.970829} + - {x: 5.4768505, y: 0.40625, z: -28.970829} + - {x: 0.9874668, y: 0.4375, z: -28.970829} + - {x: 5.4768505, y: 0.4375, z: -28.970829} + - {x: 0.9874668, y: 0.46875, z: -28.970829} + - {x: 5.4768505, y: 0.46875, z: -28.970829} + - {x: 0.9874668, y: 0.5, z: -28.970829} + - {x: 5.4768505, y: 0.5, z: -28.970829} + - {x: 0.9874668, y: 0, z: -28.970829} + - {x: 0.9874668, y: 0.03125, z: -28.970829} + - {x: 5.4768505, y: 0.03125, z: -28.970829} + - {x: 5.4768505, y: 0, z: -28.970829} + - {x: 0.9874668, y: 0.0625, z: -28.970829} + - {x: 5.4768505, y: 0.0625, z: -28.970829} + - {x: 9.966236, y: 0.03125, z: -28.970829} + - {x: 9.966236, y: 0, z: -25} + - {x: 5.4768505, y: 0, z: -28.970829} + - {x: 5.4768505, y: 0.03125, z: -28.970829} + - {x: 0.9874668, y: 0.09375, z: -28.970829} + - {x: 5.4768505, y: 0.09375, z: -28.970829} + - {x: 0.9874668, y: 0.125, z: -28.970829} + - {x: 5.4768505, y: 0.125, z: -28.970829} + - {x: 9.966236, y: 0, z: -25} + - {x: 9.966236, y: 0.03125, z: -28.970829} + - {x: 13.933051, y: 0.03125, z: -28.970829} + - {x: 13.933051, y: 0, z: -25} + - {x: 23.981503, y: 0.03125, z: -28.970829} + - {x: 23.981503, y: 0, z: -28.970829} + - {x: 13.933051, y: 0, z: -25} + - {x: 13.933051, y: 0.03125, z: -28.970829} + - {x: 0.9874668, y: 0.15625, z: -28.970829} + - {x: 5.4768505, y: 0.15625, z: -28.970829} + - {x: 0.9874668, y: 0.1875, z: -28.970829} + - {x: 5.4768505, y: 0.1875, z: -28.970829} + - {x: 0.9874668, y: 0.21875, z: -28.970829} + - {x: 5.4768505, y: 0.21875, z: -28.970829} + - {x: 0.9874668, y: 0.25, z: -28.970829} + - {x: 5.4768505, y: 0.25, z: -28.970829} + - {x: 0.9874668, y: 0.78125, z: -28.970829} + - {x: 5.4768505, y: 0.78125, z: -28.970829} + - {x: 0.9874668, y: 0.8125, z: -28.970829} + - {x: 5.4768505, y: 0.8125, z: -28.970829} + - {x: 0.9874668, y: 0.84375, z: -28.970829} + - {x: 5.4768505, y: 0.84375, z: -28.970829} + - {x: 0.9874668, y: 0.875, z: -28.970829} + - {x: 5.4768505, y: 0.875, z: -28.970829} + - {x: 0.9874668, y: 0.90625, z: -28.970829} + - {x: 5.4768505, y: 0.90625, z: -28.970829} + - {x: 0.9874668, y: 0.9375, z: -28.970829} + - {x: 5.4768505, y: 0.9375, z: -28.970829} + - {x: 0.9874668, y: 0.96875, z: -28.970829} + - {x: 5.4768505, y: 0.96875, z: -28.970829} + - {x: 0.9874668, y: 1, z: -28.970829} + - {x: 5.4768505, y: 1, z: -28.970829} + - {x: 0.9874668, y: 0.53125, z: -28.970829} + - {x: 5.4768505, y: 0.53125, z: -28.970829} + - {x: 0.9874668, y: 0.5625, z: -28.970829} + - {x: 5.4768505, y: 0.5625, z: -28.970829} + - {x: 0.9874668, y: 0.59375, z: -28.970829} + - {x: 5.4768505, y: 0.59375, z: -28.970829} + - {x: 0.9874668, y: 0.625, z: -28.970829} + - {x: 5.4768505, y: 0.625, z: -28.970829} + - {x: 0.9874668, y: 0.65625, z: -28.970829} + - {x: 5.4768505, y: 0.65625, z: -28.970829} + - {x: 0.9874668, y: 0.6875, z: -28.970829} + - {x: 5.4768505, y: 0.6875, z: -28.970829} + - {x: 0.9874668, y: 0.71875, z: -28.970829} + - {x: 5.4768505, y: 0.71875, z: -28.970829} + - {x: 0.9874668, y: 0.75, z: -28.970829} + - {x: 5.4768505, y: 0.75, z: -28.970829} + - {x: 28.211613, y: 0.5, z: 2.774187} + - {x: 28.211613, y: 0.46875, z: 2.774187} + - {x: 28.211613, y: 0.4375, z: 2.774187} + - {x: 28.211613, y: 0.4375019, z: -0.48428154} + - {x: 28.211613, y: 0.40625, z: 2.774187} + - {x: 28.211613, y: 0.375, z: 2.774187} + - {x: 28.211613, y: 0.34375, z: 2.774187} + - {x: 28.211613, y: 0.3125, z: 2.774187} + - {x: 28.211613, y: 0.3125019, z: -0.48428154} + - {x: 28.211613, y: 0.28125, z: 2.774187} + - {x: 28.211613, y: 0.2812519, z: -0.48428154} + - {x: 28.211613, y: 0.3750019, z: -0.48428154} + - {x: 28.211613, y: 0.3750038, z: -0.9685612} + - {x: 28.211613, y: 0.3437519, z: -0.48428154} + - {x: 28.211613, y: 0.3437538, z: -0.9685612} + - {x: 28.211613, y: 0.3125038, z: -0.9685612} + - {x: 28.211613, y: 0.2812538, z: -0.9685612} + - {x: 28.211613, y: 0.5000019, z: -0.48428154} + - {x: 28.211613, y: 0.5000038, z: -0.9685612} + - {x: 28.211613, y: 0.4687519, z: -0.48428154} + - {x: 28.211613, y: 0.4687538, z: -0.9685612} + - {x: 28.211613, y: 0.4375038, z: -0.9685612} + - {x: 28.211613, y: 0.4062519, z: -0.48428154} + - {x: 28.211613, y: 0.4062538, z: -0.9685612} + - {x: 28.211613, y: 0.25, z: 2.774187} + - {x: 28.211613, y: 0.2500019, z: -0.48428154} + - {x: 28.211613, y: 0.21875, z: 2.774187} + - {x: 28.211613, y: 0.1875, z: 2.774187} + - {x: 28.211613, y: 0.15625, z: 2.774187} + - {x: 28.211613, y: 0.125, z: 2.774187} + - {x: 28.211613, y: 0.09375, z: 2.774187} + - {x: 28.211613, y: 0.0625, z: 2.774187} + - {x: 28.211613, y: 0.03125, z: 2.774187} + - {x: 28.211613, y: 0, z: 2.774187} + - {x: 28.211613, y: 0.1250019, z: -0.48428154} + - {x: 28.211613, y: 0.12500381, z: -0.9685612} + - {x: 28.211613, y: 0.09375191, z: -0.48428154} + - {x: 28.211613, y: 0.093753815, z: -0.9685612} + - {x: 28.211613, y: 0.06250191, z: -0.48428154} + - {x: 28.211613, y: 0.062503815, z: -0.9685612} + - {x: 28.211613, y: 0.031251907, z: -0.48428154} + - {x: 28.211613, y: 0.0000019073486, z: -0.48428154} + - {x: 28.211613, y: 0.0000038146973, z: -0.9685612} + - {x: 28.211613, y: 0.031253815, z: -0.9685612} + - {x: 28.211613, y: 0.2500038, z: -0.9685612} + - {x: 28.211613, y: 0.2187519, z: -0.48428154} + - {x: 28.211613, y: 0.21875381, z: -0.9685612} + - {x: 28.211613, y: 0.1875019, z: -0.48428154} + - {x: 28.211613, y: 0.18750381, z: -0.9685612} + - {x: 28.211613, y: 0.1562519, z: -0.48428154} + - {x: 28.211613, y: 0.15625381, z: -0.9685612} + - {x: 28.211613, y: 0.9375, z: 2.774187} + - {x: 28.211613, y: 0.90625, z: 2.774187} + - {x: 28.211613, y: 0.875, z: 2.774187} + - {x: 28.211613, y: 0.84375, z: 2.774187} + - {x: 28.211613, y: 0.8125, z: 2.774187} + - {x: 28.211613, y: 0.78125, z: 2.774187} + - {x: 28.211613, y: 0.8750019, z: -0.48428154} + - {x: 28.211613, y: 0.8750038, z: -0.9685612} + - {x: 28.211613, y: 0.8437519, z: -0.48428154} + - {x: 28.211613, y: 0.8437538, z: -0.9685612} + - {x: 28.211613, y: 0.8125019, z: -0.48428154} + - {x: 28.211613, y: 0.8125038, z: -0.9685612} + - {x: 28.211613, y: 0.7812519, z: -0.48428154} + - {x: 28.211613, y: 0.7812538, z: -0.9685612} + - {x: 28.211613, y: 1.0000038, z: -0.9685612} + - {x: 28.211613, y: 0.9687538, z: -0.9685612} + - {x: 28.211613, y: 0.9375019, z: -0.48428154} + - {x: 28.211613, y: 0.9375038, z: -0.9685612} + - {x: 28.211613, y: 0.9062519, z: -0.48428154} + - {x: 28.211613, y: 0.9062538, z: -0.9685612} + - {x: 28.211613, y: 0.75, z: 2.774187} + - {x: 28.211613, y: 0.71875, z: 2.774187} + - {x: 28.211613, y: 0.6875, z: 2.774187} + - {x: 28.211613, y: 0.65625, z: 2.774187} + - {x: 28.211613, y: 0.625, z: 2.774187} + - {x: 28.211613, y: 0.59375, z: 2.774187} + - {x: 28.211613, y: 0.5937519, z: -0.48428154} + - {x: 28.211613, y: 0.5625, z: 2.774187} + - {x: 28.211613, y: 0.53125, z: 2.774187} + - {x: 28.211613, y: 0.6250019, z: -0.48428154} + - {x: 28.211613, y: 0.6250038, z: -0.9685612} + - {x: 28.211613, y: 0.5937538, z: -0.9685612} + - {x: 28.211613, y: 0.5625019, z: -0.48428154} + - {x: 28.211613, y: 0.5625038, z: -0.9685612} + - {x: 28.211613, y: 0.5312519, z: -0.48428154} + - {x: 28.211613, y: 0.5312538, z: -0.9685612} + - {x: 28.211613, y: 0.7500019, z: -0.48428154} + - {x: 28.211613, y: 0.7500038, z: -0.9685612} + - {x: 28.211613, y: 0.7187519, z: -0.48428154} + - {x: 28.211613, y: 0.7187538, z: -0.9685612} + - {x: 28.211613, y: 0.6875019, z: -0.48428154} + - {x: 28.211613, y: 0.6875038, z: -0.9685612} + - {x: 28.211613, y: 0.6562519, z: -0.48428154} + - {x: 28.211613, y: 0.6562538, z: -0.9685612} + - {x: 28.211613, y: 0.0000038146973, z: -0.9685612} + - {x: 28.211613, y: -0.0000076293945, z: -23.954763} + - {x: 28.211613, y: 0.03124237, z: -23.954763} + - {x: 28.211613, y: 0.031253815, z: -0.9685612} + - {x: 28.211613, y: 0.06249237, z: -23.954763} + - {x: 28.211613, y: 0.062503815, z: -0.9685612} + - {x: 28.211613, y: 0.09374237, z: -23.954763} + - {x: 28.211613, y: 0.093753815, z: -0.9685612} + - {x: 28.211613, y: 0.12499237, z: -23.954763} + - {x: 28.211613, y: 0.12500381, z: -0.9685612} + - {x: 28.211613, y: 0.06249237, z: -23.954763} + - {x: 28.211613, y: 0.0625, z: -28.97083} + - {x: 28.211613, y: 0.03124237, z: -23.954763} + - {x: 28.211613, y: -0.0000076293945, z: -23.954763} + - {x: 28.211613, y: 0, z: -28.97083} + - {x: 28.211613, y: 0.03125, z: -28.97083} + - {x: 28.211613, y: 0.12499237, z: -23.954763} + - {x: 28.211613, y: 0.125, z: -28.97083} + - {x: 28.211613, y: 0.09374237, z: -23.954763} + - {x: 28.211613, y: 0.09375, z: -28.97083} + - {x: 28.211613, y: 0.15625, z: -28.97083} + - {x: 28.211613, y: 0.15624237, z: -23.954763} + - {x: 28.211613, y: 0.1875, z: -28.97083} + - {x: 28.211613, y: 0.18749237, z: -23.954765} + - {x: 28.211613, y: 0.21875, z: -28.97083} + - {x: 28.211613, y: 0.21874237, z: -23.954767} + - {x: 28.211613, y: 0.25, z: -28.97083} + - {x: 28.211613, y: 0.24999237, z: -23.954767} + - {x: 28.211613, y: 0.18750381, z: -0.9685612} + - {x: 28.211613, y: 0.18749237, z: -23.954765} + - {x: 28.211613, y: 0.15625381, z: -0.9685612} + - {x: 28.211613, y: 0.15624237, z: -23.954763} + - {x: 28.211613, y: 0.2500038, z: -0.9685612} + - {x: 28.211613, y: 0.24999237, z: -23.954767} + - {x: 28.211613, y: 0.21875381, z: -0.9685612} + - {x: 28.211613, y: 0.21874237, z: -23.954767} + - {x: 28.211613, y: 0.28124237, z: -23.954767} + - {x: 28.211613, y: 0.2812538, z: -0.9685612} + - {x: 28.211613, y: 0.31249237, z: -23.954767} + - {x: 28.211613, y: 0.3125038, z: -0.9685612} + - {x: 28.211613, y: 0.34374237, z: -23.954767} + - {x: 28.211613, y: 0.3437538, z: -0.9685612} + - {x: 28.211613, y: 0.37499237, z: -23.954767} + - {x: 28.211613, y: 0.3750038, z: -0.9685612} + - {x: 28.211613, y: 0.31249237, z: -23.954767} + - {x: 28.211613, y: 0.3125, z: -28.97083} + - {x: 28.211613, y: 0.28124237, z: -23.954767} + - {x: 28.211613, y: 0.28125, z: -28.97083} + - {x: 28.211613, y: 0.37499237, z: -23.954767} + - {x: 28.211613, y: 0.375, z: -28.97083} + - {x: 28.211613, y: 0.34374237, z: -23.954767} + - {x: 28.211613, y: 0.34375, z: -28.97083} + - {x: 28.211613, y: 0.43749237, z: -23.954767} + - {x: 28.211613, y: 0.4375, z: -28.97083} + - {x: 28.211613, y: 0.40624237, z: -23.954767} + - {x: 28.211613, y: 0.40625, z: -28.97083} + - {x: 28.211613, y: 0.49999237, z: -23.954767} + - {x: 28.211613, y: 0.5, z: -28.97083} + - {x: 28.211613, y: 0.46874237, z: -23.954767} + - {x: 28.211613, y: 0.46875, z: -28.97083} + - {x: 28.211613, y: 0.40624237, z: -23.954767} + - {x: 28.211613, y: 0.4062538, z: -0.9685612} + - {x: 28.211613, y: 0.43749237, z: -23.954767} + - {x: 28.211613, y: 0.4375038, z: -0.9685612} + - {x: 28.211613, y: 0.46874237, z: -23.954767} + - {x: 28.211613, y: 0.4687538, z: -0.9685612} + - {x: 28.211613, y: 0.49999237, z: -23.954767} + - {x: 28.211613, y: 0.5000038, z: -0.9685612} + - {x: 28.211613, y: 0.5312424, z: -23.954767} + - {x: 28.211613, y: 0.5312538, z: -0.9685612} + - {x: 28.211613, y: 0.5624924, z: -23.954767} + - {x: 28.211613, y: 0.5625038, z: -0.9685612} + - {x: 28.211613, y: 0.5937424, z: -23.954767} + - {x: 28.211613, y: 0.5937538, z: -0.9685612} + - {x: 28.211613, y: 0.6249924, z: -23.954767} + - {x: 28.211613, y: 0.6250038, z: -0.9685612} + - {x: 28.211613, y: 0.5624924, z: -23.954767} + - {x: 28.211613, y: 0.5625, z: -28.97083} + - {x: 28.211613, y: 0.5312424, z: -23.954767} + - {x: 28.211613, y: 0.53125, z: -28.97083} + - {x: 28.211613, y: 0.6249924, z: -23.954767} + - {x: 28.211613, y: 0.625, z: -28.97083} + - {x: 28.211613, y: 0.5937424, z: -23.954767} + - {x: 28.211613, y: 0.59375, z: -28.97083} + - {x: 28.211613, y: 0.6874924, z: -23.954767} + - {x: 28.211613, y: 0.6875, z: -28.97083} + - {x: 28.211613, y: 0.6562424, z: -23.954767} + - {x: 28.211613, y: 0.65625, z: -28.97083} + - {x: 28.211613, y: 0.7499924, z: -23.954767} + - {x: 28.211613, y: 0.75, z: -28.97083} + - {x: 28.211613, y: 0.7187424, z: -23.954767} + - {x: 28.211613, y: 0.71875, z: -28.97083} + - {x: 28.211613, y: 0.6562424, z: -23.954767} + - {x: 28.211613, y: 0.6562538, z: -0.9685612} + - {x: 28.211613, y: 0.6874924, z: -23.954767} + - {x: 28.211613, y: 0.6875038, z: -0.9685612} + - {x: 28.211613, y: 0.7187424, z: -23.954767} + - {x: 28.211613, y: 0.7187538, z: -0.9685612} + - {x: 28.211613, y: 0.7499924, z: -23.954767} + - {x: 28.211613, y: 0.7500038, z: -0.9685612} + - {x: 28.211613, y: 0.7812424, z: -23.954767} + - {x: 28.211613, y: 0.7812538, z: -0.9685612} + - {x: 28.211613, y: 0.8124924, z: -23.954767} + - {x: 28.211613, y: 0.8125038, z: -0.9685612} + - {x: 28.211613, y: 0.8437424, z: -23.954767} + - {x: 28.211613, y: 0.8437538, z: -0.9685612} + - {x: 28.211613, y: 0.8749924, z: -23.954767} + - {x: 28.211613, y: 0.8750038, z: -0.9685612} + - {x: 28.211613, y: 0.8124924, z: -23.954767} + - {x: 28.211613, y: 0.8125, z: -28.97083} + - {x: 28.211613, y: 0.7812424, z: -23.954767} + - {x: 28.211613, y: 0.78125, z: -28.97083} + - {x: 28.211613, y: 0.8749924, z: -23.954767} + - {x: 28.211613, y: 0.875, z: -28.97083} + - {x: 28.211613, y: 0.8437424, z: -23.954767} + - {x: 28.211613, y: 0.84375, z: -28.97083} + - {x: 28.211613, y: 0.9374924, z: -23.954767} + - {x: 28.211613, y: 0.9375, z: -28.97083} + - {x: 28.211613, y: 0.9062424, z: -23.954767} + - {x: 28.211613, y: 0.90625, z: -28.97083} + - {x: 28.211613, y: 0.9062424, z: -23.954767} + - {x: 28.211613, y: 0.9062538, z: -0.9685612} + - {x: 28.211613, y: 0.9374924, z: -23.954767} + - {x: 28.211613, y: 0.9375038, z: -0.9685612} + - {x: 28.211613, y: 0.9687424, z: -23.954767} + - {x: 28.211613, y: 0.9687538, z: -0.9685612} + - {x: 28.211613, y: 0.9999924, z: -23.954767} + - {x: 28.211613, y: 1.0000038, z: -0.9685612} + - {x: -3.536171, y: 0.0000038146973, z: -0.9685612} + - {x: -3.536171, y: 0.031253815, z: -0.9685612} + - {x: -3.536171, y: 0.03124237, z: -23.954762} + - {x: -3.536171, y: -0.0000076293945, z: -23.954762} + - {x: -3.536171, y: 0.062503815, z: -0.9685612} + - {x: -3.536171, y: 0.06249237, z: -23.954762} + - {x: -3.536171, y: 0.093753815, z: -0.9685612} + - {x: -3.536171, y: 0.09374237, z: -23.954762} + - {x: -3.536171, y: 0.12500381, z: -0.9685612} + - {x: -3.536171, y: 0.12499237, z: -23.954762} + - {x: -3.536171, y: 0.18749237, z: -23.954763} + - {x: -3.536171, y: 0.18750381, z: -0.9685612} + - {x: -3.536171, y: 0.15624237, z: -23.954762} + - {x: -3.536171, y: 0.15625381, z: -0.9685612} + - {x: -3.536171, y: 0.24999237, z: -23.954765} + - {x: -3.536171, y: 0.2500038, z: -0.9685612} + - {x: -3.536171, y: 0.21874237, z: -23.954765} + - {x: -3.536171, y: 0.21875381, z: -0.9685612} + - {x: -3.536171, y: 0.2812538, z: -0.9685612} + - {x: -3.536171, y: 0.28124237, z: -23.954765} + - {x: -3.536171, y: 0.3125038, z: -0.9685612} + - {x: -3.536171, y: 0.31249237, z: -23.954765} + - {x: -3.536171, y: 0.3437538, z: -0.9685612} + - {x: -3.536171, y: 0.34374237, z: -23.954765} + - {x: -3.536171, y: 0.3750038, z: -0.9685612} + - {x: -3.536171, y: 0.37499237, z: -23.954765} + - {x: -3.536171, y: 0.4062538, z: -0.9685612} + - {x: -3.536171, y: 0.40624237, z: -23.954765} + - {x: -3.536171, y: 0.4375038, z: -0.9685612} + - {x: -3.536171, y: 0.43749237, z: -23.954765} + - {x: -3.536171, y: 0.4687538, z: -0.9685612} + - {x: -3.536171, y: 0.46874237, z: -23.954765} + - {x: -3.536171, y: 0.5000038, z: -0.9685612} + - {x: -3.536171, y: 0.49999237, z: -23.954765} + - {x: -3.536171, y: 0.5312538, z: -0.9685612} + - {x: -3.536171, y: 0.5312424, z: -23.954765} + - {x: -3.536171, y: 0.5625038, z: -0.9685612} + - {x: -3.536171, y: 0.5624924, z: -23.954765} + - {x: -3.536171, y: 0.5937538, z: -0.9685612} + - {x: -3.536171, y: 0.5937424, z: -23.954765} + - {x: -3.536171, y: 0.6250038, z: -0.9685612} + - {x: -3.536171, y: 0.6249924, z: -23.954765} + - {x: -3.536171, y: 0.6562538, z: -0.9685612} + - {x: -3.536171, y: 0.6562424, z: -23.954765} + - {x: -3.536171, y: 0.6875038, z: -0.9685612} + - {x: -3.536171, y: 0.6874924, z: -23.954765} + - {x: -3.536171, y: 0.7187538, z: -0.9685612} + - {x: -3.536171, y: 0.7187424, z: -23.954765} + - {x: -3.536171, y: 0.7500038, z: -0.9685612} + - {x: -3.536171, y: 0.7499924, z: -23.954765} + - {x: -3.536171, y: 0.7812538, z: -0.9685612} + - {x: -3.536171, y: 0.7812424, z: -23.954765} + - {x: -3.536171, y: 0.8125038, z: -0.9685612} + - {x: -3.536171, y: 0.8124924, z: -23.954765} + - {x: -3.536171, y: 0.8437538, z: -0.9685612} + - {x: -3.536171, y: 0.8437424, z: -23.954765} + - {x: -3.536171, y: 0.8750038, z: -0.9685612} + - {x: -3.536171, y: 0.8749924, z: -23.954765} + - {x: -3.536171, y: 0.9062538, z: -0.9685612} + - {x: -3.536171, y: 0.9062424, z: -23.954765} + - {x: -3.536171, y: 0.9375038, z: -0.9685612} + - {x: -3.536171, y: 0.9374924, z: -23.954765} + - {x: -3.536171, y: 0.9687538, z: -0.9685612} + - {x: -3.536171, y: 0.9687424, z: -23.954765} + - {x: -3.536171, y: 1.0000038, z: -0.9685612} + - {x: -3.536171, y: 0.9999924, z: -23.954765} + - {x: -3.536171, y: 0.5000038, z: -0.9685612} + - {x: -3.536171, y: 0.4687538, z: -0.9685612} + - {x: -3.536171, y: 0.4375038, z: -0.9685612} + - {x: -3.536171, y: 0.4062538, z: -0.9685612} + - {x: -3.536171, y: 0.3750038, z: -0.9685612} + - {x: -3.536171, y: 0.3437538, z: -0.9685612} + - {x: -3.536171, y: 0.3125038, z: -0.9685612} + - {x: -3.536171, y: 0.2812538, z: -0.9685612} + - {x: -3.536171, y: 0.3750019, z: -0.48428154} + - {x: -3.536171, y: 0.375, z: 2.774189} + - {x: -3.536171, y: 0.3437519, z: -0.48428154} + - {x: -3.536171, y: 0.34375, z: 2.774189} + - {x: -3.536171, y: 0.3125019, z: -0.48428154} + - {x: -3.536171, y: 0.3125, z: 2.774189} + - {x: -3.536171, y: 0.2812519, z: -0.48428154} + - {x: -3.536171, y: 0.28125, z: 2.774189} + - {x: -3.536171, y: 0.5000019, z: -0.48428154} + - {x: -3.536171, y: 0.5, z: 2.774189} + - {x: -3.536171, y: 0.4687519, z: -0.48428154} + - {x: -3.536171, y: 0.46875, z: 2.774189} + - {x: -3.536171, y: 0.4375019, z: -0.48428154} + - {x: -3.536171, y: 0.4375, z: 2.774189} + - {x: -3.536171, y: 0.4062519, z: -0.48428154} + - {x: -3.536171, y: 0.40625, z: 2.774189} + - {x: -3.536171, y: 0.2500038, z: -0.9685612} + - {x: -3.536171, y: 0.21875381, z: -0.9685612} + - {x: -3.536171, y: 0.18750381, z: -0.9685612} + - {x: -3.536171, y: 0.15625381, z: -0.9685612} + - {x: -3.536171, y: 0.12500381, z: -0.9685612} + - {x: -3.536171, y: 0.093753815, z: -0.9685612} + - {x: -3.536171, y: 0.062503815, z: -0.9685612} + - {x: -3.536171, y: 0.031253815, z: -0.9685612} + - {x: -3.536171, y: 0.0000038146973, z: -0.9685612} + - {x: -3.536171, y: 0.1250019, z: -0.48428154} + - {x: -3.536171, y: 0.125, z: 2.774189} + - {x: -3.536171, y: 0.09375191, z: -0.48428154} + - {x: -3.536171, y: 0.09375, z: 2.774189} + - {x: -3.536171, y: 0.06250191, z: -0.48428154} + - {x: -3.536171, y: 0.0625, z: 2.774189} + - {x: -3.536171, y: 0.031251907, z: -0.48428154} + - {x: -3.536171, y: 0.0000019073486, z: -0.48428154} + - {x: -3.536171, y: 0, z: 2.774189} + - {x: -3.536171, y: 0.03125, z: 2.774189} + - {x: -3.536171, y: 0.2500019, z: -0.48428154} + - {x: -3.536171, y: 0.25, z: 2.774189} + - {x: -3.536171, y: 0.2187519, z: -0.48428154} + - {x: -3.536171, y: 0.21875, z: 2.774189} + - {x: -3.536171, y: 0.1875019, z: -0.48428154} + - {x: -3.536171, y: 0.1875, z: 2.774189} + - {x: -3.536171, y: 0.1562519, z: -0.48428154} + - {x: -3.536171, y: 0.15625, z: 2.774189} + - {x: -3.536171, y: 1.0000038, z: -0.9685612} + - {x: -3.536171, y: 0.9687538, z: -0.9685612} + - {x: -3.536171, y: 0.9687519, z: -0.48428154} + - {x: -3.536171, y: 1.0000019, z: -0.48428154} + - {x: -3.536171, y: 0.9375038, z: -0.9685612} + - {x: -3.536171, y: 0.9062538, z: -0.9685612} + - {x: -3.536171, y: 0.8750038, z: -0.9685612} + - {x: -3.536171, y: 0.8437538, z: -0.9685612} + - {x: -3.536171, y: 0.8125038, z: -0.9685612} + - {x: -3.536171, y: 0.7812538, z: -0.9685612} + - {x: -3.536171, y: 0.8750019, z: -0.48428154} + - {x: -3.536171, y: 0.875, z: 2.774189} + - {x: -3.536171, y: 0.8437519, z: -0.48428154} + - {x: -3.536171, y: 0.84375, z: 2.774189} + - {x: -3.536171, y: 0.8125019, z: -0.48428154} + - {x: -3.536171, y: 0.8125, z: 2.774189} + - {x: -3.536171, y: 0.7812519, z: -0.48428154} + - {x: -3.536171, y: 0.78125, z: 2.774189} + - {x: -3.536171, y: 0.96875, z: 2.774189} + - {x: -3.536171, y: 0.9375019, z: -0.48428154} + - {x: -3.536171, y: 0.9375, z: 2.774189} + - {x: -3.536171, y: 0.9062519, z: -0.48428154} + - {x: -3.536171, y: 0.90625, z: 2.774189} + - {x: -3.536171, y: 0.7500038, z: -0.9685612} + - {x: -3.536171, y: 0.7187538, z: -0.9685612} + - {x: -3.536171, y: 0.6875038, z: -0.9685612} + - {x: -3.536171, y: 0.6562538, z: -0.9685612} + - {x: -3.536171, y: 0.6250038, z: -0.9685612} + - {x: -3.536171, y: 0.5937538, z: -0.9685612} + - {x: -3.536171, y: 0.5625038, z: -0.9685612} + - {x: -3.536171, y: 0.5312538, z: -0.9685612} + - {x: -3.536171, y: 0.6250019, z: -0.48428154} + - {x: -3.536171, y: 0.625, z: 2.774189} + - {x: -3.536171, y: 0.5937519, z: -0.48428154} + - {x: -3.536171, y: 0.59375, z: 2.774189} + - {x: -3.536171, y: 0.5625019, z: -0.48428154} + - {x: -3.536171, y: 0.5625, z: 2.774189} + - {x: -3.536171, y: 0.5312519, z: -0.48428154} + - {x: -3.536171, y: 0.53125, z: 2.774189} + - {x: -3.536171, y: 0.7500019, z: -0.48428154} + - {x: -3.536171, y: 0.75, z: 2.774189} + - {x: -3.536171, y: 0.7187519, z: -0.48428154} + - {x: -3.536171, y: 0.71875, z: 2.774189} + - {x: -3.536171, y: 0.6875019, z: -0.48428154} + - {x: -3.536171, y: 0.6875, z: 2.774189} + - {x: -3.536171, y: 0.6562519, z: -0.48428154} + - {x: -3.536171, y: 0.65625, z: 2.774189} + - {x: 13.834999, y: 27.945488, z: -11.203365} + - {x: 13.848736, y: 27.945488, z: -11.203365} + - {x: 13.807526, y: 27.945488, z: -11.203365} + - {x: 13.821262, y: 27.945488, z: -11.203365} + - {x: 13.848736, y: 27.945488, z: -11.151112} + - {x: 13.834999, y: 27.945488, z: -11.151112} + - {x: 13.821262, y: 27.945488, z: -11.151112} + - {x: 13.807526, y: 27.945488, z: -11.151112} + - {x: 13.793789, y: 27.945488, z: -11.203365} + - {x: 13.780052, y: 27.945488, z: -11.203365} + - {x: 13.766315, y: 27.945488, z: -11.203365} + - {x: 13.752578, y: 27.945488, z: -11.203365} + - {x: 13.780052, y: 27.945488, z: -11.151112} + - {x: 13.793789, y: 27.945488, z: -11.151112} + - {x: 13.766315, y: 27.945488, z: -11.151112} + - {x: 13.752578, y: 27.945488, z: -11.151112} + - {x: 12.654625, y: 27.945488, z: -11.255619} + - {x: 12.552206, y: 27.945488, z: -11.203365} + - {x: 13.738841, y: 27.945488, z: -11.203365} + - {x: 12.226609, y: 27.945488, z: -11.255619} + - {x: 11.74221, y: 27.945488, z: -11.255619} + - {x: 12.654625, y: 27.945488, z: -11.151112} + - {x: 13.738841, y: 27.945488, z: -11.151112} + - {x: 12.226609, y: 27.945488, z: -11.203365} + - {x: 12.226609, y: 27.945488, z: -11.151112} + - {x: 11.74221, y: 27.945488, z: -11.203365} + - {x: 11.74221, y: 27.945488, z: -11.151112} + - {x: 11.257811, y: 27.945488, z: -11.203365} + - {x: 11.204537, y: 27.945488, z: -11.203365} + - {x: 11.2311735, y: 27.945488, z: -11.203365} + - {x: 11.151264, y: 27.945488, z: -11.203365} + - {x: 11.1779, y: 27.945488, z: -11.203365} + - {x: 11.257811, y: 27.945488, z: -11.151112} + - {x: 11.2311735, y: 27.945488, z: -11.151112} + - {x: 11.204537, y: 27.945488, z: -11.151112} + - {x: 11.151264, y: 27.945488, z: -11.151112} + - {x: 11.1779, y: 27.945488, z: -11.151112} + - {x: 13.848736, y: 27.945488, z: -13.848587} + - {x: 13.834999, y: 27.945488, z: -13.848587} + - {x: 13.821262, y: 27.945488, z: -13.848587} + - {x: 13.807526, y: 27.945488, z: -13.848587} + - {x: 13.848736, y: 27.945488, z: -11.255619} + - {x: 13.848736, y: 27.945488, z: -13.735809} + - {x: 13.834999, y: 27.945488, z: -13.735809} + - {x: 13.834999, y: 27.945488, z: -11.255619} + - {x: 13.821262, y: 27.945488, z: -13.735809} + - {x: 13.821262, y: 27.945488, z: -11.255619} + - {x: 13.807526, y: 27.945488, z: -13.735809} + - {x: 13.807526, y: 27.945488, z: -11.255619} + - {x: 13.793789, y: 27.945488, z: -13.735809} + - {x: 13.793789, y: 27.945488, z: -11.255619} + - {x: 13.793789, y: 27.945488, z: -13.848587} + - {x: 13.780052, y: 27.945488, z: -13.848587} + - {x: 13.766315, y: 27.945488, z: -13.848587} + - {x: 13.752578, y: 27.945488, z: -13.848587} + - {x: 13.738841, y: 27.945488, z: -13.848587} + - {x: 13.780052, y: 27.945488, z: -13.735809} + - {x: 13.780052, y: 27.945488, z: -11.255619} + - {x: 13.766315, y: 27.945488, z: -13.735809} + - {x: 13.766315, y: 27.945488, z: -11.255619} + - {x: 13.752578, y: 27.945488, z: -13.735809} + - {x: 13.752578, y: 27.945488, z: -11.255619} + - {x: 13.738841, y: 27.945488, z: -13.735809} + - {x: 13.738841, y: 27.945488, z: -11.255619} + - {x: 12.654625, y: 27.945488, z: -13.848587} + - {x: 12.654625, y: 27.945488, z: -13.735809} + - {x: 11.74221, y: 27.945488, z: -13.848587} + - {x: 11.257811, y: 27.945488, z: -13.848587} + - {x: 11.257811, y: 27.945488, z: -13.735809} + - {x: 11.74221, y: 27.945488, z: -13.735809} + - {x: 11.2311735, y: 27.945488, z: -13.848587} + - {x: 11.2311735, y: 27.945488, z: -13.735809} + - {x: 11.204537, y: 27.945488, z: -13.848587} + - {x: 11.204537, y: 27.945488, z: -13.735809} + - {x: 11.1779, y: 27.945488, z: -13.848587} + - {x: 11.151264, y: 27.945488, z: -13.848587} + - {x: 11.151264, y: 27.945488, z: -13.735809} + - {x: 11.1779, y: 27.945488, z: -13.735809} + - {x: 11.2311735, y: 27.945488, z: -11.255619} + - {x: 11.257811, y: 27.945488, z: -11.255619} + - {x: 11.204537, y: 27.945488, z: -11.255619} + - {x: 11.1779, y: 27.945488, z: -11.255619} + - {x: 11.151264, y: 27.945488, z: -11.255619} + - {x: 24.745375, y: -0.0000076293945, z: -23.954762} + - {x: 24.745377, y: 0, z: -28.970829} + - {x: 24.872688, y: 0, z: -28.970829} + - {x: 24.872688, y: -0.0000076293945, z: -23.954762} + - {x: 24.872688, y: 0, z: -28.970829} + - {x: 28.211613, y: 0, z: -28.97083} + - {x: 28.211613, y: -0.0000076293945, z: -23.954763} + - {x: 24.872688, y: -0.0000076293945, z: -23.954762} + - {x: 24.49075, y: -0.0000076293945, z: -23.954762} + - {x: 24.490751, y: 0, z: -28.970829} + - {x: 24.618065, y: 0, z: -28.970829} + - {x: 24.618061, y: -0.0000076293945, z: -23.954762} + - {x: 24.618065, y: 0, z: -28.970829} + - {x: 24.745377, y: 0, z: -28.970829} + - {x: 24.745375, y: -0.0000076293945, z: -23.954762} + - {x: 24.618061, y: -0.0000076293945, z: -23.954762} + - {x: 24.745377, y: 0.0000038146973, z: -0.96855927} + - {x: 24.745375, y: -0.0000076293945, z: -23.954762} + - {x: 24.872688, y: -0.0000076293945, z: -23.954762} + - {x: 24.872688, y: 0.0000038146973, z: -0.96855927} + - {x: 24.872688, y: -0.0000076293945, z: -23.954762} + - {x: 28.211613, y: -0.0000076293945, z: -23.954763} + - {x: 28.211613, y: 0.0000038146973, z: -0.9685612} + - {x: 24.872688, y: 0.0000038146973, z: -0.96855927} + - {x: 24.490751, y: 0.0000038146973, z: -0.96855927} + - {x: 24.49075, y: -0.0000076293945, z: -23.954762} + - {x: 24.618061, y: -0.0000076293945, z: -23.954762} + - {x: 24.618065, y: 0.0000038146973, z: -0.96855927} + - {x: 24.618061, y: -0.0000076293945, z: -23.954762} + - {x: 24.745375, y: -0.0000076293945, z: -23.954762} + - {x: 24.745377, y: 0.0000038146973, z: -0.96855927} + - {x: 24.618065, y: 0.0000038146973, z: -0.96855927} + - {x: 24.49075, y: -0.0000076293945, z: -23.954762} + - {x: 24.363438, y: -0.0000076293945, z: -23.954762} + - {x: 24.363438, y: 0, z: -28.970829} + - {x: 24.490751, y: 0, z: -28.970829} + - {x: 24.363438, y: -0.0000076293945, z: -23.954762} + - {x: 24.236126, y: -0.0000076293945, z: -23.954762} + - {x: 24.236126, y: 0, z: -28.970829} + - {x: 24.363438, y: 0, z: -28.970829} + - {x: 24.236126, y: -0.0000076293945, z: -23.954762} + - {x: 24.108814, y: -0.0000076293945, z: -23.954762} + - {x: 24.108814, y: 0, z: -28.970829} + - {x: 24.236126, y: 0, z: -28.970829} + - {x: 24.108814, y: -0.0000076293945, z: -23.954762} + - {x: 23.981503, y: -0.0000076293945, z: -23.954762} + - {x: 23.981503, y: 0, z: -28.970829} + - {x: 24.108814, y: 0, z: -28.970829} + - {x: 24.49075, y: -0.0000076293945, z: -23.954762} + - {x: 24.490751, y: 0.0000038146973, z: -0.96855927} + - {x: 24.363438, y: 0.0000038146973, z: -0.96855927} + - {x: 24.363438, y: -0.0000076293945, z: -23.954762} + - {x: 24.363438, y: 0.0000038146973, z: -0.96855927} + - {x: 24.236126, y: 0.0000038146973, z: -0.96855927} + - {x: 24.236126, y: -0.0000076293945, z: -23.954762} + - {x: 24.363438, y: -0.0000076293945, z: -23.954762} + - {x: 24.236126, y: 0.0000038146973, z: -0.96855927} + - {x: 24.108814, y: 0.0000038146973, z: -0.96855927} + - {x: 24.108814, y: -0.0000076293945, z: -23.954762} + - {x: 24.236126, y: -0.0000076293945, z: -23.954762} + - {x: 24.108814, y: 0.0000038146973, z: -0.96855927} + - {x: 23.981503, y: 0.0000038146973, z: -0.96855927} + - {x: 23.981503, y: -0.0000076293945, z: -23.954762} + - {x: 24.108814, y: -0.0000076293945, z: -23.954762} + - {x: 23.981503, y: 0.0000038146973, z: -0.96855927} + - {x: 13.933051, y: 0.0000038146973, z: -0.96855927} + - {x: 13.933051, y: -0.0000076293945, z: -23.954762} + - {x: 23.981503, y: -0.0000076293945, z: -23.954762} + - {x: 13.933051, y: 0.0000038146973, z: -0.96855927} + - {x: 9.966236, y: 0.0000038146973, z: -0.96855927} + - {x: 9.966236, y: -0.0000076293945, z: -23.954762} + - {x: 13.933051, y: -0.0000076293945, z: -23.954762} + - {x: 9.966236, y: 0.0000038146973, z: -0.96855927} + - {x: 5.4768515, y: 0.0000038146973, z: -0.96855927} + - {x: 5.4768515, y: -0.0000076293945, z: -23.954762} + - {x: 9.966236, y: -0.0000076293945, z: -23.954762} + - {x: 5.4768515, y: 0.0000038146973, z: -0.96855927} + - {x: 0.9874668, y: 0.0000038146973, z: -0.96855927} + - {x: 0.9874668, y: -0.0000076293945, z: -23.954762} + - {x: 5.4768515, y: -0.0000076293945, z: -23.954762} + - {x: 23.981503, y: 0, z: -28.970829} + - {x: 23.981503, y: -0.0000076293945, z: -23.954762} + - {x: 13.933051, y: -0.0000076293945, z: -23.954762} + - {x: 13.933051, y: 0, z: -25} + - {x: 13.933051, y: -0.0000076293945, z: -23.954762} + - {x: 9.966236, y: -0.0000076293945, z: -23.954762} + - {x: 9.966236, y: 0, z: -25} + - {x: 13.933051, y: 0, z: -25} + - {x: 9.966236, y: 0, z: -25} + - {x: 9.966236, y: -0.0000076293945, z: -23.954762} + - {x: 5.4768515, y: -0.0000076293945, z: -23.954762} + - {x: 5.4768505, y: 0, z: -28.970829} + - {x: 5.4768515, y: -0.0000076293945, z: -23.954762} + - {x: 0.9874668, y: -0.0000076293945, z: -23.954762} + - {x: 0.9874668, y: 0, z: -28.970829} + - {x: 5.4768505, y: 0, z: -28.970829} + - {x: 0.9874668, y: 0.0000038146973, z: -0.96855927} + - {x: 0.7406001, y: 0.0000038146973, z: -0.96855927} + - {x: 0.7406001, y: -0.0000076293945, z: -23.954762} + - {x: 0.9874668, y: -0.0000076293945, z: -23.954762} + - {x: 0.7406001, y: 0.0000038146973, z: -0.96855927} + - {x: 0.4937334, y: 0.0000038146973, z: -0.96855927} + - {x: 0.4937334, y: -0.0000076293945, z: -23.954762} + - {x: 0.7406001, y: -0.0000076293945, z: -23.954762} + - {x: 0.4937334, y: 0.0000038146973, z: -0.96855927} + - {x: 0.2468667, y: 0.0000038146973, z: -0.96855927} + - {x: 0.2468667, y: -0.0000076293945, z: -23.954762} + - {x: 0.4937334, y: -0.0000076293945, z: -23.954762} + - {x: 0.2468667, y: 0.0000038146973, z: -0.96855927} + - {x: -3.536171, y: 0.0000038146973, z: -0.9685612} + - {x: -3.536171, y: -0.0000076293945, z: -23.954762} + - {x: 0.2468667, y: -0.0000076293945, z: -23.954762} + - {x: 0.9874668, y: 0, z: -28.970829} + - {x: 0.9874668, y: -0.0000076293945, z: -23.954762} + - {x: 0.7406001, y: -0.0000076293945, z: -23.954762} + - {x: 0.7405987, y: 0, z: -28.970829} + - {x: 0.7406001, y: -0.0000076293945, z: -23.954762} + - {x: 0.4937334, y: -0.0000076293945, z: -23.954762} + - {x: 0.49373436, y: 0, z: -28.970829} + - {x: 0.7405987, y: 0, z: -28.970829} + - {x: 0.49373436, y: 0, z: -28.970829} + - {x: 0.4937334, y: -0.0000076293945, z: -23.954762} + - {x: 0.2468667, y: -0.0000076293945, z: -23.954762} + - {x: 0.24686623, y: 0, z: -28.970829} + - {x: 0.2468667, y: -0.0000076293945, z: -23.954762} + - {x: -3.536171, y: -0.0000076293945, z: -23.954762} + - {x: -3.536171, y: 0, z: -28.970829} + - {x: 0.24686623, y: 0, z: -28.970829} + - {x: 24.49075, y: 0, z: 2.774189} + - {x: 24.490751, y: 0.0000019073486, z: -0.48427963} + - {x: 24.618065, y: 0.0000019073486, z: -0.48427963} + - {x: 24.618065, y: 0, z: 2.774189} + - {x: 24.618065, y: 0.0000019073486, z: -0.48427963} + - {x: 24.745377, y: 0.0000019073486, z: -0.48427963} + - {x: 24.745377, y: 0, z: 2.774189} + - {x: 24.618065, y: 0, z: 2.774189} + - {x: 28.211613, y: 0.0000019073486, z: -0.48428154} + - {x: 28.211613, y: 0, z: 2.774187} + - {x: 24.872688, y: 0, z: 2.774189} + - {x: 24.872688, y: 0.0000019073486, z: -0.48427963} + - {x: 24.872688, y: 0, z: 2.774189} + - {x: 24.745377, y: 0, z: 2.774189} + - {x: 24.745377, y: 0.0000019073486, z: -0.48427963} + - {x: 24.872688, y: 0.0000019073486, z: -0.48427963} + - {x: 28.211613, y: 0.0000038146973, z: -0.9685612} + - {x: 28.211613, y: 0.0000019073486, z: -0.48428154} + - {x: 24.872688, y: 0.0000019073486, z: -0.48427963} + - {x: 24.872688, y: 0.0000038146973, z: -0.96855927} + - {x: 24.872688, y: 0.0000019073486, z: -0.48427963} + - {x: 24.745377, y: 0.0000019073486, z: -0.48427963} + - {x: 24.745377, y: 0.0000038146973, z: -0.96855927} + - {x: 24.872688, y: 0.0000038146973, z: -0.96855927} + - {x: 24.745377, y: 0.0000038146973, z: -0.96855927} + - {x: 24.745377, y: 0.0000019073486, z: -0.48427963} + - {x: 24.618065, y: 0.0000019073486, z: -0.48427963} + - {x: 24.618065, y: 0.0000038146973, z: -0.96855927} + - {x: 24.618065, y: 0.0000019073486, z: -0.48427963} + - {x: 24.490751, y: 0.0000019073486, z: -0.48427963} + - {x: 24.490751, y: 0.0000038146973, z: -0.96855927} + - {x: 24.618065, y: 0.0000038146973, z: -0.96855927} + - {x: 24.490751, y: 0.0000038146973, z: -0.96855927} + - {x: 24.490751, y: 0.0000019073486, z: -0.48427963} + - {x: 24.363438, y: 0.0000019073486, z: -0.48427963} + - {x: 24.363438, y: 0.0000038146973, z: -0.96855927} + - {x: 24.363438, y: 0.0000019073486, z: -0.48427963} + - {x: 24.236126, y: 0.0000019073486, z: -0.48427963} + - {x: 24.236126, y: 0.0000038146973, z: -0.96855927} + - {x: 24.363438, y: 0.0000038146973, z: -0.96855927} + - {x: 24.236126, y: 0.0000038146973, z: -0.96855927} + - {x: 24.236126, y: 0.0000019073486, z: -0.48427963} + - {x: 24.108814, y: 0.0000019073486, z: -0.48427963} + - {x: 24.108814, y: 0.0000038146973, z: -0.96855927} + - {x: 24.108814, y: 0.0000019073486, z: -0.48427963} + - {x: 23.981503, y: 0.0000019073486, z: -0.48427963} + - {x: 23.981503, y: 0.0000038146973, z: -0.96855927} + - {x: 24.108814, y: 0.0000038146973, z: -0.96855927} + - {x: 23.981503, y: 0, z: 2.774189} + - {x: 23.981503, y: 0.0000019073486, z: -0.48427963} + - {x: 24.108814, y: 0.0000019073486, z: -0.48427963} + - {x: 24.108814, y: 0, z: 2.774189} + - {x: 24.108814, y: 0.0000019073486, z: -0.48427963} + - {x: 24.236126, y: 0.0000019073486, z: -0.48427963} + - {x: 24.236126, y: 0, z: 2.774189} + - {x: 24.108814, y: 0, z: 2.774189} + - {x: 24.490751, y: 0.0000019073486, z: -0.48427963} + - {x: 24.49075, y: 0, z: 2.774189} + - {x: 24.363438, y: 0, z: 2.774189} + - {x: 24.363438, y: 0.0000019073486, z: -0.48427963} + - {x: 24.363438, y: 0, z: 2.774189} + - {x: 24.236126, y: 0, z: 2.774189} + - {x: 24.236126, y: 0.0000019073486, z: -0.48427963} + - {x: 24.363438, y: 0.0000019073486, z: -0.48427963} + - {x: 23.981503, y: 0, z: 2.774189} + - {x: 13.933051, y: 0, z: 2.774189} + - {x: 13.933051, y: 0, z: -0.48427963} + - {x: 23.981503, y: 0.0000019073486, z: -0.48427963} + - {x: 13.933051, y: 0, z: 2.774189} + - {x: 9.966236, y: 0, z: 2.774189} + - {x: 9.966236, y: 0, z: -0.48427963} + - {x: 13.933051, y: 0, z: -0.48427963} + - {x: 9.966236, y: 0, z: 2.774189} + - {x: 5.4768515, y: 0, z: 2.774189} + - {x: 5.4768515, y: 0.0000009536743, z: -0.48427963} + - {x: 9.966236, y: 0, z: -0.48427963} + - {x: 5.4768515, y: 0, z: 2.774189} + - {x: 0.9874668, y: 0, z: 2.774189} + - {x: 0.9874668, y: 0.0000019073486, z: -0.48427963} + - {x: 5.4768515, y: 0.0000009536743, z: -0.48427963} + - {x: 23.981503, y: 0.0000038146973, z: -0.96855927} + - {x: 23.981503, y: 0.0000019073486, z: -0.48427963} + - {x: 13.933051, y: 0, z: -0.48427963} + - {x: 13.933051, y: 0.0000038146973, z: -0.96855927} + - {x: 13.933051, y: 0, z: -0.48427963} + - {x: 9.966236, y: 0, z: -0.48427963} + - {x: 9.966236, y: 0.0000038146973, z: -0.96855927} + - {x: 13.933051, y: 0.0000038146973, z: -0.96855927} + - {x: 9.966236, y: 0.0000038146973, z: -0.96855927} + - {x: 9.966236, y: 0, z: -0.48427963} + - {x: 5.4768515, y: 0.0000009536743, z: -0.48427963} + - {x: 5.4768515, y: 0.0000038146973, z: -0.96855927} + - {x: 5.4768515, y: 0.0000009536743, z: -0.48427963} + - {x: 0.9874668, y: 0.0000019073486, z: -0.48427963} + - {x: 0.9874668, y: 0.0000038146973, z: -0.96855927} + - {x: 5.4768515, y: 0.0000038146973, z: -0.96855927} + - {x: 0.9874668, y: 0.0000038146973, z: -0.96855927} + - {x: 0.9874668, y: 0.0000019073486, z: -0.48427963} + - {x: 0.7406001, y: 0.0000019073486, z: -0.48427963} + - {x: 0.7406001, y: 0.0000038146973, z: -0.96855927} + - {x: 0.7406001, y: 0.0000019073486, z: -0.48427963} + - {x: 0.4937334, y: 0.0000019073486, z: -0.48427963} + - {x: 0.4937334, y: 0.0000038146973, z: -0.96855927} + - {x: 0.7406001, y: 0.0000038146973, z: -0.96855927} + - {x: 0.4937334, y: 0.0000038146973, z: -0.96855927} + - {x: 0.4937334, y: 0.0000019073486, z: -0.48427963} + - {x: 0.2468667, y: 0.0000019073486, z: -0.48427963} + - {x: 0.2468667, y: 0.0000038146973, z: -0.96855927} + - {x: 0.2468667, y: 0.0000019073486, z: -0.48427963} + - {x: -3.536171, y: 0.0000019073486, z: -0.48428154} + - {x: -3.536171, y: 0.0000038146973, z: -0.9685612} + - {x: 0.2468667, y: 0.0000038146973, z: -0.96855927} + - {x: 0.9874668, y: 0.0000019073486, z: -0.48427963} + - {x: 0.9874668, y: 0, z: 2.774189} + - {x: 0.74059963, y: 0, z: 2.774189} + - {x: 0.7406001, y: 0.0000019073486, z: -0.48427963} + - {x: 0.74059963, y: 0, z: 2.774189} + - {x: 0.4937334, y: 0, z: 2.774189} + - {x: 0.4937334, y: 0.0000019073486, z: -0.48427963} + - {x: 0.7406001, y: 0.0000019073486, z: -0.48427963} + - {x: -3.536171, y: 0, z: 2.774189} + - {x: -3.536171, y: 0.0000019073486, z: -0.48428154} + - {x: 0.2468667, y: 0.0000019073486, z: -0.48427963} + - {x: 0.24686718, y: 0, z: 2.774189} + - {x: 0.2468667, y: 0.0000019073486, z: -0.48427963} + - {x: 0.4937334, y: 0.0000019073486, z: -0.48427963} + - {x: 0.4937334, y: 0, z: 2.774189} + - {x: 0.24686718, y: 0, z: 2.774189} + - {x: 5.4768505, y: 1, z: -28.970829} + - {x: 0.9874668, y: 1, z: -28.970829} + - {x: 0.9874672, y: 6.0546494, z: -24.999928} + - {x: 5.4768524, y: 6.0546494, z: -24.999928} + - {x: 0.9874672, y: 6.0546494, z: -24.999928} + - {x: 0.9874668, y: 19.741814, z: -24.999859} + - {x: 5.4768515, y: 19.741814, z: -24.999859} + - {x: 5.4768524, y: 6.0546494, z: -24.999928} + - {x: 0.9874668, y: 1.0000038, z: -0.96855927} + - {x: 0.9874668, y: 0.9999924, z: -23.954765} + - {x: 0.9874671, y: 6.0546417, z: -23.954693} + - {x: 0.9874672, y: 6.054653, z: -0.9684906} + - {x: 0.9874671, y: 6.0546417, z: -23.954693} + - {x: 0.9874668, y: 19.741806, z: -23.954624} + - {x: 0.9874668, y: 19.741821, z: -0.96842194} + - {x: 0.9874672, y: 6.054653, z: -0.9684906} + - {x: 0.9874668, y: 0.9999924, z: -23.954765} + - {x: 5.4768515, y: 0.9999924, z: -23.954765} + - {x: 5.4768524, y: 6.0546417, z: -23.954693} + - {x: 0.9874671, y: 6.0546417, z: -23.954693} + - {x: 5.4768524, y: 6.0546417, z: -23.954693} + - {x: 5.4768515, y: 19.741806, z: -23.954624} + - {x: 0.9874668, y: 19.741806, z: -23.954624} + - {x: 0.9874671, y: 6.0546417, z: -23.954693} + - {x: 9.9359865, y: 1, z: -28.970829} + - {x: 5.4768505, y: 1, z: -28.970829} + - {x: 5.4768524, y: 6.0546494, z: -24.999928} + - {x: 9.935987, y: 6.0546494, z: -24.999928} + - {x: 9.966236, y: 0.9999938, z: -24.154766} + - {x: 9.966236, y: 0.99999976, z: -24.96975} + - {x: 9.966237, y: 6.0546494, z: -24.969677} + - {x: 9.966237, y: 6.054643, z: -24.154694} + - {x: 5.4768515, y: 0.9999924, z: -23.954765} + - {x: 9.766236, y: 0.9999924, z: -23.954765} + - {x: 9.766237, y: 6.0546417, z: -23.954693} + - {x: 5.4768524, y: 6.0546417, z: -23.954693} + - {x: 0.9874668, y: 1, z: -28.970829} + - {x: 0.7405987, y: 1, z: -28.970829} + - {x: 0.740601, y: 6.0546494, z: -24.999928} + - {x: 0.9874672, y: 6.0546494, z: -24.999928} + - {x: 0.740601, y: 6.0546494, z: -24.999928} + - {x: 0.7406006, y: 19.741814, z: -24.999859} + - {x: 0.9874668, y: 19.741814, z: -24.999859} + - {x: 0.9874672, y: 6.0546494, z: -24.999928} + - {x: 0.49373436, y: 1, z: -28.970829} + - {x: 0.49373472, y: 6.0546494, z: -24.999928} + - {x: 0.49373472, y: 6.0546494, z: -24.999928} + - {x: 0.49373436, y: 19.741814, z: -24.999859} + - {x: -3.5059214, y: 1, z: 2.774189} + - {x: 0.24686718, y: 1, z: 2.774189} + - {x: 0.24686742, y: 6.0546494, z: 0.00006866455} + - {x: 0.030250238, y: 6.0546494, z: 0.00007201181} + - {x: 0.24686742, y: 6.0546494, z: 0.00006866455} + - {x: 0.24686623, y: 19.741814, z: 0.0001411438} + - {x: 0.03025, y: 19.741814, z: 0.0001411438} + - {x: 0.030250238, y: 6.0546494, z: 0.00007201181} + - {x: 0.030248642, y: 1, z: -28.970829} + - {x: 0.030250357, y: 6.0546494, z: -24.999928} + - {x: 0.030250357, y: 6.0546494, z: -24.999928} + - {x: 0.03025, y: 19.741814, z: -24.999859} + - {x: -3.536171, y: 1, z: -24.96975} + - {x: -3.536171, y: 0.9999924, z: -23.954765} + - {x: 0.00000023841858, y: 6.0546417, z: -23.954693} + - {x: 0.00000035417784, y: 6.0546494, z: -24.969677} + - {x: 0.00000023841858, y: 6.0546417, z: -23.954693} + - {x: 0, y: 19.741806, z: -23.954624} + - {x: 0, y: 19.741814, z: -24.969608} + - {x: 0.00000035417784, y: 6.0546494, z: -24.969677} + - {x: -3.536171, y: 0.9999924, z: -23.954765} + - {x: -3.536171, y: 1.0000038, z: -0.9685612} + - {x: 0.00000035762787, y: 6.054653, z: -0.9684906} + - {x: 0.00000023841858, y: 6.0546417, z: -23.954693} + - {x: 0.00000035762787, y: 6.054653, z: -0.9684906} + - {x: 0, y: 19.741821, z: -0.96842194} + - {x: 0, y: 19.741806, z: -23.954624} + - {x: 0.00000023841858, y: 6.0546417, z: -23.954693} + - {x: 0.24686623, y: 1, z: -28.970829} + - {x: 0.24686658, y: 6.0546494, z: -24.999928} + - {x: 0.24686658, y: 6.0546494, z: -24.999928} + - {x: 0.24686623, y: 19.741814, z: -24.999859} + - {x: -3.536171, y: 1.0000019, z: -0.48428154} + - {x: -3.536171, y: 1, z: -0.030252457} + - {x: 0.00000023841858, y: 6.0546494, z: -0.03017752} + - {x: 0.00000023841858, y: 6.0546494, z: -0.48421097} + - {x: 0.00000023841858, y: 6.0546494, z: -0.03017752} + - {x: 0, y: 19.741814, z: -0.030108856} + - {x: 0, y: 19.741814, z: -0.4841385} + - {x: 0.00000023841858, y: 6.0546494, z: -0.48421097} + - {x: 24.108814, y: 1, z: -28.970829} + - {x: 23.981503, y: 1, z: -28.970829} + - {x: 23.981503, y: 6.0546494, z: -24.999928} + - {x: 24.108814, y: 6.0546494, z: -24.999928} + - {x: -3.536171, y: 1.0000038, z: -0.9685612} + - {x: 0.00000035762787, y: 6.054653, z: -0.9684906} + - {x: 0.00000023841858, y: 6.0546494, z: -0.48421097} + - {x: 0, y: 19.741814, z: -0.4841385} + - {x: 0, y: 19.741821, z: -0.96842194} + - {x: 0.00000035762787, y: 6.054653, z: -0.9684906} + - {x: 0.4937346, y: 6.0546494, z: 0.00006866455} + - {x: 0.49373436, y: 19.741814, z: 0.0001411438} + - {x: 0.4937334, y: 1, z: 2.774189} + - {x: 0.4937346, y: 6.0546494, z: 0.00006866455} + - {x: 0.7406009, y: 6.0546494, z: 0.00006866455} + - {x: 0.7406006, y: 19.741814, z: 0.0001411438} + - {x: 0.9874668, y: 1, z: 2.774189} + - {x: 5.4768515, y: 1, z: 2.774189} + - {x: 5.4768524, y: 6.0546494, z: 0.00007247925} + - {x: 0.9874671, y: 6.0546494, z: 0.00006866455} + - {x: 5.4768524, y: 6.0546494, z: 0.00007247925} + - {x: 5.4768515, y: 19.741814, z: 0.0001411438} + - {x: 0.9874668, y: 19.741814, z: 0.0001411438} + - {x: 0.9874671, y: 6.0546494, z: 0.00006866455} + - {x: 0.74059963, y: 1, z: 2.774189} + - {x: 0.9874668, y: 1, z: 2.774189} + - {x: 0.9874671, y: 6.0546494, z: 0.00006866455} + - {x: 0.7406009, y: 6.0546494, z: 0.00006866455} + - {x: 0.9874671, y: 6.0546494, z: 0.00006866455} + - {x: 0.9874668, y: 19.741814, z: 0.0001411438} + - {x: 23.981503, y: 1.0000038, z: -0.96855927} + - {x: 13.933051, y: 1.0000038, z: -0.96855927} + - {x: 13.933052, y: 6.054653, z: -0.9684868} + - {x: 23.981503, y: 6.054653, z: -0.9684906} + - {x: 13.933052, y: 6.054653, z: -0.9684868} + - {x: 13.933051, y: 19.741821, z: -0.9684181} + - {x: 23.981503, y: 19.741821, z: -0.96842194} + - {x: 23.981503, y: 6.054653, z: -0.9684906} + - {x: 24.236126, y: 1, z: -28.970829} + - {x: 24.236126, y: 6.0546494, z: -24.999928} + - {x: 23.981503, y: 1, z: 2.774189} + - {x: 23.981503, y: 6.0546494, z: 0.00007247925} + - {x: 24.108814, y: 6.0546494, z: 0.00007247925} + - {x: 24.108814, y: 19.741814, z: 0.0001411438} + - {x: 23.981503, y: 19.741814, z: 0.0001411438} + - {x: 23.981503, y: 6.0546494, z: 0.00007247925} + - {x: 13.933051, y: 1, z: 2.774189} + - {x: 23.981503, y: 1, z: 2.774189} + - {x: 23.981503, y: 6.0546494, z: 0.00007247925} + - {x: 13.933052, y: 6.0546494, z: 0.00007247925} + - {x: 23.981503, y: 6.0546494, z: 0.00007247925} + - {x: 23.981503, y: 19.741814, z: 0.0001411438} + - {x: 13.933051, y: 19.741814, z: 0.0001411438} + - {x: 13.933052, y: 6.0546494, z: 0.00007247925} + - {x: 9.966236, y: 1, z: 2.774189} + - {x: 13.933051, y: 1, z: 2.774189} + - {x: 13.933052, y: 6.0546494, z: 0.00007247925} + - {x: 9.966237, y: 6.0546494, z: 0.00007247925} + - {x: 13.933052, y: 6.0546494, z: 0.00007247925} + - {x: 13.933051, y: 19.741814, z: 0.0001411438} + - {x: 9.966236, y: 19.741814, z: 0.0001411438} + - {x: 9.966237, y: 6.0546494, z: 0.00007247925} + - {x: 13.933051, y: 1.0000038, z: -0.96855927} + - {x: 9.966236, y: 1.0000038, z: -0.96855927} + - {x: 9.966237, y: 6.054653, z: -0.9684868} + - {x: 13.933052, y: 6.054653, z: -0.9684868} + - {x: 9.966237, y: 6.054653, z: -0.9684868} + - {x: 9.966236, y: 19.741821, z: -0.9684181} + - {x: 13.933051, y: 19.741821, z: -0.9684181} + - {x: 13.933052, y: 6.054653, z: -0.9684868} + - {x: 5.4768515, y: 1, z: 2.774189} + - {x: 9.966236, y: 1, z: 2.774189} + - {x: 9.966237, y: 6.0546494, z: 0.00007247925} + - {x: 5.4768524, y: 6.0546494, z: 0.00007247925} + - {x: 9.966237, y: 6.0546494, z: 0.00007247925} + - {x: 9.966236, y: 19.741814, z: 0.0001411438} + - {x: 5.4768515, y: 19.741814, z: 0.0001411438} + - {x: 5.4768524, y: 6.0546494, z: 0.00007247925} + - {x: 9.966236, y: 1.0000038, z: -0.96855927} + - {x: 5.4768515, y: 1.0000038, z: -0.96855927} + - {x: 5.4768524, y: 6.054653, z: -0.9684906} + - {x: 9.966237, y: 6.054653, z: -0.9684868} + - {x: 5.4768524, y: 6.054653, z: -0.9684906} + - {x: 5.4768515, y: 19.741821, z: -0.9684181} + - {x: 9.966236, y: 19.741821, z: -0.9684181} + - {x: 9.966237, y: 6.054653, z: -0.9684868} + - {x: 5.4768515, y: 1.0000038, z: -0.96855927} + - {x: 0.9874668, y: 1.0000038, z: -0.96855927} + - {x: 0.9874672, y: 6.054653, z: -0.9684906} + - {x: 5.4768524, y: 6.054653, z: -0.9684906} + - {x: 0.9874672, y: 6.054653, z: -0.9684906} + - {x: 0.9874668, y: 19.741821, z: -0.96842194} + - {x: 5.4768515, y: 19.741821, z: -0.9684181} + - {x: 5.4768524, y: 6.054653, z: -0.9684906} + - {x: 24.363438, y: 1, z: -28.970829} + - {x: 24.363438, y: 6.0546494, z: -24.999928} + - {x: 24.490751, y: 1, z: -28.970829} + - {x: 24.490751, y: 6.0546494, z: -24.999928} + - {x: 24.872688, y: 1, z: -28.970829} + - {x: 24.872688, y: 6.0546494, z: -24.999928} + - {x: 24.618065, y: 1, z: -28.970829} + - {x: 24.618065, y: 6.0546494, z: -24.999928} + - {x: 28.211613, y: 1.0000019, z: -0.48428154} + - {x: 28.211613, y: 1.0000038, z: -0.9685612} + - {x: 25, y: 6.054653, z: -0.9684906} + - {x: 25, y: 6.0546494, z: -0.48421097} + - {x: 25, y: 6.054653, z: -0.9684906} + - {x: 25, y: 19.741821, z: -0.96842194} + - {x: 25, y: 19.741814, z: -0.4841385} + - {x: 25, y: 6.0546494, z: -0.48421097} + - {x: 24.96975, y: 1, z: -28.970829} + - {x: 24.96975, y: 6.0546494, z: -24.999928} + - {x: 24.745377, y: 1, z: -28.970829} + - {x: 24.745377, y: 6.0546494, z: -24.999928} + - {x: 24.108814, y: 1, z: 2.774189} + - {x: 24.108814, y: 6.0546494, z: 0.00007247925} + - {x: 24.236126, y: 6.0546494, z: 0.00007247925} + - {x: 24.236126, y: 19.741814, z: 0.0001411438} + - {x: 24.108814, y: 19.741814, z: 0.0001411438} + - {x: 24.108814, y: 6.0546494, z: 0.00007247925} + - {x: 24.363438, y: 1, z: 2.774189} + - {x: 24.363438, y: 6.0546494, z: 0.00007247925} + - {x: 24.490751, y: 6.0546494, z: 0.00007247925} + - {x: 24.490751, y: 19.741814, z: 0.0001411438} + - {x: 24.363438, y: 19.741814, z: 0.0001411438} + - {x: 24.363438, y: 6.0546494, z: 0.00007247925} + - {x: 24.236126, y: 1, z: 2.774189} + - {x: 24.236126, y: 6.0546494, z: 0.00007247925} + - {x: 24.363438, y: 6.0546494, z: 0.00007247925} + - {x: 24.363438, y: 19.741814, z: 0.0001411438} + - {x: 24.236126, y: 19.741814, z: 0.0001411438} + - {x: 24.236126, y: 6.0546494, z: 0.00007247925} + - {x: 24.49075, y: 1, z: 2.774189} + - {x: 24.490751, y: 6.0546494, z: 0.00007247925} + - {x: 24.618065, y: 6.0546494, z: 0.00007247925} + - {x: 24.618065, y: 19.741814, z: 0.0001411438} + - {x: 24.490751, y: 19.741814, z: 0.0001411438} + - {x: 24.490751, y: 6.0546494, z: 0.00007247925} + - {x: 24.618065, y: 1, z: 2.774189} + - {x: 24.618065, y: 6.0546494, z: 0.00007247925} + - {x: 24.745377, y: 6.0546494, z: 0.00007247925} + - {x: 24.745377, y: 19.741814, z: 0.0001411438} + - {x: 24.618065, y: 19.741814, z: 0.0001411438} + - {x: 24.618065, y: 6.0546494, z: 0.00007247925} + - {x: 24.745377, y: 1, z: 2.774189} + - {x: 24.745377, y: 6.0546494, z: 0.00007247925} + - {x: 24.872688, y: 6.0546494, z: 0.00007247925} + - {x: 24.872688, y: 19.741814, z: 0.0001411438} + - {x: 24.745377, y: 19.741814, z: 0.0001411438} + - {x: 24.745377, y: 6.0546494, z: 0.00007247925} + - {x: 28.211613, y: 1, z: 2.7439365} + - {x: 28.211613, y: 1.0000019, z: -0.48428154} + - {x: 25, y: 6.0546494, z: -0.48421097} + - {x: 25, y: 6.0546494, z: -0.03017752} + - {x: 25, y: 6.0546494, z: -0.48421097} + - {x: 25, y: 19.741814, z: -0.4841385} + - {x: 25, y: 19.741814, z: -0.030108856} + - {x: 25, y: 6.0546494, z: -0.03017752} + - {x: 24.872688, y: 1, z: 2.774189} + - {x: 24.96975, y: 1, z: 2.774189} + - {x: 24.96975, y: 6.0546494, z: 0.00007247925} + - {x: 24.872688, y: 6.0546494, z: 0.00007247925} + - {x: 24.96975, y: 6.0546494, z: 0.00007247925} + - {x: 24.96975, y: 19.741814, z: 0.0001411438} + - {x: 24.872688, y: 19.741814, z: 0.0001411438} + - {x: 24.872688, y: 6.0546494, z: 0.00007247925} + - {x: 23.981503, y: 1, z: -28.970829} + - {x: 13.963301, y: 1, z: -28.970829} + - {x: 13.963302, y: 6.0546494, z: -24.999928} + - {x: 23.981503, y: 6.0546494, z: -24.999928} + - {x: 28.211613, y: 1.0000038, z: -0.9685612} + - {x: 28.211613, y: 0.9999924, z: -23.954767} + - {x: 25, y: 6.0546417, z: -23.954693} + - {x: 25, y: 6.054653, z: -0.9684906} + - {x: 25, y: 6.0546417, z: -23.954693} + - {x: 25, y: 19.741806, z: -23.954624} + - {x: 25, y: 19.741821, z: -0.96842194} + - {x: 25, y: 6.054653, z: -0.9684906} + - {x: 23.981503, y: 0.9999924, z: -23.954765} + - {x: 23.981503, y: 1.0000038, z: -0.96855927} + - {x: 23.981503, y: 6.054653, z: -0.9684906} + - {x: 23.981503, y: 6.0546417, z: -23.954693} + - {x: 23.981503, y: 6.054653, z: -0.9684906} + - {x: 23.981503, y: 19.741821, z: -0.96842194} + - {x: 23.981503, y: 19.741806, z: -23.954624} + - {x: 23.981503, y: 6.0546417, z: -23.954693} + - {x: 14.133051, y: 0.9999924, z: -23.954765} + - {x: 23.981503, y: 0.9999924, z: -23.954765} + - {x: 23.981503, y: 6.0546417, z: -23.954693} + - {x: 14.133052, y: 6.0546417, z: -23.954693} + - {x: 28.211613, y: 0.9999924, z: -23.954767} + - {x: 28.211613, y: 1, z: -24.969751} + - {x: 25, y: 6.0546494, z: -24.969677} + - {x: 25, y: 6.0546417, z: -23.954693} + - {x: 25, y: 6.0546494, z: -24.969677} + - {x: 25, y: 19.741814, z: -24.969608} + - {x: 25, y: 19.741806, z: -23.954624} + - {x: 25, y: 6.0546417, z: -23.954693} + - {x: 13.933051, y: 0.99999976, z: -24.96975} + - {x: 13.933051, y: 0.9999938, z: -24.154766} + - {x: 13.933052, y: 6.054643, z: -24.154694} + - {x: 13.933052, y: 6.0546494, z: -24.969677} + - {x: 9.966236, y: 19.741806, z: -23.954624} + - {x: 9.966237, y: 6.2546415, z: -23.95469} + - {x: 13.942982, y: 19.741806, z: -23.954624} + - {x: 13.942983, y: 6.2546415, z: -23.95469} + - {x: 12.226609, y: 27.945488, z: -13.848587} + - {x: 12.226609, y: 27.945488, z: -13.735809} + - {x: 12.655696, y: 27.945488, z: -13.848587} + - {x: 12.655696, y: 27.945488, z: -13.735809} + - {x: 23.981503, y: 19.741814, z: -24.999859} + - {x: 13.933051, y: 19.741814, z: -24.999859} + - {x: 13.738841, y: 27.945488, z: -13.848587} + - {x: 12.654625, y: 27.945488, z: -13.848587} + - {x: 25, y: 19.741821, z: -0.96842194} + - {x: 25, y: 19.741806, z: -23.954624} + - {x: 13.848736, y: 27.945488, z: -11.255619} + - {x: 13.848736, y: 27.945488, z: -13.735809} + - {x: 25, y: 19.741814, z: -0.4841385} + - {x: 25, y: 19.741821, z: -0.96842194} + - {x: 13.848736, y: 27.945488, z: -11.203365} + - {x: 13.848736, y: 27.945488, z: -11.255619} + - {x: 23.981503, y: 19.741814, z: 0.0001411438} + - {x: 24.108814, y: 19.741814, z: 0.0001411438} + - {x: 13.738841, y: 27.945488, z: -11.151112} + - {x: 13.752578, y: 27.945488, z: -11.151112} + - {x: 24.108814, y: 19.741814, z: 0.0001411438} + - {x: 24.236126, y: 19.741814, z: 0.0001411438} + - {x: 13.752578, y: 27.945488, z: -11.151112} + - {x: 13.766315, y: 27.945488, z: -11.151112} + - {x: 24.872688, y: 19.741814, z: -24.999859} + - {x: 24.745377, y: 19.741814, z: -24.999859} + - {x: 13.834999, y: 27.945488, z: -13.848587} + - {x: 13.821262, y: 27.945488, z: -13.848587} + - {x: 13.933051, y: 19.741814, z: 0.0001411438} + - {x: 23.981503, y: 19.741814, z: 0.0001411438} + - {x: 12.654625, y: 27.945488, z: -11.151112} + - {x: 13.738841, y: 27.945488, z: -11.151112} + - {x: 24.745377, y: 19.741814, z: -24.999859} + - {x: 24.618065, y: 19.741814, z: -24.999859} + - {x: 13.821262, y: 27.945488, z: -13.848587} + - {x: 13.807526, y: 27.945488, z: -13.848587} + - {x: 24.618065, y: 19.741814, z: -24.999859} + - {x: 24.490751, y: 19.741814, z: -24.999859} + - {x: 13.807526, y: 27.945488, z: -13.848587} + - {x: 13.793789, y: 27.945488, z: -13.848587} + - {x: 24.363438, y: 19.741814, z: 0.0001411438} + - {x: 24.490751, y: 19.741814, z: 0.0001411438} + - {x: 13.780052, y: 27.945488, z: -11.151112} + - {x: 13.793789, y: 27.945488, z: -11.151112} + - {x: 24.490751, y: 19.741814, z: -24.999859} + - {x: 24.363438, y: 19.741814, z: -24.999859} + - {x: 13.793789, y: 27.945488, z: -13.848587} + - {x: 13.780052, y: 27.945488, z: -13.848587} + - {x: 24.236126, y: 19.741814, z: 0.0001411438} + - {x: 24.363438, y: 19.741814, z: 0.0001411438} + - {x: 13.766315, y: 27.945488, z: -11.151112} + - {x: 13.780052, y: 27.945488, z: -11.151112} + - {x: 24.363438, y: 19.741814, z: -24.999859} + - {x: 24.236126, y: 19.741814, z: -24.999859} + - {x: 13.780052, y: 27.945488, z: -13.848587} + - {x: 13.766315, y: 27.945488, z: -13.848587} + - {x: 24.490751, y: 19.741814, z: 0.0001411438} + - {x: 24.618065, y: 19.741814, z: 0.0001411438} + - {x: 13.793789, y: 27.945488, z: -11.151112} + - {x: 13.807526, y: 27.945488, z: -11.151112} + - {x: 24.236126, y: 19.741814, z: -24.999859} + - {x: 24.108814, y: 19.741814, z: -24.999859} + - {x: 13.766315, y: 27.945488, z: -13.848587} + - {x: 13.752578, y: 27.945488, z: -13.848587} + - {x: 23.981503, y: 19.741806, z: -23.954624} + - {x: 23.981503, y: 19.741821, z: -0.96842194} + - {x: 13.738841, y: 27.945488, z: -13.735809} + - {x: 13.738841, y: 27.945488, z: -11.255619} + - {x: 9.966236, y: 19.741814, z: 0.0001411438} + - {x: 13.933051, y: 19.741814, z: 0.0001411438} + - {x: 12.226609, y: 27.945488, z: -11.151112} + - {x: 12.654625, y: 27.945488, z: -11.151112} + - {x: 24.108814, y: 19.741814, z: -24.999859} + - {x: 23.981503, y: 19.741814, z: -24.999859} + - {x: 13.752578, y: 27.945488, z: -13.848587} + - {x: 13.738841, y: 27.945488, z: -13.848587} + - {x: 13.933051, y: 19.741806, z: -23.954624} + - {x: 23.981503, y: 19.741806, z: -23.954624} + - {x: 12.654625, y: 27.945488, z: -13.735809} + - {x: 13.738841, y: 27.945488, z: -13.735809} + - {x: 13.933051, y: 19.741814, z: -24.999859} + - {x: 13.933051, y: 19.741806, z: -23.954624} + - {x: 12.654625, y: 27.945488, z: -13.848587} + - {x: 12.654625, y: 27.945488, z: -13.735809} + - {x: 24.618065, y: 19.741814, z: 0.0001411438} + - {x: 24.745377, y: 19.741814, z: 0.0001411438} + - {x: 13.807526, y: 27.945488, z: -11.151112} + - {x: 13.821262, y: 27.945488, z: -11.151112} + - {x: 24.745377, y: 19.741814, z: 0.0001411438} + - {x: 24.872688, y: 19.741814, z: 0.0001411438} + - {x: 13.821262, y: 27.945488, z: -11.151112} + - {x: 13.834999, y: 27.945488, z: -11.151112} + - {x: 23.981503, y: 19.741821, z: -0.96842194} + - {x: 13.933051, y: 19.741821, z: -0.9684181} + - {x: 13.738841, y: 27.945488, z: -11.255619} + - {x: 12.654625, y: 27.945488, z: -11.255619} + - {x: 13.933051, y: 19.741821, z: -0.9684181} + - {x: 9.966236, y: 19.741821, z: -0.9684181} + - {x: 12.654625, y: 27.945488, z: -11.255619} + - {x: 12.226609, y: 27.945488, z: -11.255619} + - {x: 5.4768515, y: 19.741814, z: 0.0001411438} + - {x: 9.966236, y: 19.741814, z: 0.0001411438} + - {x: 11.74221, y: 27.945488, z: -11.151112} + - {x: 12.226609, y: 27.945488, z: -11.151112} + - {x: 9.966236, y: 19.741821, z: -0.9684181} + - {x: 5.4768515, y: 19.741821, z: -0.9684181} + - {x: 12.226609, y: 27.945488, z: -11.255619} + - {x: 11.74221, y: 27.945488, z: -11.255619} + - {x: 0.7406006, y: 19.741814, z: 0.0001411438} + - {x: 0.9874668, y: 19.741814, z: 0.0001411438} + - {x: 11.2311735, y: 27.945488, z: -11.151112} + - {x: 11.257811, y: 27.945488, z: -11.151112} + - {x: 0.9874668, y: 19.741814, z: 0.0001411438} + - {x: 5.4768515, y: 19.741814, z: 0.0001411438} + - {x: 11.257811, y: 27.945488, z: -11.151112} + - {x: 11.74221, y: 27.945488, z: -11.151112} + - {x: 5.4768515, y: 19.741821, z: -0.9684181} + - {x: 0.9874668, y: 19.741821, z: -0.96842194} + - {x: 11.74221, y: 27.945488, z: -11.255619} + - {x: 11.257811, y: 27.945488, z: -11.255619} + - {x: 0.49373436, y: 19.741814, z: -24.999859} + - {x: 0.24686623, y: 19.741814, z: -24.999859} + - {x: 11.204537, y: 27.945488, z: -13.848587} + - {x: 11.1779, y: 27.945488, z: -13.848587} + - {x: 0.9874668, y: 19.741814, z: -24.999859} + - {x: 0.7406006, y: 19.741814, z: -24.999859} + - {x: 11.257811, y: 27.945488, z: -13.848587} + - {x: 11.2311735, y: 27.945488, z: -13.848587} + - {x: 0, y: 19.741821, z: -0.96842194} + - {x: 0, y: 19.741814, z: -0.4841385} + - {x: 11.151264, y: 27.945488, z: -11.255619} + - {x: 11.151264, y: 27.945488, z: -11.203365} + - {x: 5.4768515, y: 19.741814, z: -24.999859} + - {x: 0.9874668, y: 19.741814, z: -24.999859} + - {x: 11.74221, y: 27.945488, z: -13.848587} + - {x: 11.257811, y: 27.945488, z: -13.848587} + - {x: 0.24686623, y: 19.741814, z: 0.0001411438} + - {x: 0.49373436, y: 19.741814, z: 0.0001411438} + - {x: 11.1779, y: 27.945488, z: -11.151112} + - {x: 11.204537, y: 27.945488, z: -11.151112} + - {x: 0.49373436, y: 19.741814, z: 0.0001411438} + - {x: 0.7406006, y: 19.741814, z: 0.0001411438} + - {x: 11.204537, y: 27.945488, z: -11.151112} + - {x: 11.2311735, y: 27.945488, z: -11.151112} + - {x: 0.7406006, y: 19.741814, z: -24.999859} + - {x: 0.49373436, y: 19.741814, z: -24.999859} + - {x: 11.2311735, y: 27.945488, z: -13.848587} + - {x: 11.204537, y: 27.945488, z: -13.848587} + - {x: 0.9874668, y: 19.741821, z: -0.96842194} + - {x: 0.9874668, y: 19.741806, z: -23.954624} + - {x: 11.257811, y: 27.945488, z: -11.255619} + - {x: 11.257811, y: 27.945488, z: -13.735809} + - {x: 0, y: 19.741806, z: -23.954624} + - {x: 0, y: 19.741821, z: -0.96842194} + - {x: 11.151264, y: 27.945488, z: -13.735809} + - {x: 11.151264, y: 27.945488, z: -11.255619} + - {x: 0.9874668, y: 19.741806, z: -23.954624} + - {x: 5.4768515, y: 19.741806, z: -23.954624} + - {x: 11.257811, y: 27.945488, z: -13.735809} + - {x: 11.74221, y: 27.945488, z: -13.735809} + - {x: 9.966236, y: 19.741814, z: -24.999859} + - {x: 5.4768515, y: 19.741814, z: -24.999859} + - {x: 12.226609, y: 27.945488, z: -13.848587} + - {x: 11.74221, y: 27.945488, z: -13.848587} + - {x: 13.942982, y: 19.741814, z: -24.999859} + - {x: 9.966236, y: 19.741814, z: -24.999859} + - {x: 12.655696, y: 27.945488, z: -13.848587} + - {x: 12.226609, y: 27.945488, z: -13.848587} + - {x: 5.4768515, y: 19.741806, z: -23.954624} + - {x: 9.966236, y: 19.741806, z: -23.954624} + - {x: 11.74221, y: 27.945488, z: -13.735809} + - {x: 12.226609, y: 27.945488, z: -13.735809} + - {x: 9.966236, y: 19.741806, z: -23.954624} + - {x: 13.942982, y: 19.741806, z: -23.954624} + - {x: 12.226609, y: 27.945488, z: -13.735809} + - {x: 12.655696, y: 27.945488, z: -13.735809} + - {x: 13.942982, y: 19.741806, z: -23.954624} + - {x: 13.942982, y: 19.741814, z: -24.999859} + - {x: 12.655696, y: 27.945488, z: -13.735809} + - {x: 12.655696, y: 27.945488, z: -13.848587} + - {x: 9.935987, y: 6.0546494, z: -24.999928} + - {x: 9.9359865, y: 1, z: -28.970829} + - {x: 9.966237, y: 6.0546494, z: -24.969677} + - {x: 9.966236, y: 0.99999976, z: -24.96975} + - {x: 5.4768515, y: 19.741814, z: -24.999859} + - {x: 9.966236, y: 19.741814, z: -24.999859} + - {x: 9.966237, y: 6.0848994, z: -24.999928} + - {x: 9.935987, y: 6.0546494, z: -24.999928} + - {x: 5.4768524, y: 6.0546494, z: -24.999928} + - {x: 9.966237, y: 6.0546494, z: -24.969677} + - {x: 9.975097, y: 6.0546494, z: -24.978537} + - {x: 13.942983, y: 6.0546494, z: -24.969677} + - {x: 13.942983, y: 6.054643, z: -24.154694} + - {x: 9.966237, y: 6.054643, z: -24.154694} + - {x: 9.966236, y: 19.741814, z: -24.999859} + - {x: 13.942982, y: 19.741814, z: -24.999859} + - {x: 13.942983, y: 6.0848994, z: -24.999928} + - {x: 9.975097, y: 6.0760393, z: -24.999928} + - {x: 9.966237, y: 6.0848994, z: -24.999928} + - {x: 5.4768505, y: 0.0625, z: -28.970829} + - {x: 5.4768505, y: 0.09375, z: -28.970829} + - {x: 5.4768505, y: 0.125, z: -28.970829} + - {x: 5.4768505, y: 0.15625, z: -28.970829} + - {x: 5.4768505, y: 0.1875, z: -28.970829} + - {x: 5.4768505, y: 0.21875, z: -28.970829} + - {x: 5.4768505, y: 0.25, z: -28.970829} + - {x: 5.4768505, y: 0.28125, z: -28.970829} + - {x: 5.4768505, y: 0.3125, z: -28.970829} + - {x: 5.4768505, y: 0.34375, z: -28.970829} + - {x: 5.4768505, y: 0.375, z: -28.970829} + - {x: 5.4768505, y: 0.40625, z: -28.970829} + - {x: 5.4768505, y: 0.4375, z: -28.970829} + - {x: 5.4768505, y: 0.46875, z: -28.970829} + - {x: 5.4768505, y: 0.5, z: -28.970829} + - {x: 5.4768505, y: 0.53125, z: -28.970829} + - {x: 5.4768505, y: 0.5625, z: -28.970829} + - {x: 5.4768505, y: 0.59375, z: -28.970829} + - {x: 5.4768505, y: 0.625, z: -28.970829} + - {x: 5.4768505, y: 0.65625, z: -28.970829} + - {x: 5.4768505, y: 0.6875, z: -28.970829} + - {x: 5.4768505, y: 0.71875, z: -28.970829} + - {x: 5.4768505, y: 0.75, z: -28.970829} + - {x: 5.4768505, y: 0.78125, z: -28.970829} + - {x: 5.4768505, y: 0.8125, z: -28.970829} + - {x: 5.4768505, y: 0.84375, z: -28.970829} + - {x: 5.4768505, y: 0.875, z: -28.970829} + - {x: 5.4768505, y: 0.90625, z: -28.970829} + - {x: 5.4768505, y: 0.9375, z: -28.970829} + - {x: 5.4768505, y: 0.96875, z: -28.970829} + - {x: 5.4768505, y: 1, z: -28.970829} + - {x: 9.9359865, y: 1, z: -28.970829} + - {x: 9.966236, y: 0.9697499, z: -28.970829} + - {x: 9.966236, y: 0.96875, z: -28.970829} + - {x: 9.966236, y: 0.9375, z: -28.970829} + - {x: 9.966236, y: 0.90625, z: -28.970829} + - {x: 9.966236, y: 0.875, z: -28.970829} + - {x: 9.966236, y: 0.84375, z: -28.970829} + - {x: 9.966236, y: 0.8125, z: -28.970829} + - {x: 9.966236, y: 0.78125, z: -28.970829} + - {x: 9.966236, y: 0.75, z: -28.970829} + - {x: 9.966236, y: 0.71875, z: -28.970829} + - {x: 9.966236, y: 0.6875, z: -28.970829} + - {x: 9.966236, y: 0.65625, z: -28.970829} + - {x: 9.966236, y: 0.625, z: -28.970829} + - {x: 9.966236, y: 0.59375, z: -28.970829} + - {x: 9.966236, y: 0.5625, z: -28.970829} + - {x: 9.966236, y: 0.53125, z: -28.970829} + - {x: 9.966236, y: 0.5, z: -28.970829} + - {x: 9.966236, y: 0.46875, z: -28.970829} + - {x: 9.966236, y: 0.4375, z: -28.970829} + - {x: 9.966236, y: 0.40625, z: -28.970829} + - {x: 9.966236, y: 0.375, z: -28.970829} + - {x: 9.966236, y: 0.34375, z: -28.970829} + - {x: 9.966236, y: 0.3125, z: -28.970829} + - {x: 9.966236, y: 0.28125, z: -28.970829} + - {x: 9.966236, y: 0.25, z: -28.970829} + - {x: 9.966236, y: 0.21875, z: -28.970829} + - {x: 9.966236, y: 0.1875, z: -28.970829} + - {x: 9.966236, y: 0.15625, z: -28.970829} + - {x: 9.966236, y: 0.125, z: -28.970829} + - {x: 9.966236, y: 0.09375, z: -28.970829} + - {x: 9.966236, y: 0.0625, z: -28.970829} + - {x: 9.966236, y: 0.03125, z: -28.970829} + - {x: 5.4768505, y: 0.03125, z: -28.970829} + - {x: 9.935987, y: 6.0546494, z: -24.999928} + - {x: 9.966237, y: 6.062212, z: -24.992363} + - {x: 9.966237, y: 6.0546494, z: -24.969677} + - {x: 9.966237, y: 6.0848994, z: -24.999928} + - {x: 9.966237, y: 6.062212, z: -24.992363} + - {x: 9.935987, y: 6.0546494, z: -24.999928} + - {x: 9.966236, y: 0.99999976, z: -24.96975} + - {x: 9.966236, y: 0.9924374, z: -24.992437} + - {x: 9.9359865, y: 1, z: -28.970829} + - {x: 9.9359865, y: 1, z: -28.970829} + - {x: 9.966236, y: 0.9924374, z: -24.992437} + - {x: 9.966236, y: 0.9697499, z: -28.970829} + - {x: 9.966236, y: 0.9697499, z: -28.970829} + - {x: 9.966236, y: 0.9924374, z: -24.992437} + - {x: 9.996486, y: 1, z: -28.970829} + - {x: 9.996486, y: 1, z: -28.970829} + - {x: 9.966236, y: 0.9924374, z: -24.992437} + - {x: 9.966236, y: 0.99999976, z: -24.96975} + - {x: 9.966237, y: 6.054643, z: -24.154694} + - {x: 9.966236, y: 0.9999938, z: -24.154766} + - {x: 9.766237, y: 6.0546417, z: -23.954693} + - {x: 9.766236, y: 0.9999924, z: -23.954765} + - {x: 9.966237, y: 6.2546415, z: -23.95469} + - {x: 13.942983, y: 6.2546415, z: -23.95469} + - {x: 9.966237, y: 6.054643, z: -24.154694} + - {x: 13.942983, y: 6.054643, z: -24.154694} + - {x: 14.133052, y: 6.0546417, z: -23.954693} + - {x: 14.133051, y: 0.9999924, z: -23.954765} + - {x: 13.933052, y: 6.054643, z: -24.154694} + - {x: 13.933051, y: 0.9999938, z: -24.154766} + - {x: 9.766237, y: 6.0546417, z: -23.954693} + - {x: 9.966237, y: 6.2546415, z: -23.95469} + - {x: 9.966236, y: 19.741806, z: -23.954624} + - {x: 5.4768515, y: 19.741806, z: -23.954624} + - {x: 5.4768524, y: 6.0546417, z: -23.954693} + - {x: 10.166236, y: 0.9999924, z: -23.954765} + - {x: 9.966236, y: 0.9999925, z: -23.754765} + - {x: 9.966236, y: 1.0000038, z: -0.96855927} + - {x: 13.933051, y: 1.0000038, z: -0.96855927} + - {x: 13.933051, y: 0.9999925, z: -23.754765} + - {x: 13.733051, y: 0.9999924, z: -23.954765} + - {x: 0.9874668, y: 0.9999924, z: -23.954765} + - {x: 0.9874668, y: 1.0000038, z: -0.96855927} + - {x: 5.4768515, y: 1.0000038, z: -0.96855927} + - {x: 9.966236, y: 1.0000038, z: -0.96855927} + - {x: 9.966236, y: 0.9999925, z: -23.754765} + - {x: 9.766236, y: 0.9999924, z: -23.954765} + - {x: 5.4768515, y: 0.9999924, z: -23.954765} + - {x: 23.981503, y: 6.0546417, z: -23.954693} + - {x: 23.981503, y: 19.741806, z: -23.954624} + - {x: 13.933051, y: 19.741806, z: -23.954624} + - {x: 13.933052, y: 6.2546415, z: -23.95469} + - {x: 14.133052, y: 6.0546417, z: -23.954693} + - {x: 14.133051, y: 0.9999924, z: -23.954765} + - {x: 13.933051, y: 0.9999925, z: -23.754765} + - {x: 13.933051, y: 1.0000038, z: -0.96855927} + - {x: 23.981503, y: 1.0000038, z: -0.96855927} + - {x: 23.981503, y: 0.9999924, z: -23.954765} + - {x: 9.966237, y: 6.054643, z: -24.154694} + - {x: 9.766237, y: 6.0546417, z: -23.954693} + - {x: 9.966237, y: 6.2546415, z: -23.95469} + - {x: 9.766236, y: 0.9999924, z: -23.954765} + - {x: 9.966236, y: 0.9999927, z: -23.954765} + - {x: 9.966236, y: 0.9999938, z: -24.154766} + - {x: 9.966236, y: 0.9999938, z: -24.154766} + - {x: 9.966236, y: 0.9999927, z: -23.954765} + - {x: 10.166236, y: 0.9999924, z: -23.954765} + - {x: 10.166236, y: 0.9999924, z: -23.954765} + - {x: 9.966236, y: 0.9999927, z: -23.954765} + - {x: 9.966236, y: 0.9999925, z: -23.754765} + - {x: 9.966236, y: 0.9999925, z: -23.754765} + - {x: 9.966236, y: 0.9999927, z: -23.954765} + - {x: 9.766236, y: 0.9999924, z: -23.954765} + - {x: 14.133052, y: 6.0546417, z: -23.954693} + - {x: 13.933052, y: 6.054643, z: -24.154694} + - {x: 13.933052, y: 6.2546415, z: -23.95469} + - {x: 13.933051, y: 0.9999938, z: -24.154766} + - {x: 13.933051, y: 0.9999927, z: -23.954765} + - {x: 14.133051, y: 0.9999924, z: -23.954765} + - {x: 14.133051, y: 0.9999924, z: -23.954765} + - {x: 13.933051, y: 0.9999927, z: -23.954765} + - {x: 13.933051, y: 0.9999925, z: -23.754765} + - {x: 13.933051, y: 0.9999925, z: -23.754765} + - {x: 13.933051, y: 0.9999927, z: -23.954765} + - {x: 13.733051, y: 0.9999924, z: -23.954765} + - {x: 13.733051, y: 0.9999924, z: -23.954765} + - {x: 13.933051, y: 0.9999927, z: -23.954765} + - {x: 13.933051, y: 0.9999938, z: -24.154766} + - {x: 9.975097, y: 6.0546494, z: -24.978537} + - {x: 13.942983, y: 6.0546494, z: -24.969677} + - {x: 9.975097, y: 6.0760393, z: -24.999928} + - {x: 13.942983, y: 6.0848994, z: -24.999928} + - {x: 13.963301, y: 1, z: -28.970829} + - {x: 13.963302, y: 6.0546494, z: -24.999928} + - {x: 13.933051, y: 0.99999976, z: -24.96975} + - {x: 13.933052, y: 6.0546494, z: -24.969677} + - {x: 9.966237, y: 6.062212, z: -24.992363} + - {x: 9.967967, y: 6.0617795, z: -24.992796} + - {x: 9.975097, y: 6.0546494, z: -24.978537} + - {x: 9.966237, y: 6.0546494, z: -24.969677} + - {x: 9.966237, y: 6.062212, z: -24.992363} + - {x: 9.966237, y: 6.0848994, z: -24.999928} + - {x: 9.975097, y: 6.0760393, z: -24.999928} + - {x: 9.967967, y: 6.0617795, z: -24.992796} + - {x: 13.942983, y: 6.2546415, z: -23.95469} + - {x: 13.942983, y: 6.054643, z: -24.154694} + - {x: 13.942983, y: 6.0546494, z: -24.969677} + - {x: 13.942983, y: 6.0848994, z: -24.999928} + - {x: 13.942982, y: 19.741814, z: -24.999859} + - {x: 13.942982, y: 19.741806, z: -23.954624} + - {x: 13.933051, y: 0.0625, z: -28.970829} + - {x: 13.933051, y: 0.09375, z: -28.970829} + - {x: 13.933051, y: 0.125, z: -28.970829} + - {x: 13.933051, y: 0.15625, z: -28.970829} + - {x: 13.933051, y: 0.1875, z: -28.970829} + - {x: 13.933051, y: 0.21875, z: -28.970829} + - {x: 13.933051, y: 0.25, z: -28.970829} + - {x: 13.933051, y: 0.28125, z: -28.970829} + - {x: 13.933051, y: 0.3125, z: -28.970829} + - {x: 13.933051, y: 0.34375, z: -28.970829} + - {x: 13.933051, y: 0.375, z: -28.970829} + - {x: 13.933051, y: 0.40625, z: -28.970829} + - {x: 13.933051, y: 0.4375, z: -28.970829} + - {x: 13.933051, y: 0.46875, z: -28.970829} + - {x: 13.933051, y: 0.5, z: -28.970829} + - {x: 13.933051, y: 0.53125, z: -28.970829} + - {x: 13.933051, y: 0.5625, z: -28.970829} + - {x: 13.933051, y: 0.59375, z: -28.970829} + - {x: 13.933051, y: 0.625, z: -28.970829} + - {x: 13.933051, y: 0.65625, z: -28.970829} + - {x: 13.933051, y: 0.6875, z: -28.970829} + - {x: 13.933051, y: 0.71875, z: -28.970829} + - {x: 13.933051, y: 0.75, z: -28.970829} + - {x: 13.933051, y: 0.78125, z: -28.970829} + - {x: 13.933051, y: 0.8125, z: -28.970829} + - {x: 13.933051, y: 0.84375, z: -28.970829} + - {x: 13.933051, y: 0.875, z: -28.970829} + - {x: 13.933051, y: 0.90625, z: -28.970829} + - {x: 13.933051, y: 0.9375, z: -28.970829} + - {x: 13.933051, y: 0.96875, z: -28.970829} + - {x: 13.933051, y: 0.9697499, z: -28.970829} + - {x: 13.963301, y: 1, z: -28.970829} + - {x: 23.981503, y: 1, z: -28.970829} + - {x: 23.981503, y: 0.96875, z: -28.970829} + - {x: 23.981503, y: 0.9375, z: -28.970829} + - {x: 23.981503, y: 0.90625, z: -28.970829} + - {x: 23.981503, y: 0.875, z: -28.970829} + - {x: 23.981503, y: 0.84375, z: -28.970829} + - {x: 23.981503, y: 0.8125, z: -28.970829} + - {x: 23.981503, y: 0.78125, z: -28.970829} + - {x: 23.981503, y: 0.75, z: -28.970829} + - {x: 23.981503, y: 0.71875, z: -28.970829} + - {x: 23.981503, y: 0.6875, z: -28.970829} + - {x: 23.981503, y: 0.65625, z: -28.970829} + - {x: 23.981503, y: 0.625, z: -28.970829} + - {x: 23.981503, y: 0.59375, z: -28.970829} + - {x: 23.981503, y: 0.5625, z: -28.970829} + - {x: 23.981503, y: 0.53125, z: -28.970829} + - {x: 23.981503, y: 0.5, z: -28.970829} + - {x: 23.981503, y: 0.46875, z: -28.970829} + - {x: 23.981503, y: 0.4375, z: -28.970829} + - {x: 23.981503, y: 0.40625, z: -28.970829} + - {x: 23.981503, y: 0.375, z: -28.970829} + - {x: 23.981503, y: 0.34375, z: -28.970829} + - {x: 23.981503, y: 0.3125, z: -28.970829} + - {x: 23.981503, y: 0.28125, z: -28.970829} + - {x: 23.981503, y: 0.25, z: -28.970829} + - {x: 23.981503, y: 0.21875, z: -28.970829} + - {x: 23.981503, y: 0.1875, z: -28.970829} + - {x: 23.981503, y: 0.15625, z: -28.970829} + - {x: 23.981503, y: 0.125, z: -28.970829} + - {x: 23.981503, y: 0.09375, z: -28.970829} + - {x: 23.981503, y: 0.0625, z: -28.970829} + - {x: 23.981503, y: 0.03125, z: -28.970829} + - {x: 13.933051, y: 0.03125, z: -28.970829} + - {x: 13.9028015, y: 1, z: -28.970829} + - {x: 13.933051, y: 0.9697499, z: -28.970829} + - {x: 13.933051, y: 0.96875, z: -28.970829} + - {x: 13.933051, y: 0.9375, z: -28.970829} + - {x: 13.933051, y: 0.90625, z: -28.970829} + - {x: 13.933051, y: 0.875, z: -28.970829} + - {x: 13.933051, y: 0.84375, z: -28.970829} + - {x: 13.933051, y: 0.8125, z: -28.970829} + - {x: 13.933051, y: 0.78125, z: -28.970829} + - {x: 13.933051, y: 0.75, z: -28.970829} + - {x: 13.933051, y: 0.71875, z: -28.970829} + - {x: 13.933051, y: 0.6875, z: -28.970829} + - {x: 13.933051, y: 0.65625, z: -28.970829} + - {x: 13.933051, y: 0.625, z: -28.970829} + - {x: 13.933051, y: 0.59375, z: -28.970829} + - {x: 13.933051, y: 0.5625, z: -28.970829} + - {x: 13.933051, y: 0.53125, z: -28.970829} + - {x: 13.933051, y: 0.5, z: -28.970829} + - {x: 13.933051, y: 0.46875, z: -28.970829} + - {x: 13.933051, y: 0.4375, z: -28.970829} + - {x: 13.933051, y: 0.40625, z: -28.970829} + - {x: 13.933051, y: 0.375, z: -28.970829} + - {x: 13.933051, y: 0.34375, z: -28.970829} + - {x: 13.933051, y: 0.3125, z: -28.970829} + - {x: 13.933051, y: 0.28125, z: -28.970829} + - {x: 13.933051, y: 0.25, z: -28.970829} + - {x: 13.933051, y: 0.21875, z: -28.970829} + - {x: 13.933051, y: 0.1875, z: -28.970829} + - {x: 13.933051, y: 0.15625, z: -28.970829} + - {x: 13.933051, y: 0.125, z: -28.970829} + - {x: 13.933051, y: 0.09375, z: -28.970829} + - {x: 13.933051, y: 0.0625, z: -28.970829} + - {x: 13.933051, y: 0.03125, z: -28.970829} + - {x: 9.966236, y: 0.03125, z: -28.970829} + - {x: 9.966236, y: 0.0625, z: -28.970829} + - {x: 9.966236, y: 0.09375, z: -28.970829} + - {x: 9.966236, y: 0.125, z: -28.970829} + - {x: 9.966236, y: 0.15625, z: -28.970829} + - {x: 9.966236, y: 0.1875, z: -28.970829} + - {x: 9.966236, y: 0.21875, z: -28.970829} + - {x: 9.966236, y: 0.25, z: -28.970829} + - {x: 9.966236, y: 0.28125, z: -28.970829} + - {x: 9.966236, y: 0.3125, z: -28.970829} + - {x: 9.966236, y: 0.34375, z: -28.970829} + - {x: 9.966236, y: 0.375, z: -28.970829} + - {x: 9.966236, y: 0.40625, z: -28.970829} + - {x: 9.966236, y: 0.4375, z: -28.970829} + - {x: 9.966236, y: 0.46875, z: -28.970829} + - {x: 9.966236, y: 0.5, z: -28.970829} + - {x: 9.966236, y: 0.53125, z: -28.970829} + - {x: 9.966236, y: 0.5625, z: -28.970829} + - {x: 9.966236, y: 0.59375, z: -28.970829} + - {x: 9.966236, y: 0.625, z: -28.970829} + - {x: 9.966236, y: 0.65625, z: -28.970829} + - {x: 9.966236, y: 0.6875, z: -28.970829} + - {x: 9.966236, y: 0.71875, z: -28.970829} + - {x: 9.966236, y: 0.75, z: -28.970829} + - {x: 9.966236, y: 0.78125, z: -28.970829} + - {x: 9.966236, y: 0.8125, z: -28.970829} + - {x: 9.966236, y: 0.84375, z: -28.970829} + - {x: 9.966236, y: 0.875, z: -28.970829} + - {x: 9.966236, y: 0.90625, z: -28.970829} + - {x: 9.966236, y: 0.9375, z: -28.970829} + - {x: 9.966236, y: 0.96875, z: -28.970829} + - {x: 9.966236, y: 0.9697499, z: -28.970829} + - {x: 9.996486, y: 1, z: -28.970829} + - {x: 13.933051, y: 0.9999938, z: -24.154766} + - {x: 13.933051, y: 0.99999976, z: -24.96975} + - {x: 13.9028015, y: 1, z: -28.970829} + - {x: 9.996486, y: 1, z: -28.970829} + - {x: 9.966236, y: 0.99999976, z: -24.96975} + - {x: 9.966236, y: 0.9999938, z: -24.154766} + - {x: 10.166236, y: 0.9999924, z: -23.954765} + - {x: 13.733051, y: 0.9999924, z: -23.954765} + - {x: 13.933051, y: 19.741814, z: -24.999859} + - {x: 23.981503, y: 19.741814, z: -24.999859} + - {x: 23.981503, y: 6.0546494, z: -24.999928} + - {x: 13.963302, y: 6.0546494, z: -24.999928} + - {x: 13.933052, y: 6.0848994, z: -24.999928} + - {x: 13.933052, y: 6.0848994, z: -24.999928} + - {x: 13.933052, y: 6.0546494, z: -24.969677} + - {x: 13.933052, y: 6.054643, z: -24.154694} + - {x: 13.933052, y: 6.2546415, z: -23.95469} + - {x: 13.933051, y: 19.741806, z: -23.954624} + - {x: 13.933051, y: 19.741814, z: -24.999859} + - {x: 9.975097, y: 6.0546494, z: -24.978537} + - {x: 9.975097, y: 6.0760393, z: -24.999928} + - {x: 9.967967, y: 6.0617795, z: -24.992796} + - {x: 13.963301, y: 1, z: -28.970829} + - {x: 13.933051, y: 0.9924374, z: -24.992437} + - {x: 13.933051, y: 0.99999976, z: -24.96975} + - {x: 13.933051, y: 0.99999976, z: -24.96975} + - {x: 13.933051, y: 0.9924374, z: -24.992437} + - {x: 13.9028015, y: 1, z: -28.970829} + - {x: 13.9028015, y: 1, z: -28.970829} + - {x: 13.933051, y: 0.9924374, z: -24.992437} + - {x: 13.933051, y: 0.9697499, z: -28.970829} + - {x: 13.933051, y: 0.9697499, z: -28.970829} + - {x: 13.933051, y: 0.9924374, z: -24.992437} + - {x: 13.963301, y: 1, z: -28.970829} + - {x: 13.963302, y: 6.0546494, z: -24.999928} + - {x: 13.933052, y: 6.0546494, z: -24.969677} + - {x: 13.933052, y: 6.0848994, z: -24.999928} + - {x: 0, y: 19.741814, z: -24.969608} + - {x: 0.00000035417784, y: 6.0546494, z: -24.969677} + - {x: 0.03025, y: 19.741814, z: -24.999859} + - {x: 0.030250357, y: 6.0546494, z: -24.999928} + - {x: 0.00000035417784, y: 6.0546494, z: -24.969677} + - {x: -3.536171, y: 1, z: -24.96975} + - {x: 0.030250357, y: 6.0546494, z: -24.999928} + - {x: 0.030248642, y: 1, z: -28.970829} + - {x: 0.03025, y: 19.741814, z: -24.999859} + - {x: 0.018976001, y: 19.755774, z: -24.980883} + - {x: 11.151264, y: 27.945488, z: -13.848587} + - {x: 11.1779, y: 27.945488, z: -13.848587} + - {x: 0.24686623, y: 19.741814, z: -24.999859} + - {x: 0, y: 19.741806, z: -23.954624} + - {x: 11.151264, y: 27.945488, z: -13.735809} + - {x: 11.151264, y: 27.945488, z: -13.848587} + - {x: 0.018976001, y: 19.755774, z: -24.980883} + - {x: 0, y: 19.741814, z: -24.969608} + - {x: -3.536171, y: 0.9697499, z: -28.970829} + - {x: 0.030248642, y: 1, z: -28.970829} + - {x: 0.24686623, y: 1, z: -28.970829} + - {x: 0.49373436, y: 1, z: -28.970829} + - {x: 0.7405987, y: 1, z: -28.970829} + - {x: 0.9874668, y: 1, z: -28.970829} + - {x: 0.9874668, y: 0.96875, z: -28.970829} + - {x: 0.9874668, y: 0.9375, z: -28.970829} + - {x: 0.9874668, y: 0.90625, z: -28.970829} + - {x: 0.9874668, y: 0.875, z: -28.970829} + - {x: 0.9874668, y: 0.84375, z: -28.970829} + - {x: 0.9874668, y: 0.8125, z: -28.970829} + - {x: 0.9874668, y: 0.78125, z: -28.970829} + - {x: 0.9874668, y: 0.75, z: -28.970829} + - {x: 0.9874668, y: 0.71875, z: -28.970829} + - {x: 0.9874668, y: 0.6875, z: -28.970829} + - {x: 0.9874668, y: 0.65625, z: -28.970829} + - {x: 0.9874668, y: 0.625, z: -28.970829} + - {x: 0.9874668, y: 0.59375, z: -28.970829} + - {x: 0.9874668, y: 0.5625, z: -28.970829} + - {x: 0.9874668, y: 0.53125, z: -28.970829} + - {x: 0.9874668, y: 0.5, z: -28.970829} + - {x: 0.9874668, y: 0.46875, z: -28.970829} + - {x: 0.9874668, y: 0.4375, z: -28.970829} + - {x: 0.9874668, y: 0.40625, z: -28.970829} + - {x: 0.9874668, y: 0.375, z: -28.970829} + - {x: 0.9874668, y: 0.34375, z: -28.970829} + - {x: 0.9874668, y: 0.3125, z: -28.970829} + - {x: 0.9874668, y: 0.28125, z: -28.970829} + - {x: 0.9874668, y: 0.25, z: -28.970829} + - {x: 0.9874668, y: 0.21875, z: -28.970829} + - {x: 0.9874668, y: 0.1875, z: -28.970829} + - {x: 0.9874668, y: 0.15625, z: -28.970829} + - {x: 0.9874668, y: 0.125, z: -28.970829} + - {x: 0.9874668, y: 0.09375, z: -28.970829} + - {x: 0.9874668, y: 0.0625, z: -28.970829} + - {x: 0.9874668, y: 0.03125, z: -28.970829} + - {x: 0.9874668, y: 0, z: -28.970829} + - {x: 0.7405987, y: 0, z: -28.970829} + - {x: 0.49373436, y: 0, z: -28.970829} + - {x: 0.24686623, y: 0, z: -28.970829} + - {x: -3.536171, y: 0, z: -28.970829} + - {x: -3.536171, y: 0.03125, z: -28.970829} + - {x: -3.536171, y: 0.0625, z: -28.970829} + - {x: -3.536171, y: 0.09375, z: -28.970829} + - {x: -3.536171, y: 0.125, z: -28.970829} + - {x: -3.536171, y: 0.15625, z: -28.970829} + - {x: -3.536171, y: 0.1875, z: -28.970829} + - {x: -3.536171, y: 0.21875, z: -28.970829} + - {x: -3.536171, y: 0.25, z: -28.970829} + - {x: -3.536171, y: 0.28125, z: -28.970829} + - {x: -3.536171, y: 0.3125, z: -28.970829} + - {x: -3.536171, y: 0.34375, z: -28.970829} + - {x: -3.536171, y: 0.375, z: -28.970829} + - {x: -3.536171, y: 0.40625, z: -28.970829} + - {x: -3.536171, y: 0.4375, z: -28.970829} + - {x: -3.536171, y: 0.46875, z: -28.970829} + - {x: -3.536171, y: 0.5, z: -28.970829} + - {x: -3.536171, y: 0.53125, z: -28.970829} + - {x: -3.536171, y: 0.5625, z: -28.970829} + - {x: -3.536171, y: 0.59375, z: -28.970829} + - {x: -3.536171, y: 0.625, z: -28.970829} + - {x: -3.536171, y: 0.65625, z: -28.970829} + - {x: -3.536171, y: 0.6875, z: -28.970829} + - {x: -3.536171, y: 0.71875, z: -28.970829} + - {x: -3.536171, y: 0.75, z: -28.970829} + - {x: -3.536171, y: 0.78125, z: -28.970829} + - {x: -3.536171, y: 0.8125, z: -28.970829} + - {x: -3.536171, y: 0.84375, z: -28.970829} + - {x: -3.536171, y: 0.875, z: -28.970829} + - {x: -3.536171, y: 0.90625, z: -28.970829} + - {x: -3.536171, y: 0.9375, z: -28.970829} + - {x: -3.536171, y: 0.96875, z: -28.970829} + - {x: 24.96975, y: 19.741814, z: -24.999859} + - {x: 24.96975, y: 6.0546494, z: -24.999928} + - {x: 24.872688, y: 6.0546494, z: -24.999928} + - {x: 24.745377, y: 6.0546494, z: -24.999928} + - {x: 24.618065, y: 6.0546494, z: -24.999928} + - {x: 24.490751, y: 6.0546494, z: -24.999928} + - {x: 24.363438, y: 6.0546494, z: -24.999928} + - {x: 24.236126, y: 6.0546494, z: -24.999928} + - {x: 24.108814, y: 6.0546494, z: -24.999928} + - {x: 23.981503, y: 6.0546494, z: -24.999928} + - {x: 24.872688, y: 19.741814, z: -24.999859} + - {x: 0, y: 19.741814, z: -24.969608} + - {x: 0.03025, y: 19.741814, z: -24.999859} + - {x: 0.018976001, y: 19.755774, z: -24.980883} + - {x: -3.536171, y: 1, z: -24.96975} + - {x: 0.030248642, y: 1, z: -28.970829} + - {x: -3.536171, y: 0.9697499, z: -28.970829} + - {x: 0.00000023841858, y: 6.0546494, z: -0.03017752} + - {x: 0, y: 19.741814, z: -0.030108856} + - {x: 0.030250238, y: 6.0546494, z: 0.00007201181} + - {x: 0.03025, y: 19.741814, z: 0.0001411438} + - {x: -3.536171, y: 1, z: -0.030252457} + - {x: 0.00000023841858, y: 6.0546494, z: -0.03017752} + - {x: -3.5059214, y: 1, z: 2.774189} + - {x: 0.030250238, y: 6.0546494, z: 0.00007201181} + - {x: 0, y: 19.741814, z: -0.030108856} + - {x: 0.018976012, y: 19.755774, z: -0.01883485} + - {x: 11.151264, y: 27.945488, z: -11.151112} + - {x: 11.151264, y: 27.945488, z: -11.203365} + - {x: 0, y: 19.741814, z: -0.4841385} + - {x: 0.24686623, y: 19.741814, z: 0.0001411438} + - {x: 11.1779, y: 27.945488, z: -11.151112} + - {x: 11.151264, y: 27.945488, z: -11.151112} + - {x: 0.018976012, y: 19.755774, z: -0.01883485} + - {x: 0.03025, y: 19.741814, z: 0.0001411438} + - {x: -3.5059214, y: 1, z: 2.774189} + - {x: -3.536171, y: 0.9697499, z: 2.774189} + - {x: 0, y: 19.741814, z: -0.030108856} + - {x: 0.03025, y: 19.741814, z: 0.0001411438} + - {x: 0.018976012, y: 19.755774, z: -0.01883485} + - {x: -3.536171, y: 1, z: -0.030252457} + - {x: -3.5059214, y: 1, z: 2.774189} + - {x: -3.536171, y: 0.9697499, z: 2.774189} + - {x: 25, y: 6.0546494, z: -0.03017752} + - {x: 28.211613, y: 1, z: 2.7439365} + - {x: 24.96975, y: 6.0546494, z: 0.00007247925} + - {x: 24.96975, y: 1, z: 2.774189} + - {x: 25, y: 19.741814, z: -0.030108856} + - {x: 25, y: 6.0546494, z: -0.03017752} + - {x: 24.96975, y: 19.741814, z: 0.0001411438} + - {x: 24.96975, y: 6.0546494, z: 0.00007247925} + - {x: 28.211613, y: 0.96875, z: 2.774187} + - {x: 24.872688, y: 1, z: 2.774189} + - {x: 24.872688, y: 0.96875, z: 2.774189} + - {x: 28.211613, y: 0.96875, z: 2.774187} + - {x: 28.211613, y: 0.9687519, z: -0.48428154} + - {x: 28.211613, y: 1.0000019, z: -0.48428154} + - {x: 28.211613, y: 1, z: 2.7439365} + - {x: 28.211613, y: 0.9697499, z: 2.774187} + - {x: 25, y: 19.741814, z: -0.4841385} + - {x: 13.848736, y: 27.945488, z: -11.203365} + - {x: 13.848736, y: 27.945488, z: -11.151112} + - {x: 24.981024, y: 19.755774, z: -0.01883485} + - {x: 25, y: 19.741814, z: -0.030108856} + - {x: 24.96975, y: 19.741814, z: 0.0001411438} + - {x: 24.981024, y: 19.755774, z: -0.01883485} + - {x: 13.848736, y: 27.945488, z: -11.151112} + - {x: 13.834999, y: 27.945488, z: -11.151112} + - {x: 24.872688, y: 19.741814, z: 0.0001411438} + - {x: 28.211613, y: 1, z: 2.7439365} + - {x: 24.96975, y: 1, z: 2.774189} + - {x: 28.211613, y: 0.9697499, z: 2.774187} + - {x: 25, y: 19.741814, z: -0.030108856} + - {x: 24.96975, y: 19.741814, z: 0.0001411438} + - {x: 24.981024, y: 19.755774, z: -0.01883485} + - {x: 25, y: 6.0546494, z: -24.969677} + - {x: 25, y: 19.741814, z: -24.969608} + - {x: 24.96975, y: 6.0546494, z: -24.999928} + - {x: 24.96975, y: 19.741814, z: -24.999859} + - {x: 28.211613, y: 1, z: -24.969751} + - {x: 25, y: 6.0546494, z: -24.969677} + - {x: 24.96975, y: 1, z: -28.970829} + - {x: 24.96975, y: 6.0546494, z: -24.999928} + - {x: 24.872688, y: 19.741814, z: -24.999859} + - {x: 13.834999, y: 27.945488, z: -13.848587} + - {x: 13.848736, y: 27.945488, z: -13.848587} + - {x: 24.981024, y: 19.755774, z: -24.980883} + - {x: 24.96975, y: 19.741814, z: -24.999859} + - {x: 25, y: 19.741814, z: -24.969608} + - {x: 24.981024, y: 19.755774, z: -24.980883} + - {x: 13.848736, y: 27.945488, z: -13.848587} + - {x: 13.848736, y: 27.945488, z: -13.735809} + - {x: 25, y: 19.741806, z: -23.954624} + - {x: 28.211613, y: 0.9687424, z: -23.954767} + - {x: 28.211613, y: 0.96875, z: -28.97083} + - {x: 28.211613, y: 0.9697499, z: -28.97083} + - {x: 28.211613, y: 1, z: -24.969751} + - {x: 28.211613, y: 0.9999924, z: -23.954767} + - {x: 28.211613, y: 0, z: -28.97083} + - {x: 24.872688, y: 0, z: -28.970829} + - {x: 24.745377, y: 0, z: -28.970829} + - {x: 24.618065, y: 0, z: -28.970829} + - {x: 24.490751, y: 0, z: -28.970829} + - {x: 24.363438, y: 0, z: -28.970829} + - {x: 24.236126, y: 0, z: -28.970829} + - {x: 24.108814, y: 0, z: -28.970829} + - {x: 23.981503, y: 0, z: -28.970829} + - {x: 23.981503, y: 0.03125, z: -28.970829} + - {x: 23.981503, y: 0.0625, z: -28.970829} + - {x: 23.981503, y: 0.09375, z: -28.970829} + - {x: 23.981503, y: 0.125, z: -28.970829} + - {x: 23.981503, y: 0.15625, z: -28.970829} + - {x: 23.981503, y: 0.1875, z: -28.970829} + - {x: 23.981503, y: 0.21875, z: -28.970829} + - {x: 23.981503, y: 0.25, z: -28.970829} + - {x: 23.981503, y: 0.28125, z: -28.970829} + - {x: 23.981503, y: 0.3125, z: -28.970829} + - {x: 23.981503, y: 0.34375, z: -28.970829} + - {x: 23.981503, y: 0.375, z: -28.970829} + - {x: 23.981503, y: 0.40625, z: -28.970829} + - {x: 23.981503, y: 0.4375, z: -28.970829} + - {x: 23.981503, y: 0.46875, z: -28.970829} + - {x: 23.981503, y: 0.5, z: -28.970829} + - {x: 23.981503, y: 0.53125, z: -28.970829} + - {x: 23.981503, y: 0.5625, z: -28.970829} + - {x: 23.981503, y: 0.59375, z: -28.970829} + - {x: 23.981503, y: 0.625, z: -28.970829} + - {x: 23.981503, y: 0.65625, z: -28.970829} + - {x: 23.981503, y: 0.6875, z: -28.970829} + - {x: 23.981503, y: 0.71875, z: -28.970829} + - {x: 23.981503, y: 0.75, z: -28.970829} + - {x: 23.981503, y: 0.78125, z: -28.970829} + - {x: 23.981503, y: 0.8125, z: -28.970829} + - {x: 23.981503, y: 0.84375, z: -28.970829} + - {x: 23.981503, y: 0.875, z: -28.970829} + - {x: 23.981503, y: 0.90625, z: -28.970829} + - {x: 23.981503, y: 0.9375, z: -28.970829} + - {x: 23.981503, y: 0.96875, z: -28.970829} + - {x: 23.981503, y: 1, z: -28.970829} + - {x: 24.108814, y: 1, z: -28.970829} + - {x: 24.236126, y: 1, z: -28.970829} + - {x: 24.363438, y: 1, z: -28.970829} + - {x: 24.490751, y: 1, z: -28.970829} + - {x: 24.618065, y: 1, z: -28.970829} + - {x: 24.745377, y: 1, z: -28.970829} + - {x: 24.872688, y: 1, z: -28.970829} + - {x: 24.96975, y: 1, z: -28.970829} + - {x: 28.211613, y: 0.9697499, z: -28.97083} + - {x: 28.211613, y: 0.96875, z: -28.97083} + - {x: 28.211613, y: 0.9375, z: -28.97083} + - {x: 28.211613, y: 0.90625, z: -28.97083} + - {x: 28.211613, y: 0.875, z: -28.97083} + - {x: 28.211613, y: 0.84375, z: -28.97083} + - {x: 28.211613, y: 0.8125, z: -28.97083} + - {x: 28.211613, y: 0.78125, z: -28.97083} + - {x: 28.211613, y: 0.75, z: -28.97083} + - {x: 28.211613, y: 0.71875, z: -28.97083} + - {x: 28.211613, y: 0.6875, z: -28.97083} + - {x: 28.211613, y: 0.65625, z: -28.97083} + - {x: 28.211613, y: 0.625, z: -28.97083} + - {x: 28.211613, y: 0.59375, z: -28.97083} + - {x: 28.211613, y: 0.5625, z: -28.97083} + - {x: 28.211613, y: 0.53125, z: -28.97083} + - {x: 28.211613, y: 0.5, z: -28.97083} + - {x: 28.211613, y: 0.46875, z: -28.97083} + - {x: 28.211613, y: 0.4375, z: -28.97083} + - {x: 28.211613, y: 0.40625, z: -28.97083} + - {x: 28.211613, y: 0.375, z: -28.97083} + - {x: 28.211613, y: 0.34375, z: -28.97083} + - {x: 28.211613, y: 0.3125, z: -28.97083} + - {x: 28.211613, y: 0.28125, z: -28.97083} + - {x: 28.211613, y: 0.25, z: -28.97083} + - {x: 28.211613, y: 0.21875, z: -28.97083} + - {x: 28.211613, y: 0.1875, z: -28.97083} + - {x: 28.211613, y: 0.15625, z: -28.97083} + - {x: 28.211613, y: 0.125, z: -28.97083} + - {x: 28.211613, y: 0.09375, z: -28.97083} + - {x: 28.211613, y: 0.0625, z: -28.97083} + - {x: 28.211613, y: 0.03125, z: -28.97083} + - {x: 25, y: 19.741814, z: -24.969608} + - {x: 24.96975, y: 19.741814, z: -24.999859} + - {x: 24.981024, y: 19.755774, z: -24.980883} + - {x: 28.211613, y: 1, z: -24.969751} + - {x: 24.96975, y: 1, z: -28.970829} + - {x: 28.211613, y: 0.9697499, z: -28.97083} + - {x: 24.872688, y: 19.741814, z: -24.999859} + - {x: 24.745377, y: 19.741814, z: -24.999859} + - {x: 24.618065, y: 19.741814, z: -24.999859} + - {x: 24.490751, y: 19.741814, z: -24.999859} + - {x: 24.363438, y: 19.741814, z: -24.999859} + - {x: 24.236126, y: 19.741814, z: -24.999859} + - {x: 24.108814, y: 19.741814, z: -24.999859} + - {x: 23.981503, y: 19.741814, z: -24.999859} + - {x: 23.981503, y: 6.0546494, z: -24.999928} + - {x: -3.536171, y: -0.0000076293945, z: -23.954762} + - {x: -3.536171, y: 0, z: -28.970829} + - {x: -3.536171, y: 0.03125, z: -28.970829} + - {x: -3.536171, y: 0.0625, z: -28.970829} + - {x: -3.536171, y: 0.09375, z: -28.970829} + - {x: -3.536171, y: 0.125, z: -28.970829} + - {x: -3.536171, y: 0.15625, z: -28.970829} + - {x: -3.536171, y: 0.1875, z: -28.970829} + - {x: -3.536171, y: 0.21875, z: -28.970829} + - {x: -3.536171, y: 0.25, z: -28.970829} + - {x: -3.536171, y: 0.28125, z: -28.970829} + - {x: -3.536171, y: 0.3125, z: -28.970829} + - {x: -3.536171, y: 0.34375, z: -28.970829} + - {x: -3.536171, y: 0.375, z: -28.970829} + - {x: -3.536171, y: 0.40625, z: -28.970829} + - {x: -3.536171, y: 0.4375, z: -28.970829} + - {x: -3.536171, y: 0.46875, z: -28.970829} + - {x: -3.536171, y: 0.5, z: -28.970829} + - {x: -3.536171, y: 0.53125, z: -28.970829} + - {x: -3.536171, y: 0.5625, z: -28.970829} + - {x: -3.536171, y: 0.59375, z: -28.970829} + - {x: -3.536171, y: 0.625, z: -28.970829} + - {x: -3.536171, y: 0.65625, z: -28.970829} + - {x: -3.536171, y: 0.6875, z: -28.970829} + - {x: -3.536171, y: 0.71875, z: -28.970829} + - {x: -3.536171, y: 0.75, z: -28.970829} + - {x: -3.536171, y: 0.78125, z: -28.970829} + - {x: -3.536171, y: 0.8125, z: -28.970829} + - {x: -3.536171, y: 0.84375, z: -28.970829} + - {x: -3.536171, y: 0.875, z: -28.970829} + - {x: -3.536171, y: 0.90625, z: -28.970829} + - {x: -3.536171, y: 0.9375, z: -28.970829} + - {x: -3.536171, y: 0.96875, z: -28.970829} + - {x: -3.536171, y: 0.9697499, z: -28.970829} + - {x: -3.536171, y: 1, z: -24.96975} + - {x: -3.536171, y: 0.9999924, z: -23.954765} + - {x: -3.536171, y: 0.9687424, z: -23.954765} + - {x: -3.536171, y: 0.9374924, z: -23.954765} + - {x: -3.536171, y: 0.9062424, z: -23.954765} + - {x: -3.536171, y: 0.8749924, z: -23.954765} + - {x: -3.536171, y: 0.8437424, z: -23.954765} + - {x: -3.536171, y: 0.8124924, z: -23.954765} + - {x: -3.536171, y: 0.7812424, z: -23.954765} + - {x: -3.536171, y: 0.7499924, z: -23.954765} + - {x: -3.536171, y: 0.7187424, z: -23.954765} + - {x: -3.536171, y: 0.6874924, z: -23.954765} + - {x: -3.536171, y: 0.6562424, z: -23.954765} + - {x: -3.536171, y: 0.6249924, z: -23.954765} + - {x: -3.536171, y: 0.5937424, z: -23.954765} + - {x: -3.536171, y: 0.5624924, z: -23.954765} + - {x: -3.536171, y: 0.5312424, z: -23.954765} + - {x: -3.536171, y: 0.49999237, z: -23.954765} + - {x: -3.536171, y: 0.46874237, z: -23.954765} + - {x: -3.536171, y: 0.43749237, z: -23.954765} + - {x: -3.536171, y: 0.40624237, z: -23.954765} + - {x: -3.536171, y: 0.37499237, z: -23.954765} + - {x: -3.536171, y: 0.34374237, z: -23.954765} + - {x: -3.536171, y: 0.31249237, z: -23.954765} + - {x: -3.536171, y: 0.28124237, z: -23.954765} + - {x: -3.536171, y: 0.24999237, z: -23.954765} + - {x: -3.536171, y: 0.21874237, z: -23.954765} + - {x: -3.536171, y: 0.18749237, z: -23.954763} + - {x: -3.536171, y: 0.15624237, z: -23.954762} + - {x: -3.536171, y: 0.12499237, z: -23.954762} + - {x: -3.536171, y: 0.09374237, z: -23.954762} + - {x: -3.536171, y: 0.06249237, z: -23.954762} + - {x: -3.536171, y: 0.03124237, z: -23.954762} + m_Textures0: + - {x: 3.536171, y: 3.0806603e-12} + - {x: 3.536171, y: 0.03125} + - {x: -0.24686718, y: 3.0806603e-12} + - {x: -0.4937334, y: 3.0806603e-12} + - {x: -0.4937334, y: 0.03125} + - {x: -0.24686718, y: 0.03125} + - {x: -0.4937334, y: 0.0625} + - {x: -0.24686718, y: 0.0625} + - {x: 3.536171, y: 0.0625} + - {x: -0.74059963, y: 3.0806603e-12} + - {x: -0.74059963, y: 0.03125} + - {x: -0.9874668, y: 3.0806603e-12} + - {x: -0.9874668, y: 0.03125} + - {x: -0.9874668, y: 0.0625} + - {x: -0.74059963, y: 0.0625} + - {x: -0.74059963, y: 0.09375} + - {x: -0.9874668, y: 0.09375} + - {x: -0.9874668, y: 0.125} + - {x: -0.74059963, y: 0.125} + - {x: 3.536171, y: 0.09375} + - {x: -0.4937334, y: 0.09375} + - {x: -0.24686718, y: 0.09375} + - {x: -0.4937334, y: 0.125} + - {x: -0.24686718, y: 0.125} + - {x: 3.536171, y: 0.125} + - {x: 3.536171, y: 0.15625} + - {x: -0.4937334, y: 0.15625} + - {x: -0.24686718, y: 0.15625} + - {x: -0.4937334, y: 0.1875} + - {x: -0.24686718, y: 0.1875} + - {x: 3.536171, y: 0.1875} + - {x: -0.74059963, y: 0.15625} + - {x: -0.9874668, y: 0.15625} + - {x: -0.9874668, y: 0.1875} + - {x: -0.74059963, y: 0.1875} + - {x: -0.74059963, y: 0.21875} + - {x: -0.9874668, y: 0.21875} + - {x: -0.9874668, y: 0.25} + - {x: -0.74059963, y: 0.25} + - {x: -0.24686718, y: 0.21875} + - {x: 3.536171, y: 0.21875} + - {x: -0.4937334, y: 0.21875} + - {x: -0.4937334, y: 0.25} + - {x: -0.24686718, y: 0.25} + - {x: 3.536171, y: 0.25} + - {x: -0.9874668, y: 0.0625} + - {x: -0.9874668, y: 0.03125} + - {x: -5.4768515, y: 0.03125} + - {x: -5.476851, y: 0.0625} + - {x: -0.9874668, y: 3.0806603e-12} + - {x: -5.4768515, y: 3.0806603e-12} + - {x: -5.4768515, y: 3.0806603e-12} + - {x: -9.966236, y: 3.0806603e-12} + - {x: -9.966236, y: 0.03125} + - {x: -5.4768515, y: 0.03125} + - {x: -9.966235, y: 0.0625} + - {x: -5.476851, y: 0.0625} + - {x: -9.966236, y: 3.0806603e-12} + - {x: -13.933051, y: 3.0806603e-12} + - {x: -13.933051, y: 0.03125} + - {x: -9.966236, y: 0.03125} + - {x: -13.933051, y: 3.0806603e-12} + - {x: -23.981503, y: 3.0806603e-12} + - {x: -23.981503, y: 0.03125} + - {x: -23.981503, y: 0.0625} + - {x: -13.933051, y: 0.0625} + - {x: -13.933051, y: 0.03125} + - {x: -13.933051, y: 0.0625} + - {x: -9.966235, y: 0.0625} + - {x: -9.966236, y: 0.125} + - {x: -13.933051, y: 0.125} + - {x: -9.966236, y: 0.09375} + - {x: -13.933051, y: 0.09375} + - {x: -23.981503, y: 0.09375} + - {x: -13.933051, y: 0.09375} + - {x: -23.981503, y: 0.125} + - {x: -13.933051, y: 0.125} + - {x: -0.9874668, y: 0.125} + - {x: -5.4768515, y: 0.125} + - {x: -0.9874668, y: 0.09375} + - {x: -5.4768515, y: 0.09375} + - {x: -9.966236, y: 0.09375} + - {x: -5.4768515, y: 0.09375} + - {x: -9.966236, y: 0.125} + - {x: -5.4768515, y: 0.125} + - {x: -0.9874668, y: 0.1875} + - {x: -5.476851, y: 0.1875} + - {x: -0.9874668, y: 0.15625} + - {x: -5.4768515, y: 0.15625} + - {x: -9.966236, y: 0.15625} + - {x: -5.4768515, y: 0.15625} + - {x: -9.966235, y: 0.1875} + - {x: -5.476851, y: 0.1875} + - {x: -13.933051, y: 0.15625} + - {x: -9.966236, y: 0.15625} + - {x: -23.981503, y: 0.15625} + - {x: -13.933051, y: 0.15625} + - {x: -23.981503, y: 0.1875} + - {x: -13.933051, y: 0.1875} + - {x: -13.933051, y: 0.1875} + - {x: -9.966235, y: 0.1875} + - {x: -9.966236, y: 0.25} + - {x: -13.933051, y: 0.25} + - {x: -9.966236, y: 0.21875} + - {x: -13.933051, y: 0.21875} + - {x: -23.981503, y: 0.21875} + - {x: -13.933051, y: 0.21875} + - {x: -23.981503, y: 0.25} + - {x: -13.933051, y: 0.25} + - {x: -0.9874668, y: 0.25} + - {x: -5.4768515, y: 0.25} + - {x: -0.9874668, y: 0.21875} + - {x: -5.4768515, y: 0.21875} + - {x: -9.966236, y: 0.21875} + - {x: -5.4768515, y: 0.21875} + - {x: -9.966236, y: 0.25} + - {x: -5.4768515, y: 0.25} + - {x: -0.9874668, y: 0.3125} + - {x: -5.476851, y: 0.3125} + - {x: -0.9874668, y: 0.28125} + - {x: -5.4768515, y: 0.28125} + - {x: -9.966236, y: 0.28125} + - {x: -5.4768515, y: 0.28125} + - {x: -9.966235, y: 0.3125} + - {x: -5.476851, y: 0.3125} + - {x: -13.933051, y: 0.28125} + - {x: -9.966236, y: 0.28125} + - {x: -23.981503, y: 0.28125} + - {x: -13.933051, y: 0.28125} + - {x: -23.981503, y: 0.3125} + - {x: -13.933051, y: 0.3125} + - {x: -13.933051, y: 0.3125} + - {x: -9.966235, y: 0.3125} + - {x: -9.966236, y: 0.375} + - {x: -13.933051, y: 0.375} + - {x: -9.966236, y: 0.34375} + - {x: -13.933051, y: 0.34375} + - {x: -23.981503, y: 0.34375} + - {x: -13.933051, y: 0.34375} + - {x: -23.981503, y: 0.375} + - {x: -13.933051, y: 0.375} + - {x: -0.9874668, y: 0.375} + - {x: -5.4768515, y: 0.375} + - {x: -0.9874668, y: 0.34375} + - {x: -5.4768515, y: 0.34375} + - {x: -9.966236, y: 0.34375} + - {x: -5.4768515, y: 0.34375} + - {x: -9.966236, y: 0.375} + - {x: -5.4768515, y: 0.375} + - {x: -0.9874668, y: 0.4375} + - {x: -5.476851, y: 0.4375} + - {x: -0.9874668, y: 0.40625} + - {x: -5.4768515, y: 0.40625} + - {x: -9.966236, y: 0.40625} + - {x: -5.4768515, y: 0.40625} + - {x: -9.966235, y: 0.4375} + - {x: -5.476851, y: 0.4375} + - {x: -13.933051, y: 0.40625} + - {x: -9.966236, y: 0.40625} + - {x: -23.981503, y: 0.40625} + - {x: -13.933051, y: 0.40625} + - {x: -23.981503, y: 0.4375} + - {x: -13.933051, y: 0.4375} + - {x: -13.933051, y: 0.4375} + - {x: -9.966235, y: 0.4375} + - {x: -9.966236, y: 0.5} + - {x: -13.933051, y: 0.5} + - {x: -9.966236, y: 0.46875} + - {x: -13.933051, y: 0.46875} + - {x: -23.981503, y: 0.46875} + - {x: -13.933051, y: 0.46875} + - {x: -23.981503, y: 0.5} + - {x: -13.933051, y: 0.5} + - {x: -0.9874668, y: 0.5} + - {x: -5.4768515, y: 0.5} + - {x: -0.9874668, y: 0.46875} + - {x: -5.4768515, y: 0.46875} + - {x: -9.966236, y: 0.46875} + - {x: -5.4768515, y: 0.46875} + - {x: -9.966236, y: 0.5} + - {x: -5.4768515, y: 0.5} + - {x: 3.536171, y: 0.28125} + - {x: -0.4937334, y: 0.28125} + - {x: -0.24686718, y: 0.28125} + - {x: -0.4937334, y: 0.3125} + - {x: -0.24686718, y: 0.3125} + - {x: 3.536171, y: 0.3125} + - {x: -0.9874668, y: 0.28125} + - {x: -0.74059963, y: 0.28125} + - {x: -0.9874668, y: 0.3125} + - {x: -0.74059963, y: 0.3125} + - {x: -0.4937334, y: 0.34375} + - {x: -0.9874668, y: 0.34375} + - {x: -0.74059963, y: 0.34375} + - {x: -0.9874668, y: 0.375} + - {x: -0.74059963, y: 0.375} + - {x: -0.4937334, y: 0.375} + - {x: -0.24686718, y: 0.34375} + - {x: 3.536171, y: 0.34375} + - {x: -0.24686718, y: 0.375} + - {x: 3.536171, y: 0.375} + - {x: 3.536171, y: 0.40625} + - {x: -0.24686718, y: 0.40625} + - {x: -0.24686718, y: 0.4375} + - {x: 3.536171, y: 0.4375} + - {x: -0.4937334, y: 0.40625} + - {x: -0.9874668, y: 0.40625} + - {x: -0.74059963, y: 0.40625} + - {x: -0.9874668, y: 0.4375} + - {x: -0.74059963, y: 0.4375} + - {x: -0.4937334, y: 0.4375} + - {x: -0.4937334, y: 0.46875} + - {x: -0.9874668, y: 0.46875} + - {x: -0.74059963, y: 0.46875} + - {x: -0.9874668, y: 0.5} + - {x: -0.74059963, y: 0.5} + - {x: -0.4937334, y: 0.5} + - {x: 3.536171, y: 0.46875} + - {x: -0.24686718, y: 0.46875} + - {x: -0.24686718, y: 0.5} + - {x: 3.536171, y: 0.5} + - {x: -23.980886, y: 0.1859769} + - {x: -23.980886, y: 0.1547269} + - {x: -24.108198, y: 0.15472688} + - {x: -24.108198, y: 0.18597688} + - {x: -24.235514, y: 0.18597686} + - {x: -24.235514, y: 0.15472686} + - {x: -24.362825, y: 0.15472685} + - {x: -24.362825, y: 0.18597685} + - {x: -24.235514, y: 0.21722685} + - {x: -24.362825, y: 0.21722683} + - {x: -24.362825, y: 0.24847683} + - {x: -24.23551, y: 0.24847685} + - {x: -23.980886, y: 0.24847688} + - {x: -23.980886, y: 0.21722688} + - {x: -24.108198, y: 0.21722686} + - {x: -24.108198, y: 0.24847686} + - {x: -23.980886, y: 0.09222691} + - {x: -24.108198, y: 0.09222689} + - {x: -24.108198, y: 0.123476885} + - {x: -23.980886, y: 0.1234769} + - {x: -23.980886, y: 0.06097691} + - {x: -23.980886, y: 0.029726917} + - {x: -23.980886, y: -0.0015230769} + - {x: -24.108198, y: -0.0015230924} + - {x: -24.108198, y: 0.029726902} + - {x: -24.108198, y: 0.060976896} + - {x: -24.23551, y: -0.0015231079} + - {x: -24.23551, y: 0.029726887} + - {x: -24.362822, y: -0.0015231234} + - {x: -24.362822, y: 0.02972687} + - {x: -24.362825, y: 0.060976867} + - {x: -24.23551, y: 0.06097688} + - {x: -24.23551, y: 0.09222688} + - {x: -24.362825, y: 0.09222686} + - {x: -24.362825, y: 0.123476855} + - {x: -24.23551, y: 0.12347687} + - {x: -24.490137, y: 0.15472683} + - {x: -24.617449, y: 0.15472682} + - {x: -24.617449, y: 0.18597682} + - {x: -24.490137, y: 0.18597683} + - {x: -24.74476, y: 0.1547268} + - {x: -28.210997, y: 0.15472639} + - {x: -24.872072, y: 0.15472679} + - {x: -28.210997, y: 0.18597637} + - {x: -24.872072, y: 0.18597679} + - {x: -24.74476, y: 0.1859768} + - {x: -24.74476, y: 0.21722679} + - {x: -28.210997, y: 0.21722637} + - {x: -24.872072, y: 0.21722677} + - {x: -28.210997, y: 0.24847637} + - {x: -24.872072, y: 0.24847677} + - {x: -24.74476, y: 0.24847679} + - {x: -24.490137, y: 0.21722682} + - {x: -24.617449, y: 0.2172268} + - {x: -24.617449, y: 0.2484768} + - {x: -24.490137, y: 0.24847682} + - {x: -24.490137, y: 0.09222685} + - {x: -24.617449, y: 0.092226826} + - {x: -24.617449, y: 0.123476826} + - {x: -24.490137, y: 0.12347684} + - {x: -24.490137, y: 0.06097685} + - {x: -24.490137, y: 0.029726855} + - {x: -24.490133, y: -0.0015231388} + - {x: -24.617449, y: -0.0015231543} + - {x: -24.617449, y: 0.02972684} + - {x: -24.617449, y: 0.060976833} + - {x: -24.74476, y: -0.0015231698} + - {x: -24.74476, y: 0.029726824} + - {x: -24.872072, y: -0.0015231853} + - {x: -28.210997, y: -0.0015235903} + - {x: -28.210997, y: 0.029726405} + - {x: -24.872072, y: 0.029726809} + - {x: -28.210997, y: 0.060976397} + - {x: -24.872072, y: 0.060976803} + - {x: -24.74476, y: 0.06097682} + - {x: -24.74476, y: 0.09222681} + - {x: -28.210997, y: 0.09222639} + - {x: -24.872072, y: 0.092226796} + - {x: -28.210997, y: 0.123476386} + - {x: -24.872072, y: 0.123476796} + - {x: -24.74476, y: 0.12347681} + - {x: -24.490137, y: 0.2797268} + - {x: -24.617449, y: 0.2797268} + - {x: -24.617449, y: 0.3109768} + - {x: -24.490137, y: 0.3109768} + - {x: -24.74476, y: 0.27972677} + - {x: -28.210997, y: 0.27972636} + - {x: -24.872072, y: 0.27972677} + - {x: -28.210997, y: 0.31097636} + - {x: -24.872072, y: 0.31097677} + - {x: -24.74476, y: 0.31097677} + - {x: -24.74476, y: 0.34222677} + - {x: -28.210997, y: 0.34222636} + - {x: -24.872072, y: 0.34222674} + - {x: -28.210997, y: 0.37347636} + - {x: -24.872072, y: 0.37347674} + - {x: -24.74476, y: 0.37347677} + - {x: -24.490137, y: 0.3422268} + - {x: -24.617449, y: 0.34222677} + - {x: -24.617449, y: 0.37347677} + - {x: -24.490137, y: 0.3734768} + - {x: -24.490137, y: 0.4047268} + - {x: -24.617449, y: 0.40472677} + - {x: -24.617449, y: 0.43597677} + - {x: -24.490137, y: 0.43597677} + - {x: -24.74476, y: 0.40472674} + - {x: -28.210997, y: 0.40472633} + - {x: -24.872072, y: 0.40472674} + - {x: -28.210997, y: 0.43597633} + - {x: -24.872072, y: 0.43597674} + - {x: -24.74476, y: 0.43597674} + - {x: -24.74476, y: 0.46722674} + - {x: -28.210997, y: 0.46722633} + - {x: -24.872072, y: 0.46722674} + - {x: -28.210997, y: 0.49847633} + - {x: -24.872072, y: 0.4984767} + - {x: -24.74476, y: 0.49847674} + - {x: -24.490137, y: 0.46722677} + - {x: -24.617449, y: 0.46722677} + - {x: -24.617449, y: 0.49847674} + - {x: -24.490133, y: 0.49847677} + - {x: -23.980886, y: 0.49847683} + - {x: -23.980886, y: 0.46722683} + - {x: -24.108198, y: 0.46722683} + - {x: -24.108198, y: 0.4984768} + - {x: -23.980886, y: 0.40472686} + - {x: -24.108198, y: 0.40472683} + - {x: -24.108198, y: 0.43597683} + - {x: -23.980886, y: 0.43597683} + - {x: -24.23551, y: 0.40472683} + - {x: -24.362825, y: 0.4047268} + - {x: -24.362825, y: 0.4359768} + - {x: -24.23551, y: 0.4359768} + - {x: -24.23551, y: 0.4984768} + - {x: -24.23551, y: 0.4672268} + - {x: -24.362822, y: 0.4672268} + - {x: -24.362822, y: 0.49847677} + - {x: -23.980886, y: 0.31097686} + - {x: -23.980886, y: 0.27972686} + - {x: -24.108198, y: 0.27972686} + - {x: -24.108198, y: 0.31097686} + - {x: -24.235514, y: 0.31097683} + - {x: -24.235514, y: 0.27972683} + - {x: -24.362825, y: 0.27972683} + - {x: -24.362825, y: 0.31097683} + - {x: -24.235514, y: 0.34222683} + - {x: -24.362825, y: 0.3422268} + - {x: -24.362825, y: 0.3734768} + - {x: -24.23551, y: 0.37347683} + - {x: -23.980886, y: 0.37347686} + - {x: -23.980886, y: 0.34222686} + - {x: -24.108198, y: 0.34222683} + - {x: -24.108198, y: 0.37347683} + - {x: -23.980886, y: 0.6859768} + - {x: -23.980886, y: 0.6547268} + - {x: -24.108198, y: 0.6547268} + - {x: -24.108198, y: 0.6859768} + - {x: -24.235514, y: 0.68597674} + - {x: -24.235514, y: 0.6547268} + - {x: -24.362825, y: 0.65472674} + - {x: -24.362825, y: 0.68597674} + - {x: -24.235514, y: 0.71722674} + - {x: -24.362825, y: 0.71722674} + - {x: -24.362825, y: 0.74847674} + - {x: -24.23551, y: 0.74847674} + - {x: -23.980886, y: 0.7484768} + - {x: -23.980886, y: 0.7172268} + - {x: -24.108198, y: 0.7172268} + - {x: -24.108198, y: 0.74847674} + - {x: -23.980886, y: 0.5922268} + - {x: -24.108198, y: 0.5922268} + - {x: -24.108198, y: 0.6234768} + - {x: -23.980886, y: 0.6234768} + - {x: -23.980886, y: 0.5609768} + - {x: -23.980886, y: 0.5297268} + - {x: -24.108198, y: 0.5297268} + - {x: -24.108198, y: 0.5609768} + - {x: -24.23551, y: 0.5297268} + - {x: -24.362822, y: 0.5297268} + - {x: -24.362825, y: 0.5609768} + - {x: -24.23551, y: 0.5609768} + - {x: -24.23551, y: 0.5922268} + - {x: -24.362825, y: 0.59222674} + - {x: -24.362825, y: 0.62347674} + - {x: -24.23551, y: 0.6234768} + - {x: -24.490137, y: 0.65472674} + - {x: -24.617449, y: 0.65472674} + - {x: -24.617449, y: 0.68597674} + - {x: -24.490137, y: 0.68597674} + - {x: -24.74476, y: 0.6547267} + - {x: -28.210997, y: 0.65472627} + - {x: -24.872072, y: 0.6547267} + - {x: -28.210997, y: 0.68597627} + - {x: -24.872072, y: 0.6859767} + - {x: -24.74476, y: 0.6859767} + - {x: -24.74476, y: 0.7172267} + - {x: -28.210997, y: 0.71722627} + - {x: -24.872072, y: 0.7172267} + - {x: -28.210997, y: 0.74847627} + - {x: -24.872072, y: 0.7484767} + - {x: -24.74476, y: 0.7484767} + - {x: -24.490137, y: 0.71722674} + - {x: -24.617449, y: 0.71722674} + - {x: -24.617449, y: 0.7484767} + - {x: -24.490137, y: 0.74847674} + - {x: -24.490137, y: 0.59222674} + - {x: -24.617449, y: 0.59222674} + - {x: -24.617449, y: 0.62347674} + - {x: -24.490137, y: 0.62347674} + - {x: -24.490137, y: 0.56097674} + - {x: -24.490137, y: 0.52972674} + - {x: -24.617449, y: 0.52972674} + - {x: -24.617449, y: 0.56097674} + - {x: -24.74476, y: 0.52972674} + - {x: -28.210997, y: 0.5297263} + - {x: -24.872072, y: 0.52972674} + - {x: -28.210997, y: 0.5609763} + - {x: -24.872072, y: 0.56097674} + - {x: -24.74476, y: 0.56097674} + - {x: -24.74476, y: 0.59222674} + - {x: -28.210997, y: 0.5922263} + - {x: -24.872072, y: 0.5922267} + - {x: -28.210997, y: 0.6234763} + - {x: -24.872072, y: 0.6234767} + - {x: -24.74476, y: 0.62347674} + - {x: -24.490137, y: 0.77972674} + - {x: -24.617449, y: 0.7797267} + - {x: -24.617449, y: 0.8109767} + - {x: -24.490137, y: 0.81097674} + - {x: -24.74476, y: 0.7797267} + - {x: -28.210997, y: 0.77972627} + - {x: -24.872072, y: 0.7797267} + - {x: -28.210997, y: 0.81097627} + - {x: -24.872072, y: 0.8109767} + - {x: -24.74476, y: 0.8109767} + - {x: -24.74476, y: 0.8422267} + - {x: -28.210997, y: 0.84222627} + - {x: -24.872072, y: 0.8422267} + - {x: -28.210997, y: 0.87347627} + - {x: -24.872072, y: 0.8734767} + - {x: -24.74476, y: 0.8734767} + - {x: -24.490137, y: 0.8422267} + - {x: -24.617449, y: 0.8422267} + - {x: -24.617449, y: 0.8734767} + - {x: -24.490137, y: 0.8734767} + - {x: -24.490137, y: 0.9047267} + - {x: -24.617449, y: 0.9047267} + - {x: -24.617449, y: 0.9359767} + - {x: -24.490137, y: 0.9359767} + - {x: -24.74476, y: 0.9047267} + - {x: -28.210997, y: 0.90472627} + - {x: -24.872072, y: 0.9047266} + - {x: -28.210997, y: 0.93597627} + - {x: -24.872072, y: 0.9359766} + - {x: -24.74476, y: 0.9359767} + - {x: -24.74476, y: 0.9984766} + - {x: -24.74476, y: 0.9672267} + - {x: -24.617449, y: 0.9984767} + - {x: -24.617449, y: 0.9672267} + - {x: -23.980886, y: 0.99847674} + - {x: -23.980886, y: 0.96722674} + - {x: -24.108198, y: 0.96722674} + - {x: -24.108198, y: 0.99847674} + - {x: -24.23551, y: 0.96722674} + - {x: -24.23551, y: 0.9984767} + - {x: -23.980886, y: 0.90472674} + - {x: -24.108198, y: 0.90472674} + - {x: -24.108198, y: 0.93597674} + - {x: -23.980886, y: 0.93597674} + - {x: -24.23551, y: 0.90472674} + - {x: -24.362825, y: 0.90472674} + - {x: -24.362825, y: 0.9359767} + - {x: -24.23551, y: 0.93597674} + - {x: -24.362822, y: 0.9672267} + - {x: -24.362822, y: 0.9984767} + - {x: -24.490137, y: 0.9672267} + - {x: -24.490133, y: 0.9984767} + - {x: -23.980886, y: 0.8109768} + - {x: -23.980886, y: 0.7797268} + - {x: -24.108198, y: 0.77972674} + - {x: -24.108198, y: 0.81097674} + - {x: -24.235514, y: 0.81097674} + - {x: -24.235514, y: 0.77972674} + - {x: -24.362825, y: 0.77972674} + - {x: -24.362825, y: 0.81097674} + - {x: -24.235514, y: 0.84222674} + - {x: -24.362825, y: 0.84222674} + - {x: -24.362825, y: 0.87347674} + - {x: -24.23551, y: 0.87347674} + - {x: -23.980886, y: 0.87347674} + - {x: -23.980886, y: 0.84222674} + - {x: -24.108198, y: 0.84222674} + - {x: -24.108198, y: 0.87347674} + - {x: 3.536171, y: 0.53125} + - {x: -0.24686718, y: 0.53125} + - {x: -0.24686718, y: 0.5625} + - {x: 3.536171, y: 0.5625} + - {x: -0.4937334, y: 0.53125} + - {x: -0.9874668, y: 0.53125} + - {x: -0.74059963, y: 0.53125} + - {x: -0.9874668, y: 0.5625} + - {x: -0.74059963, y: 0.5625} + - {x: -0.4937334, y: 0.5625} + - {x: -0.4937334, y: 0.59375} + - {x: -0.9874668, y: 0.59375} + - {x: -0.74059963, y: 0.59375} + - {x: -0.9874668, y: 0.625} + - {x: -0.74059963, y: 0.625} + - {x: -0.4937334, y: 0.625} + - {x: 3.536171, y: 0.59375} + - {x: -0.24686718, y: 0.59375} + - {x: -0.24686718, y: 0.625} + - {x: 3.536171, y: 0.625} + - {x: 3.536171, y: 0.65625} + - {x: -0.24686718, y: 0.65625} + - {x: -0.24686718, y: 0.6875} + - {x: 3.536171, y: 0.6875} + - {x: -0.4937334, y: 0.65625} + - {x: -0.9874668, y: 0.65625} + - {x: -0.74059963, y: 0.65625} + - {x: -0.9874668, y: 0.6875} + - {x: -0.74059963, y: 0.6875} + - {x: -0.4937334, y: 0.6875} + - {x: -0.4937334, y: 0.71875} + - {x: -0.9874668, y: 0.71875} + - {x: -0.74059963, y: 0.71875} + - {x: -0.9874668, y: 0.75} + - {x: -0.74059963, y: 0.75} + - {x: -0.4937334, y: 0.75} + - {x: 3.536171, y: 0.71875} + - {x: -0.24686718, y: 0.71875} + - {x: -0.24686718, y: 0.75} + - {x: 3.536171, y: 0.75} + - {x: -0.9874668, y: 0.5625} + - {x: -5.476851, y: 0.5625} + - {x: -0.9874668, y: 0.53125} + - {x: -5.4768515, y: 0.53125} + - {x: -9.966236, y: 0.53125} + - {x: -5.4768515, y: 0.53125} + - {x: -9.966235, y: 0.5625} + - {x: -5.476851, y: 0.5625} + - {x: -13.933051, y: 0.53125} + - {x: -9.966236, y: 0.53125} + - {x: -23.981503, y: 0.53125} + - {x: -13.933051, y: 0.53125} + - {x: -23.981503, y: 0.5625} + - {x: -13.933051, y: 0.5625} + - {x: -13.933051, y: 0.5625} + - {x: -9.966235, y: 0.5625} + - {x: -9.966236, y: 0.625} + - {x: -13.933051, y: 0.625} + - {x: -9.966236, y: 0.59375} + - {x: -13.933051, y: 0.59375} + - {x: -23.981503, y: 0.59375} + - {x: -13.933051, y: 0.59375} + - {x: -23.981503, y: 0.625} + - {x: -13.933051, y: 0.625} + - {x: -0.9874668, y: 0.625} + - {x: -5.4768515, y: 0.625} + - {x: -0.9874668, y: 0.59375} + - {x: -5.4768515, y: 0.59375} + - {x: -9.966236, y: 0.59375} + - {x: -5.4768515, y: 0.59375} + - {x: -9.966236, y: 0.625} + - {x: -5.4768515, y: 0.625} + - {x: -0.9874668, y: 0.6875} + - {x: -5.476851, y: 0.6875} + - {x: -0.9874668, y: 0.65625} + - {x: -5.4768515, y: 0.65625} + - {x: -9.966236, y: 0.65625} + - {x: -5.4768515, y: 0.65625} + - {x: -9.966235, y: 0.6875} + - {x: -5.476851, y: 0.6875} + - {x: -13.933051, y: 0.65625} + - {x: -9.966236, y: 0.65625} + - {x: -23.981503, y: 0.65625} + - {x: -13.933051, y: 0.65625} + - {x: -23.981503, y: 0.6875} + - {x: -13.933051, y: 0.6875} + - {x: -13.933051, y: 0.6875} + - {x: -9.966235, y: 0.6875} + - {x: -9.966236, y: 0.75} + - {x: -13.933051, y: 0.75} + - {x: -9.966236, y: 0.71875} + - {x: -13.933051, y: 0.71875} + - {x: -23.981503, y: 0.71875} + - {x: -13.933051, y: 0.71875} + - {x: -23.981503, y: 0.75} + - {x: -13.933051, y: 0.75} + - {x: -0.9874668, y: 0.75} + - {x: -5.4768515, y: 0.75} + - {x: -0.9874668, y: 0.71875} + - {x: -5.4768515, y: 0.71875} + - {x: -9.966236, y: 0.71875} + - {x: -5.4768515, y: 0.71875} + - {x: -9.966236, y: 0.75} + - {x: -5.4768515, y: 0.75} + - {x: -0.9874668, y: 0.8125} + - {x: -5.476851, y: 0.8125} + - {x: -0.9874668, y: 0.78125} + - {x: -5.4768515, y: 0.78125} + - {x: -9.966236, y: 0.78125} + - {x: -5.4768515, y: 0.78125} + - {x: -9.966235, y: 0.8125} + - {x: -5.476851, y: 0.8125} + - {x: -13.933051, y: 0.78125} + - {x: -9.966236, y: 0.78125} + - {x: -23.981503, y: 0.78125} + - {x: -13.933051, y: 0.78125} + - {x: -23.981503, y: 0.8125} + - {x: -13.933051, y: 0.8125} + - {x: -13.933051, y: 0.8125} + - {x: -9.966235, y: 0.8125} + - {x: -9.966236, y: 0.875} + - {x: -13.933051, y: 0.875} + - {x: -9.966236, y: 0.84375} + - {x: -13.933051, y: 0.84375} + - {x: -23.981503, y: 0.84375} + - {x: -13.933051, y: 0.84375} + - {x: -23.981503, y: 0.875} + - {x: -13.933051, y: 0.875} + - {x: -0.9874668, y: 0.875} + - {x: -5.4768515, y: 0.875} + - {x: -0.9874668, y: 0.84375} + - {x: -5.4768515, y: 0.84375} + - {x: -9.966236, y: 0.84375} + - {x: -5.4768515, y: 0.84375} + - {x: -9.966236, y: 0.875} + - {x: -5.4768515, y: 0.875} + - {x: -0.9874668, y: 0.9375} + - {x: -5.476851, y: 0.9375} + - {x: -0.9874668, y: 0.90625} + - {x: -5.4768515, y: 0.90625} + - {x: -9.966236, y: 0.90625} + - {x: -5.4768515, y: 0.90625} + - {x: -9.966235, y: 0.9375} + - {x: -5.476851, y: 0.9375} + - {x: -13.933051, y: 0.90625} + - {x: -9.966236, y: 0.90625} + - {x: -23.981503, y: 0.90625} + - {x: -13.933051, y: 0.90625} + - {x: -23.981503, y: 0.9375} + - {x: -13.933051, y: 0.9375} + - {x: -13.933051, y: 0.9375} + - {x: -9.966235, y: 0.9375} + - {x: -9.966236, y: 1} + - {x: -13.933051, y: 1} + - {x: -9.966236, y: 0.96875} + - {x: -13.933051, y: 0.96875} + - {x: -23.981503, y: 0.96875} + - {x: -13.933051, y: 0.96875} + - {x: -23.981503, y: 1} + - {x: -13.933051, y: 1} + - {x: -0.9874668, y: 1} + - {x: -5.4768515, y: 1} + - {x: -0.9874668, y: 0.96875} + - {x: -5.4768515, y: 0.96875} + - {x: -9.966236, y: 0.96875} + - {x: -5.4768515, y: 0.96875} + - {x: -9.966236, y: 1} + - {x: -5.4768515, y: 1} + - {x: 3.536171, y: 0.78125} + - {x: -0.24686718, y: 0.78125} + - {x: -0.24686718, y: 0.8125} + - {x: 3.536171, y: 0.8125} + - {x: -0.4937334, y: 0.78125} + - {x: -0.9874668, y: 0.78125} + - {x: -0.74059963, y: 0.78125} + - {x: -0.9874668, y: 0.8125} + - {x: -0.74059963, y: 0.8125} + - {x: -0.4937334, y: 0.8125} + - {x: -0.4937334, y: 0.84375} + - {x: -0.9874668, y: 0.84375} + - {x: -0.74059963, y: 0.84375} + - {x: -0.9874668, y: 0.875} + - {x: -0.74059963, y: 0.875} + - {x: -0.4937334, y: 0.875} + - {x: 3.536171, y: 0.84375} + - {x: -0.24686718, y: 0.84375} + - {x: -0.24686718, y: 0.875} + - {x: 3.536171, y: 0.875} + - {x: 3.536171, y: 0.90625} + - {x: -0.24686718, y: 0.90625} + - {x: -0.24686718, y: 0.9375} + - {x: 3.536171, y: 0.9375} + - {x: -0.4937334, y: 0.90625} + - {x: -0.9874668, y: 0.90625} + - {x: -0.74059963, y: 0.90625} + - {x: -0.9874668, y: 0.9375} + - {x: -0.74059963, y: 0.9375} + - {x: -0.4937334, y: 0.9375} + - {x: -0.9874668, y: 0.96875} + - {x: -0.9874668, y: 1} + - {x: -0.74059963, y: 1} + - {x: -0.4937334, y: 1} + - {x: -0.4937334, y: 0.96875} + - {x: -0.74059963, y: 0.96875} + - {x: 3.536171, y: 0.96875} + - {x: -0.24686718, y: 0.96875} + - {x: -0.24686718, y: 1} + - {x: 0.9874687, y: 8.212634} + - {x: 5.4768524, y: 8.212634} + - {x: 0.9874687, y: 8.242686} + - {x: 5.4768524, y: 8.242686} + - {x: 0.9874687, y: 8.272739} + - {x: 5.4768524, y: 8.272739} + - {x: 0.9874687, y: 8.302793} + - {x: 5.4768524, y: 8.302793} + - {x: 0.9874687, y: 8.332845} + - {x: 5.4768524, y: 8.332845} + - {x: 0.9874687, y: 8.362898} + - {x: 5.4768524, y: 8.362898} + - {x: 0.9874687, y: 8.39295} + - {x: 5.4768524, y: 8.39295} + - {x: 0.9874687, y: 8.423003} + - {x: 5.4768524, y: 8.423003} + - {x: 0.9874687, y: 7.9421587} + - {x: 0.9874687, y: 7.972212} + - {x: 5.4768524, y: 7.9722114} + - {x: 5.4768524, y: 7.9421587} + - {x: 0.9874687, y: 8.002264} + - {x: 5.4768524, y: 8.002264} + - {x: 9.966238, y: 7.9722114} + - {x: 9.966238, y: 6.8535824} + - {x: 5.4768524, y: 7.9421587} + - {x: 5.4768524, y: 7.9722114} + - {x: 0.9874687, y: 8.032317} + - {x: 5.4768524, y: 8.032317} + - {x: 0.9874687, y: 8.06237} + - {x: 5.4768524, y: 8.06237} + - {x: 9.966238, y: 6.8535824} + - {x: 9.966238, y: 7.9722114} + - {x: 13.933053, y: 7.9722114} + - {x: 13.933053, y: 6.8535824} + - {x: 23.981504, y: 7.9722114} + - {x: 23.981504, y: 7.9421587} + - {x: 13.933053, y: 6.8535824} + - {x: 13.933053, y: 7.9722114} + - {x: 0.9874687, y: 8.0924225} + - {x: 5.4768524, y: 8.0924225} + - {x: 0.9874687, y: 8.122476} + - {x: 5.4768524, y: 8.122476} + - {x: 0.9874687, y: 8.152529} + - {x: 5.4768524, y: 8.152528} + - {x: 0.9874687, y: 8.182581} + - {x: 5.4768524, y: 8.182581} + - {x: 0.9874687, y: 8.693479} + - {x: 5.4768524, y: 8.693479} + - {x: 0.9874687, y: 8.723531} + - {x: 5.4768524, y: 8.723531} + - {x: 0.9874687, y: 8.753584} + - {x: 5.4768524, y: 8.753584} + - {x: 0.9874687, y: 8.783637} + - {x: 5.4768524, y: 8.783636} + - {x: 0.9874687, y: 8.813689} + - {x: 5.4768524, y: 8.813689} + - {x: 0.9874687, y: 8.843742} + - {x: 5.4768524, y: 8.843742} + - {x: 0.9874687, y: 8.873795} + - {x: 5.4768524, y: 8.873795} + - {x: 0.9874687, y: 8.903848} + - {x: 5.4768524, y: 8.903848} + - {x: 0.9874687, y: 8.453056} + - {x: 5.4768524, y: 8.453056} + - {x: 0.9874687, y: 8.4831085} + - {x: 5.4768524, y: 8.4831085} + - {x: 0.9874687, y: 8.513162} + - {x: 5.4768524, y: 8.513162} + - {x: 0.9874687, y: 8.543215} + - {x: 5.4768524, y: 8.543215} + - {x: 0.9874687, y: 8.573267} + - {x: 5.4768524, y: 8.573267} + - {x: 0.9874687, y: 8.60332} + - {x: 5.4768524, y: 8.60332} + - {x: 0.9874687, y: 8.633372} + - {x: 5.4768524, y: 8.633372} + - {x: 0.9874687, y: 8.663425} + - {x: 5.4768524, y: 8.663425} + - {x: 2.774187, y: 0.5} + - {x: 2.774187, y: 0.46875} + - {x: 2.774187, y: 0.4375} + - {x: -0.48428154, y: 0.4375019} + - {x: 2.774187, y: 0.40625} + - {x: 2.774187, y: 0.375} + - {x: 2.774187, y: 0.34375} + - {x: 2.774187, y: 0.3125} + - {x: -0.48428154, y: 0.3125019} + - {x: 2.774187, y: 0.28125} + - {x: -0.48428154, y: 0.2812519} + - {x: -0.48428154, y: 0.3750019} + - {x: -0.9685612, y: 0.3750038} + - {x: -0.48428154, y: 0.3437519} + - {x: -0.9685612, y: 0.3437538} + - {x: -0.9685612, y: 0.3125038} + - {x: -0.9685612, y: 0.2812538} + - {x: -0.48428154, y: 0.5000019} + - {x: -0.9685612, y: 0.5000038} + - {x: -0.48428154, y: 0.4687519} + - {x: -0.9685612, y: 0.4687538} + - {x: -0.9685612, y: 0.4375038} + - {x: -0.48428154, y: 0.4062519} + - {x: -0.9685612, y: 0.4062538} + - {x: 2.774187, y: 0.25} + - {x: -0.48428154, y: 0.2500019} + - {x: 2.774187, y: 0.21875} + - {x: 2.774187, y: 0.1875} + - {x: 2.774187, y: 0.15625} + - {x: 2.774187, y: 0.125} + - {x: 2.774187, y: 0.09375} + - {x: 2.774187, y: 0.0625} + - {x: 2.774187, y: 0.03125} + - {x: 2.774187, y: -2.801452e-10} + - {x: -0.48428154, y: 0.1250019} + - {x: -0.9685612, y: 0.12500381} + - {x: -0.48428154, y: 0.09375191} + - {x: -0.9685612, y: 0.093753815} + - {x: -0.48428154, y: 0.06250191} + - {x: -0.9685612, y: 0.062503815} + - {x: -0.48428154, y: 0.031251907} + - {x: -0.48428154, y: 0.0000019070685} + - {x: -0.9685612, y: 0.0000038144171} + - {x: -0.9685612, y: 0.031253815} + - {x: -0.9685612, y: 0.2500038} + - {x: -0.48428154, y: 0.2187519} + - {x: -0.9685612, y: 0.21875381} + - {x: -0.48428154, y: 0.1875019} + - {x: -0.9685612, y: 0.18750381} + - {x: -0.48428154, y: 0.1562519} + - {x: -0.9685612, y: 0.15625381} + - {x: 2.774187, y: 0.9375} + - {x: 2.774187, y: 0.90625} + - {x: 2.774187, y: 0.875} + - {x: 2.774187, y: 0.84375} + - {x: 2.774187, y: 0.8125} + - {x: 2.774187, y: 0.78125} + - {x: -0.48428154, y: 0.8750019} + - {x: -0.9685612, y: 0.8750038} + - {x: -0.48428154, y: 0.8437519} + - {x: -0.9685612, y: 0.8437538} + - {x: -0.48428154, y: 0.8125019} + - {x: -0.9685612, y: 0.8125038} + - {x: -0.48428154, y: 0.7812519} + - {x: -0.9685612, y: 0.7812538} + - {x: -0.9685612, y: 1.0000038} + - {x: -0.9685612, y: 0.9687538} + - {x: -0.48428154, y: 0.9375019} + - {x: -0.9685612, y: 0.9375038} + - {x: -0.48428154, y: 0.9062519} + - {x: -0.9685612, y: 0.9062538} + - {x: 2.774187, y: 0.75} + - {x: 2.774187, y: 0.71875} + - {x: 2.774187, y: 0.6875} + - {x: 2.774187, y: 0.65625} + - {x: 2.774187, y: 0.625} + - {x: 2.774187, y: 0.59375} + - {x: -0.48428154, y: 0.5937519} + - {x: 2.774187, y: 0.5625} + - {x: 2.774187, y: 0.53125} + - {x: -0.48428154, y: 0.6250019} + - {x: -0.9685612, y: 0.6250038} + - {x: -0.9685612, y: 0.5937538} + - {x: -0.48428154, y: 0.5625019} + - {x: -0.9685612, y: 0.5625038} + - {x: -0.48428154, y: 0.5312519} + - {x: -0.9685612, y: 0.5312538} + - {x: -0.48428154, y: 0.7500019} + - {x: -0.9685612, y: 0.7500038} + - {x: -0.48428154, y: 0.7187519} + - {x: -0.9685612, y: 0.7187538} + - {x: -0.48428154, y: 0.6875019} + - {x: -0.9685612, y: 0.6875038} + - {x: -0.48428154, y: 0.6562519} + - {x: -0.9685612, y: 0.6562538} + - {x: -0.9685612, y: 0.0000038144171} + - {x: -23.954763, y: -0.000007629675} + - {x: -23.954763, y: 0.03124237} + - {x: -0.9685612, y: 0.031253815} + - {x: -23.954763, y: 0.06249237} + - {x: -0.9685612, y: 0.062503815} + - {x: -23.954763, y: 0.09374237} + - {x: -0.9685612, y: 0.093753815} + - {x: -23.954763, y: 0.12499237} + - {x: -0.9685612, y: 0.12500381} + - {x: -23.954763, y: 0.06249237} + - {x: -28.97083, y: 0.0625} + - {x: -23.954763, y: 0.03124237} + - {x: -23.954763, y: -0.000007629675} + - {x: -28.97083, y: -2.801452e-10} + - {x: -28.97083, y: 0.03125} + - {x: -23.954763, y: 0.12499237} + - {x: -28.97083, y: 0.125} + - {x: -23.954763, y: 0.09374237} + - {x: -28.97083, y: 0.09375} + - {x: -28.97083, y: 0.15625} + - {x: -23.954763, y: 0.15624237} + - {x: -28.97083, y: 0.1875} + - {x: -23.954765, y: 0.18749237} + - {x: -28.97083, y: 0.21875} + - {x: -23.954767, y: 0.21874237} + - {x: -28.97083, y: 0.25} + - {x: -23.954767, y: 0.24999237} + - {x: -0.9685612, y: 0.18750381} + - {x: -23.954765, y: 0.18749237} + - {x: -0.9685612, y: 0.15625381} + - {x: -23.954763, y: 0.15624237} + - {x: -0.9685612, y: 0.2500038} + - {x: -23.954767, y: 0.24999237} + - {x: -0.9685612, y: 0.21875381} + - {x: -23.954767, y: 0.21874237} + - {x: -23.954767, y: 0.28124237} + - {x: -0.9685612, y: 0.2812538} + - {x: -23.954767, y: 0.31249237} + - {x: -0.9685612, y: 0.3125038} + - {x: -23.954767, y: 0.34374237} + - {x: -0.9685612, y: 0.3437538} + - {x: -23.954767, y: 0.37499237} + - {x: -0.9685612, y: 0.3750038} + - {x: -23.954767, y: 0.31249237} + - {x: -28.97083, y: 0.3125} + - {x: -23.954767, y: 0.28124237} + - {x: -28.97083, y: 0.28125} + - {x: -23.954767, y: 0.37499237} + - {x: -28.97083, y: 0.375} + - {x: -23.954767, y: 0.34374237} + - {x: -28.97083, y: 0.34375} + - {x: -23.954767, y: 0.43749237} + - {x: -28.97083, y: 0.4375} + - {x: -23.954767, y: 0.40624237} + - {x: -28.97083, y: 0.40625} + - {x: -23.954767, y: 0.49999237} + - {x: -28.97083, y: 0.5} + - {x: -23.954767, y: 0.46874237} + - {x: -28.97083, y: 0.46875} + - {x: -23.954767, y: 0.40624237} + - {x: -0.9685612, y: 0.4062538} + - {x: -23.954767, y: 0.43749237} + - {x: -0.9685612, y: 0.4375038} + - {x: -23.954767, y: 0.46874237} + - {x: -0.9685612, y: 0.4687538} + - {x: -23.954767, y: 0.49999237} + - {x: -0.9685612, y: 0.5000038} + - {x: -23.954767, y: 0.5312424} + - {x: -0.9685612, y: 0.5312538} + - {x: -23.954767, y: 0.5624924} + - {x: -0.9685612, y: 0.5625038} + - {x: -23.954767, y: 0.5937424} + - {x: -0.9685612, y: 0.5937538} + - {x: -23.954767, y: 0.6249924} + - {x: -0.9685612, y: 0.6250038} + - {x: -23.954767, y: 0.5624924} + - {x: -28.97083, y: 0.5625} + - {x: -23.954767, y: 0.5312424} + - {x: -28.97083, y: 0.53125} + - {x: -23.954767, y: 0.6249924} + - {x: -28.97083, y: 0.625} + - {x: -23.954767, y: 0.5937424} + - {x: -28.97083, y: 0.59375} + - {x: -23.954767, y: 0.6874924} + - {x: -28.97083, y: 0.6875} + - {x: -23.954767, y: 0.6562424} + - {x: -28.97083, y: 0.65625} + - {x: -23.954767, y: 0.7499924} + - {x: -28.97083, y: 0.75} + - {x: -23.954767, y: 0.7187424} + - {x: -28.97083, y: 0.71875} + - {x: -23.954767, y: 0.6562424} + - {x: -0.9685612, y: 0.6562538} + - {x: -23.954767, y: 0.6874924} + - {x: -0.9685612, y: 0.6875038} + - {x: -23.954767, y: 0.7187424} + - {x: -0.9685612, y: 0.7187538} + - {x: -23.954767, y: 0.7499924} + - {x: -0.9685612, y: 0.7500038} + - {x: -23.954767, y: 0.7812424} + - {x: -0.9685612, y: 0.7812538} + - {x: -23.954767, y: 0.8124924} + - {x: -0.9685612, y: 0.8125038} + - {x: -23.954767, y: 0.8437424} + - {x: -0.9685612, y: 0.8437538} + - {x: -23.954767, y: 0.8749924} + - {x: -0.9685612, y: 0.8750038} + - {x: -23.954767, y: 0.8124924} + - {x: -28.97083, y: 0.8125} + - {x: -23.954767, y: 0.7812424} + - {x: -28.97083, y: 0.78125} + - {x: -23.954767, y: 0.8749924} + - {x: -28.97083, y: 0.875} + - {x: -23.954767, y: 0.8437424} + - {x: -28.97083, y: 0.84375} + - {x: -23.954767, y: 0.9374924} + - {x: -28.97083, y: 0.9375} + - {x: -23.954767, y: 0.9062424} + - {x: -28.97083, y: 0.90625} + - {x: -23.954767, y: 0.9062424} + - {x: -0.9685612, y: 0.9062538} + - {x: -23.954767, y: 0.9374924} + - {x: -0.9685612, y: 0.9375038} + - {x: -23.954767, y: 0.9687424} + - {x: -0.9685612, y: 0.9687538} + - {x: -23.954767, y: 0.9999924} + - {x: -0.9685612, y: 1.0000038} + - {x: 0.9685612, y: 0.0000038146977} + - {x: 0.9685612, y: 0.031253815} + - {x: 23.954762, y: 0.03124237} + - {x: 23.954762, y: -0.000007629394} + - {x: 0.9685612, y: 0.062503815} + - {x: 23.954762, y: 0.06249237} + - {x: 0.9685612, y: 0.093753815} + - {x: 23.954762, y: 0.09374237} + - {x: 0.9685612, y: 0.12500381} + - {x: 23.954762, y: 0.12499237} + - {x: 23.954763, y: 0.18749237} + - {x: 0.9685612, y: 0.18750381} + - {x: 23.954762, y: 0.15624237} + - {x: 0.9685612, y: 0.15625381} + - {x: 23.954765, y: 0.24999237} + - {x: 0.9685612, y: 0.2500038} + - {x: 23.954765, y: 0.21874237} + - {x: 0.9685612, y: 0.21875381} + - {x: 0.9685612, y: 0.2812538} + - {x: 23.954765, y: 0.28124237} + - {x: 0.9685612, y: 0.3125038} + - {x: 23.954765, y: 0.31249237} + - {x: 0.9685612, y: 0.3437538} + - {x: 23.954765, y: 0.34374237} + - {x: 0.9685612, y: 0.3750038} + - {x: 23.954765, y: 0.37499237} + - {x: 0.9685612, y: 0.4062538} + - {x: 23.954765, y: 0.40624237} + - {x: 0.9685612, y: 0.4375038} + - {x: 23.954765, y: 0.43749237} + - {x: 0.9685612, y: 0.4687538} + - {x: 23.954765, y: 0.46874237} + - {x: 0.9685612, y: 0.5000038} + - {x: 23.954765, y: 0.49999237} + - {x: 0.9685612, y: 0.5312538} + - {x: 23.954765, y: 0.5312424} + - {x: 0.9685612, y: 0.5625038} + - {x: 23.954765, y: 0.5624924} + - {x: 0.9685612, y: 0.5937538} + - {x: 23.954765, y: 0.5937424} + - {x: 0.9685612, y: 0.6250038} + - {x: 23.954765, y: 0.6249924} + - {x: 0.9685612, y: 0.6562538} + - {x: 23.954765, y: 0.6562424} + - {x: 0.9685612, y: 0.6875038} + - {x: 23.954765, y: 0.6874924} + - {x: 0.9685612, y: 0.7187538} + - {x: 23.954765, y: 0.7187424} + - {x: 0.9685612, y: 0.7500038} + - {x: 23.954765, y: 0.7499924} + - {x: 0.9685612, y: 0.7812538} + - {x: 23.954765, y: 0.7812424} + - {x: 0.9685612, y: 0.8125038} + - {x: 23.954765, y: 0.8124924} + - {x: 0.9685612, y: 0.8437538} + - {x: 23.954765, y: 0.8437424} + - {x: 0.9685612, y: 0.8750038} + - {x: 23.954765, y: 0.8749924} + - {x: 0.9685612, y: 0.9062538} + - {x: 23.954765, y: 0.9062424} + - {x: 0.9685612, y: 0.9375038} + - {x: 23.954765, y: 0.9374924} + - {x: 0.9685612, y: 0.9687538} + - {x: 23.954765, y: 0.9687424} + - {x: 0.9685612, y: 1.0000038} + - {x: 23.954765, y: 0.9999924} + - {x: 0.9694316, y: 0.49439794} + - {x: 0.9694316, y: 0.463148} + - {x: 0.9694316, y: 0.43189803} + - {x: 0.9694316, y: 0.40064806} + - {x: 0.9694316, y: 0.36939812} + - {x: 0.9694316, y: 0.33814815} + - {x: 0.9694316, y: 0.30689818} + - {x: 0.9694316, y: 0.27564824} + - {x: 0.48515195, y: 0.369396} + - {x: -2.7733183, y: 0.36939284} + - {x: 0.48515195, y: 0.33814606} + - {x: -2.7733183, y: 0.33814287} + - {x: 0.48515195, y: 0.3068961} + - {x: -2.7733183, y: 0.3068929} + - {x: 0.48515195, y: 0.27564612} + - {x: -2.7733183, y: 0.27564296} + - {x: 0.48515195, y: 0.49439585} + - {x: -2.7733183, y: 0.49439266} + - {x: 0.48515195, y: 0.46314588} + - {x: -2.7733183, y: 0.46314272} + - {x: 0.48515195, y: 0.43189594} + - {x: -2.7733183, y: 0.43189275} + - {x: 0.48515195, y: 0.40064597} + - {x: -2.7733183, y: 0.40064278} + - {x: 0.9694316, y: 0.24439827} + - {x: 0.9694316, y: 0.2131483} + - {x: 0.9694316, y: 0.18189834} + - {x: 0.9694316, y: 0.15064839} + - {x: 0.9694316, y: 0.11939842} + - {x: 0.9694316, y: 0.08814846} + - {x: 0.9694316, y: 0.056898497} + - {x: 0.9694316, y: 0.025648536} + - {x: 0.9694316, y: -0.0056014243} + - {x: 0.48515195, y: 0.11939632} + - {x: -2.7733183, y: 0.11939315} + - {x: 0.48515195, y: 0.08814636} + - {x: -2.7733183, y: 0.088143185} + - {x: 0.48515195, y: 0.0568964} + - {x: -2.7733183, y: 0.056893222} + - {x: 0.48515195, y: 0.02564644} + - {x: 0.48515195, y: -0.00560352} + - {x: -2.7733183, y: -0.0056066993} + - {x: -2.7733183, y: 0.025643261} + - {x: 0.48515195, y: 0.24439617} + - {x: -2.7733183, y: 0.24439299} + - {x: 0.48515195, y: 0.21314621} + - {x: -2.7733183, y: 0.21314302} + - {x: 0.48515195, y: 0.18189624} + - {x: -2.7733183, y: 0.18189307} + - {x: 0.48515195, y: 0.15064628} + - {x: -2.7733183, y: 0.15064311} + - {x: 0.9694316, y: 0.99439734} + - {x: 0.9694316, y: 0.96314734} + - {x: 0.48515195, y: 0.96314526} + - {x: 0.48515195, y: 0.99439526} + - {x: 0.9694316, y: 0.9318974} + - {x: 0.9694316, y: 0.90064746} + - {x: 0.9694316, y: 0.86939746} + - {x: 0.9694316, y: 0.8381475} + - {x: 0.9694316, y: 0.8068976} + - {x: 0.9694316, y: 0.7756476} + - {x: 0.48515195, y: 0.8693954} + - {x: -2.7733183, y: 0.8693922} + - {x: 0.48515195, y: 0.83814543} + - {x: -2.7733183, y: 0.8381422} + - {x: 0.48515195, y: 0.80689543} + - {x: -2.7733183, y: 0.8068923} + - {x: 0.48515195, y: 0.7756455} + - {x: -2.7733183, y: 0.77564234} + - {x: -2.7733183, y: 0.9631421} + - {x: 0.48515195, y: 0.9318953} + - {x: -2.7733183, y: 0.93189216} + - {x: 0.48515195, y: 0.9006453} + - {x: -2.7733183, y: 0.90064216} + - {x: 0.9694316, y: 0.74439764} + - {x: 0.9694316, y: 0.7131477} + - {x: 0.9694316, y: 0.6818977} + - {x: 0.9694316, y: 0.65064776} + - {x: 0.9694316, y: 0.6193978} + - {x: 0.9694316, y: 0.5881478} + - {x: 0.9694316, y: 0.5568979} + - {x: 0.9694316, y: 0.52564794} + - {x: 0.48515195, y: 0.6193957} + - {x: -2.7733183, y: 0.6193925} + - {x: 0.48515195, y: 0.58814573} + - {x: -2.7733183, y: 0.5881426} + - {x: 0.48515195, y: 0.5568958} + - {x: -2.7733183, y: 0.5568926} + - {x: 0.48515195, y: 0.5256458} + - {x: -2.7733183, y: 0.52564263} + - {x: 0.48515195, y: 0.74439555} + - {x: -2.7733183, y: 0.74439234} + - {x: 0.48515195, y: 0.71314555} + - {x: -2.7733183, y: 0.7131424} + - {x: 0.48515195, y: 0.6818956} + - {x: -2.7733183, y: 0.68189245} + - {x: 0.48515195, y: 0.6506457} + - {x: -2.7733183, y: 0.65064245} + - {x: 13.834999, y: -11.203365} + - {x: 13.848736, y: -11.203365} + - {x: 13.807526, y: -11.203365} + - {x: 13.821262, y: -11.203365} + - {x: 13.848736, y: -11.151112} + - {x: 13.834999, y: -11.151112} + - {x: 13.821262, y: -11.151112} + - {x: 13.807526, y: -11.151112} + - {x: 13.793789, y: -11.203365} + - {x: 13.780052, y: -11.203365} + - {x: 13.766315, y: -11.203365} + - {x: 13.752578, y: -11.203365} + - {x: 13.780052, y: -11.151112} + - {x: 13.793789, y: -11.151112} + - {x: 13.766315, y: -11.151112} + - {x: 13.752578, y: -11.151112} + - {x: 12.654625, y: -11.255619} + - {x: 12.552206, y: -11.203365} + - {x: 13.738841, y: -11.203365} + - {x: 12.226609, y: -11.255619} + - {x: 11.74221, y: -11.255619} + - {x: 12.654625, y: -11.151112} + - {x: 13.738841, y: -11.151112} + - {x: 12.226609, y: -11.203365} + - {x: 12.226609, y: -11.151112} + - {x: 11.74221, y: -11.203365} + - {x: 11.74221, y: -11.151112} + - {x: 11.257811, y: -11.203365} + - {x: 11.204537, y: -11.203365} + - {x: 11.2311735, y: -11.203365} + - {x: 11.151264, y: -11.203365} + - {x: 11.1779, y: -11.203365} + - {x: 11.257811, y: -11.151112} + - {x: 11.2311735, y: -11.151112} + - {x: 11.204537, y: -11.151112} + - {x: 11.151264, y: -11.151112} + - {x: 11.1779, y: -11.151112} + - {x: 13.848736, y: -13.848587} + - {x: 13.834999, y: -13.848587} + - {x: 13.821262, y: -13.848587} + - {x: 13.807526, y: -13.848587} + - {x: 13.848736, y: -11.255619} + - {x: 13.848736, y: -13.735809} + - {x: 13.834999, y: -13.735809} + - {x: 13.834999, y: -11.255619} + - {x: 13.821262, y: -13.735809} + - {x: 13.821262, y: -11.255619} + - {x: 13.807526, y: -13.735809} + - {x: 13.807526, y: -11.255619} + - {x: 13.793789, y: -13.735809} + - {x: 13.793789, y: -11.255619} + - {x: 13.793789, y: -13.848587} + - {x: 13.780052, y: -13.848587} + - {x: 13.766315, y: -13.848587} + - {x: 13.752578, y: -13.848587} + - {x: 13.738841, y: -13.848587} + - {x: 13.780052, y: -13.735809} + - {x: 13.780052, y: -11.255619} + - {x: 13.766315, y: -13.735809} + - {x: 13.766315, y: -11.255619} + - {x: 13.752578, y: -13.735809} + - {x: 13.752578, y: -11.255619} + - {x: 13.738841, y: -13.735809} + - {x: 13.738841, y: -11.255619} + - {x: 12.654625, y: -13.848587} + - {x: 12.654625, y: -13.735809} + - {x: 11.74221, y: -13.848587} + - {x: 11.257811, y: -13.848587} + - {x: 11.257811, y: -13.735809} + - {x: 11.74221, y: -13.735809} + - {x: 11.2311735, y: -13.848587} + - {x: 11.2311735, y: -13.735809} + - {x: 11.204537, y: -13.848587} + - {x: 11.204537, y: -13.735809} + - {x: 11.1779, y: -13.848587} + - {x: 11.151264, y: -13.848587} + - {x: 11.151264, y: -13.735809} + - {x: 11.1779, y: -13.735809} + - {x: 11.2311735, y: -11.255619} + - {x: 11.257811, y: -11.255619} + - {x: 11.204537, y: -11.255619} + - {x: 11.1779, y: -11.255619} + - {x: 11.151264, y: -11.255619} + - {x: -24.745375, y: -23.954762} + - {x: -24.745377, y: -28.970829} + - {x: -24.872688, y: -28.970829} + - {x: -24.872688, y: -23.954762} + - {x: -24.872688, y: -28.970829} + - {x: -28.211613, y: -28.97083} + - {x: -28.211613, y: -23.954763} + - {x: -24.872688, y: -23.954762} + - {x: -24.49075, y: -23.954762} + - {x: -24.490751, y: -28.970829} + - {x: -24.618065, y: -28.970829} + - {x: -24.618061, y: -23.954762} + - {x: -24.618065, y: -28.970829} + - {x: -24.745377, y: -28.970829} + - {x: -24.745375, y: -23.954762} + - {x: -24.618061, y: -23.954762} + - {x: -24.745377, y: -0.96855927} + - {x: -24.745375, y: -23.954762} + - {x: -24.872688, y: -23.954762} + - {x: -24.872688, y: -0.96855927} + - {x: -24.872688, y: -23.954762} + - {x: -28.211613, y: -23.954763} + - {x: -28.211613, y: -0.9685612} + - {x: -24.872688, y: -0.96855927} + - {x: -24.490751, y: -0.96855927} + - {x: -24.49075, y: -23.954762} + - {x: -24.618061, y: -23.954762} + - {x: -24.618065, y: -0.96855927} + - {x: -24.618061, y: -23.954762} + - {x: -24.745375, y: -23.954762} + - {x: -24.745377, y: -0.96855927} + - {x: -24.618065, y: -0.96855927} + - {x: -24.49075, y: -23.954762} + - {x: -24.363438, y: -23.954762} + - {x: -24.363438, y: -28.970829} + - {x: -24.490751, y: -28.970829} + - {x: -24.363438, y: -23.954762} + - {x: -24.236126, y: -23.954762} + - {x: -24.236126, y: -28.970829} + - {x: -24.363438, y: -28.970829} + - {x: -24.236126, y: -23.954762} + - {x: -24.108814, y: -23.954762} + - {x: -24.108814, y: -28.970829} + - {x: -24.236126, y: -28.970829} + - {x: -24.108814, y: -23.954762} + - {x: -23.981503, y: -23.954762} + - {x: -23.981503, y: -28.970829} + - {x: -24.108814, y: -28.970829} + - {x: -24.49075, y: -23.954762} + - {x: -24.490751, y: -0.96855927} + - {x: -24.363438, y: -0.96855927} + - {x: -24.363438, y: -23.954762} + - {x: -24.363438, y: -0.96855927} + - {x: -24.236126, y: -0.96855927} + - {x: -24.236126, y: -23.954762} + - {x: -24.363438, y: -23.954762} + - {x: -24.236126, y: -0.96855927} + - {x: -24.108814, y: -0.96855927} + - {x: -24.108814, y: -23.954762} + - {x: -24.236126, y: -23.954762} + - {x: -24.108814, y: -0.96855927} + - {x: -23.981503, y: -0.96855927} + - {x: -23.981503, y: -23.954762} + - {x: -24.108814, y: -23.954762} + - {x: -23.981503, y: -0.96855927} + - {x: -13.933051, y: -0.96855927} + - {x: -13.933051, y: -23.954762} + - {x: -23.981503, y: -23.954762} + - {x: -13.933051, y: -0.96855927} + - {x: -9.966236, y: -0.96855927} + - {x: -9.966236, y: -23.954762} + - {x: -13.933051, y: -23.954762} + - {x: -9.966236, y: -0.96855927} + - {x: -5.4768515, y: -0.96855927} + - {x: -5.4768515, y: -23.954762} + - {x: -9.966236, y: -23.954762} + - {x: -5.4768515, y: -0.96855927} + - {x: -0.9874668, y: -0.96855927} + - {x: -0.9874668, y: -23.954762} + - {x: -5.4768515, y: -23.954762} + - {x: -23.981503, y: -28.970829} + - {x: -23.981503, y: -23.954762} + - {x: -13.933051, y: -23.954762} + - {x: -13.933051, y: -25} + - {x: -13.933051, y: -23.954762} + - {x: -9.966236, y: -23.954762} + - {x: -9.966236, y: -25} + - {x: -13.933051, y: -25} + - {x: -9.966236, y: -25} + - {x: -9.966236, y: -23.954762} + - {x: -5.4768515, y: -23.954762} + - {x: -5.4768505, y: -28.970829} + - {x: -5.4768515, y: -23.954762} + - {x: -0.9874668, y: -23.954762} + - {x: -0.9874668, y: -28.970829} + - {x: -5.4768505, y: -28.970829} + - {x: -0.9874668, y: -0.96855927} + - {x: -0.7406001, y: -0.96855927} + - {x: -0.7406001, y: -23.954762} + - {x: -0.9874668, y: -23.954762} + - {x: -0.7406001, y: -0.96855927} + - {x: -0.4937334, y: -0.96855927} + - {x: -0.4937334, y: -23.954762} + - {x: -0.7406001, y: -23.954762} + - {x: -0.4937334, y: -0.96855927} + - {x: -0.2468667, y: -0.96855927} + - {x: -0.2468667, y: -23.954762} + - {x: -0.4937334, y: -23.954762} + - {x: -0.2468667, y: -0.96855927} + - {x: 3.536171, y: -0.9685612} + - {x: 3.536171, y: -23.954762} + - {x: -0.2468667, y: -23.954762} + - {x: -0.9874668, y: -28.970829} + - {x: -0.9874668, y: -23.954762} + - {x: -0.7406001, y: -23.954762} + - {x: -0.7405987, y: -28.970829} + - {x: -0.7406001, y: -23.954762} + - {x: -0.4937334, y: -23.954762} + - {x: -0.49373436, y: -28.970829} + - {x: -0.7405987, y: -28.970829} + - {x: -0.49373436, y: -28.970829} + - {x: -0.4937334, y: -23.954762} + - {x: -0.2468667, y: -23.954762} + - {x: -0.24686623, y: -28.970829} + - {x: -0.2468667, y: -23.954762} + - {x: 3.536171, y: -23.954762} + - {x: 3.536171, y: -28.970829} + - {x: -0.24686623, y: -28.970829} + - {x: -24.49075, y: 2.774189} + - {x: -24.490751, y: -0.48427963} + - {x: -24.618065, y: -0.48427963} + - {x: -24.618065, y: 2.774189} + - {x: -24.618065, y: -0.48427963} + - {x: -24.745377, y: -0.48427963} + - {x: -24.745377, y: 2.774189} + - {x: -24.618065, y: 2.774189} + - {x: -28.211613, y: -0.48428154} + - {x: -28.211613, y: 2.774187} + - {x: -24.872688, y: 2.774189} + - {x: -24.872688, y: -0.48427963} + - {x: -24.872688, y: 2.774189} + - {x: -24.745377, y: 2.774189} + - {x: -24.745377, y: -0.48427963} + - {x: -24.872688, y: -0.48427963} + - {x: -28.211613, y: -0.9685612} + - {x: -28.211613, y: -0.48428154} + - {x: -24.872688, y: -0.48427963} + - {x: -24.872688, y: -0.96855927} + - {x: -24.872688, y: -0.48427963} + - {x: -24.745377, y: -0.48427963} + - {x: -24.745377, y: -0.96855927} + - {x: -24.872688, y: -0.96855927} + - {x: -24.745377, y: -0.96855927} + - {x: -24.745377, y: -0.48427963} + - {x: -24.618065, y: -0.48427963} + - {x: -24.618065, y: -0.96855927} + - {x: -24.618065, y: -0.48427963} + - {x: -24.490751, y: -0.48427963} + - {x: -24.490751, y: -0.96855927} + - {x: -24.618065, y: -0.96855927} + - {x: -24.490751, y: -0.96855927} + - {x: -24.490751, y: -0.48427963} + - {x: -24.363438, y: -0.48427963} + - {x: -24.363438, y: -0.96855927} + - {x: -24.363438, y: -0.48427963} + - {x: -24.236126, y: -0.48427963} + - {x: -24.236126, y: -0.96855927} + - {x: -24.363438, y: -0.96855927} + - {x: -24.236126, y: -0.96855927} + - {x: -24.236126, y: -0.48427963} + - {x: -24.108814, y: -0.48427963} + - {x: -24.108814, y: -0.96855927} + - {x: -24.108814, y: -0.48427963} + - {x: -23.981503, y: -0.48427963} + - {x: -23.981503, y: -0.96855927} + - {x: -24.108814, y: -0.96855927} + - {x: -23.981503, y: 2.774189} + - {x: -23.981503, y: -0.48427963} + - {x: -24.108814, y: -0.48427963} + - {x: -24.108814, y: 2.774189} + - {x: -24.108814, y: -0.48427963} + - {x: -24.236126, y: -0.48427963} + - {x: -24.236126, y: 2.774189} + - {x: -24.108814, y: 2.774189} + - {x: -24.490751, y: -0.48427963} + - {x: -24.49075, y: 2.774189} + - {x: -24.363438, y: 2.774189} + - {x: -24.363438, y: -0.48427963} + - {x: -24.363438, y: 2.774189} + - {x: -24.236126, y: 2.774189} + - {x: -24.236126, y: -0.48427963} + - {x: -24.363438, y: -0.48427963} + - {x: -23.981503, y: 2.774189} + - {x: -13.933051, y: 2.774189} + - {x: -13.933051, y: -0.48427963} + - {x: -23.981503, y: -0.48427963} + - {x: -13.933051, y: 2.774189} + - {x: -9.966236, y: 2.774189} + - {x: -9.966236, y: -0.48427963} + - {x: -13.933051, y: -0.48427963} + - {x: -9.966236, y: 2.774189} + - {x: -5.4768515, y: 2.774189} + - {x: -5.4768515, y: -0.48427963} + - {x: -9.966236, y: -0.48427963} + - {x: -5.4768515, y: 2.774189} + - {x: -0.9874668, y: 2.774189} + - {x: -0.9874668, y: -0.48427963} + - {x: -5.4768515, y: -0.48427963} + - {x: -23.981503, y: -0.96855927} + - {x: -23.981503, y: -0.48427963} + - {x: -13.933051, y: -0.48427963} + - {x: -13.933051, y: -0.96855927} + - {x: -13.933051, y: -0.48427963} + - {x: -9.966236, y: -0.48427963} + - {x: -9.966236, y: -0.96855927} + - {x: -13.933051, y: -0.96855927} + - {x: -9.966236, y: -0.96855927} + - {x: -9.966236, y: -0.48427963} + - {x: -5.4768515, y: -0.48427963} + - {x: -5.4768515, y: -0.96855927} + - {x: -5.4768515, y: -0.48427963} + - {x: -0.9874668, y: -0.48427963} + - {x: -0.9874668, y: -0.96855927} + - {x: -5.4768515, y: -0.96855927} + - {x: -0.9874668, y: -0.96855927} + - {x: -0.9874668, y: -0.48427963} + - {x: -0.7406001, y: -0.48427963} + - {x: -0.7406001, y: -0.96855927} + - {x: -0.7406001, y: -0.48427963} + - {x: -0.4937334, y: -0.48427963} + - {x: -0.4937334, y: -0.96855927} + - {x: -0.7406001, y: -0.96855927} + - {x: -0.4937334, y: -0.96855927} + - {x: -0.4937334, y: -0.48427963} + - {x: -0.2468667, y: -0.48427963} + - {x: -0.2468667, y: -0.96855927} + - {x: -0.2468667, y: -0.48427963} + - {x: 3.536171, y: -0.48428154} + - {x: 3.536171, y: -0.9685612} + - {x: -0.2468667, y: -0.96855927} + - {x: -0.9874668, y: -0.48427963} + - {x: -0.9874668, y: 2.774189} + - {x: -0.74059963, y: 2.774189} + - {x: -0.7406001, y: -0.48427963} + - {x: -0.74059963, y: 2.774189} + - {x: -0.4937334, y: 2.774189} + - {x: -0.4937334, y: -0.48427963} + - {x: -0.7406001, y: -0.48427963} + - {x: 3.536171, y: 2.774189} + - {x: 3.536171, y: -0.48428154} + - {x: -0.2468667, y: -0.48427963} + - {x: -0.24686718, y: 2.774189} + - {x: -0.2468667, y: -0.48427963} + - {x: -0.4937334, y: -0.48427963} + - {x: -0.4937334, y: 2.774189} + - {x: -0.24686718, y: 2.774189} + - {x: 5.4768505, y: -8.523521} + - {x: 0.9874668, y: -8.523521} + - {x: 0.9874672, y: -2.448642} + - {x: 5.4768524, y: -2.448642} + - {x: 0.9874672, y: -2.448642} + - {x: 0.9874668, y: 10.486878} + - {x: 5.4768515, y: 10.486878} + - {x: 5.4768524, y: -2.448642} + - {x: -0.96855927, y: 1.0000038} + - {x: -23.954765, y: 0.9999924} + - {x: -23.954693, y: 6.0546417} + - {x: -0.9684906, y: 6.054653} + - {x: -23.954693, y: 6.0546417} + - {x: -23.954624, y: 19.741806} + - {x: -0.96842194, y: 19.741821} + - {x: -0.9684906, y: 6.054653} + - {x: -0.9874668, y: 0.9997605} + - {x: -5.4768515, y: 0.9997605} + - {x: -5.4768524, y: 6.05441} + - {x: -0.9874671, y: 6.05441} + - {x: -5.4768524, y: 6.05441} + - {x: -5.4768515, y: 19.741573} + - {x: -0.9874668, y: 19.741573} + - {x: -0.9874671, y: 6.05441} + - {x: 9.9359865, y: 0.99975806} + - {x: 5.4768515, y: 0.99975806} + - {x: 5.4768524, y: 6.0544076} + - {x: 9.935987, y: 6.0544076} + - {x: -24.154766, y: 0.9999957} + - {x: -24.96975, y: 1.0000017} + - {x: -24.969677, y: 6.0546513} + - {x: -24.154694, y: 6.054645} + - {x: -5.4768515, y: 0.9997605} + - {x: -9.766236, y: 0.9997605} + - {x: -9.766237, y: 6.05441} + - {x: -5.4768524, y: 6.05441} + - {x: 0.9874668, y: 0.99975806} + - {x: 0.7406001, y: 0.99975806} + - {x: 0.740601, y: 6.0544076} + - {x: 0.9874672, y: 6.0544076} + - {x: 0.740601, y: 6.0544076} + - {x: 0.7406006, y: 19.741571} + - {x: 0.9874668, y: 19.741571} + - {x: 0.9874672, y: 6.0544076} + - {x: 0.4937334, y: 0.99975806} + - {x: 0.49373472, y: 6.0544076} + - {x: 0.49373472, y: 6.0544076} + - {x: 0.49373436, y: 19.741571} + - {x: -0.03025, y: 1} + - {x: -0.2468667, y: 1} + - {x: -0.24686742, y: 6.0546494} + - {x: -0.030250238, y: 6.0546494} + - {x: -0.24686742, y: 6.0546494} + - {x: -0.24686623, y: 19.741814} + - {x: -0.03025, y: 19.741814} + - {x: -0.030250238, y: 6.0546494} + - {x: 0.03025, y: 0.99975806} + - {x: 0.030250357, y: 6.0544076} + - {x: 0.030250357, y: 6.0544076} + - {x: 0.03025, y: 19.741571} + - {x: 24.96975, y: 0.99999976} + - {x: 23.954765, y: 0.9999924} + - {x: 23.954693, y: 6.0546417} + - {x: 24.969677, y: 6.0546494} + - {x: 23.954693, y: 6.0546417} + - {x: 23.954624, y: 19.741806} + - {x: 24.969608, y: 19.741814} + - {x: 24.969677, y: 6.0546494} + - {x: 23.954765, y: -0.10887466} + - {x: 0.96856064, y: -0.10886268} + - {x: 0.9684906, y: 5.774804} + - {x: 23.954693, y: 5.7747917} + - {x: 0.9684906, y: 5.774804} + - {x: 0.96842194, y: 18.829344} + - {x: 23.954624, y: 18.829329} + - {x: 23.954693, y: 5.7747917} + - {x: 0.2468667, y: 0.99975806} + - {x: 0.24686658, y: 6.0544076} + - {x: 0.24686658, y: 6.0544076} + - {x: 0.24686623, y: 19.741571} + - {x: 0.48427963, y: 1.0000019} + - {x: 0.03025, y: 1.0000001} + - {x: 0.03017752, y: 6.0546494} + - {x: 0.48421097, y: 6.0546494} + - {x: 0.03017752, y: 6.0546494} + - {x: 0.030108856, y: 19.741814} + - {x: 0.4841385, y: 19.741814} + - {x: 0.48421097, y: 6.0546494} + - {x: 24.108814, y: 0.99964154} + - {x: 23.981503, y: 0.99964154} + - {x: 23.981503, y: 6.054291} + - {x: 24.108814, y: 6.054291} + - {x: 0.96855927, y: 1.0000038} + - {x: 0.9684906, y: 6.054653} + - {x: 0.48421097, y: 6.0546494} + - {x: 0.4841385, y: 19.741814} + - {x: 0.96842194, y: 19.741821} + - {x: 0.9684906, y: 6.054653} + - {x: -0.4937346, y: 6.0546494} + - {x: -0.49373436, y: 19.741814} + - {x: -0.4937334, y: 1} + - {x: -0.4937346, y: 6.0546494} + - {x: -0.7406009, y: 6.0546494} + - {x: -0.7406006, y: 19.741814} + - {x: -0.98746806, y: 0.27972648} + - {x: -5.476853, y: 0.27972698} + - {x: -5.4768524, y: 5.8649554} + - {x: -0.9874671, y: 5.864956} + - {x: -5.4768524, y: 5.8649554} + - {x: -5.4768515, y: 19.12332} + - {x: -0.9874668, y: 19.123318} + - {x: -0.9874671, y: 5.864956} + - {x: -0.7406001, y: 1} + - {x: -0.9874668, y: 1} + - {x: -0.9874671, y: 6.0546494} + - {x: -0.7406009, y: 6.0546494} + - {x: -0.9874671, y: 6.0546494} + - {x: -0.9874668, y: 19.741814} + - {x: 23.981503, y: 0.9999948} + - {x: 13.933051, y: 0.9999948} + - {x: 13.933052, y: 6.054644} + - {x: 23.981503, y: 6.054644} + - {x: 13.933052, y: 6.054644} + - {x: 13.933051, y: 19.741812} + - {x: 23.981503, y: 19.741812} + - {x: 23.981503, y: 6.054644} + - {x: 24.236126, y: 0.99964154} + - {x: 24.236126, y: 6.054291} + - {x: -23.981503, y: 1} + - {x: -23.981503, y: 6.0546494} + - {x: -24.108814, y: 6.0546494} + - {x: -24.108814, y: 19.741814} + - {x: -23.981503, y: 19.741814} + - {x: -23.981503, y: 6.0546494} + - {x: -13.933051, y: 0.27972636} + - {x: -23.981503, y: 0.27972636} + - {x: -23.981503, y: 5.864955} + - {x: -13.933052, y: 5.864955} + - {x: -23.981503, y: 5.864955} + - {x: -23.981503, y: 19.123318} + - {x: -13.933051, y: 19.123318} + - {x: -13.933052, y: 5.864955} + - {x: -9.966236, y: 0.2797264} + - {x: -13.933051, y: 0.2797264} + - {x: -13.933052, y: 5.864955} + - {x: -9.966237, y: 5.864955} + - {x: -13.933052, y: 5.864955} + - {x: -13.933051, y: 19.123318} + - {x: -9.966236, y: 19.123318} + - {x: -9.966237, y: 5.864955} + - {x: 13.933051, y: 0.99999446} + - {x: 9.966236, y: 0.99999446} + - {x: 9.966237, y: 6.0546436} + - {x: 13.933052, y: 6.0546436} + - {x: 9.966237, y: 6.0546436} + - {x: 9.966236, y: 19.741812} + - {x: 13.933051, y: 19.741812} + - {x: 13.933052, y: 6.0546436} + - {x: -5.4768515, y: 0.27972636} + - {x: -9.966236, y: 0.27972636} + - {x: -9.966237, y: 5.864955} + - {x: -5.4768524, y: 5.864955} + - {x: -9.966237, y: 5.864955} + - {x: -9.966236, y: 19.123318} + - {x: -5.4768515, y: 19.123318} + - {x: -5.4768524, y: 5.864955} + - {x: 9.966236, y: 0.9999943} + - {x: 5.476851, y: 0.9999943} + - {x: 5.476852, y: 6.0546436} + - {x: 9.966237, y: 6.0546436} + - {x: 5.476852, y: 6.0546436} + - {x: 5.476851, y: 19.741812} + - {x: 9.966236, y: 19.741812} + - {x: 9.966237, y: 6.0546436} + - {x: 5.476851, y: 0.9999948} + - {x: 0.9874664, y: 0.9999948} + - {x: 0.9874668, y: 6.054644} + - {x: 5.476852, y: 6.054644} + - {x: 0.9874668, y: 6.054644} + - {x: 0.9874664, y: 19.741812} + - {x: 5.476851, y: 19.741812} + - {x: 5.476852, y: 6.054644} + - {x: 24.363438, y: 0.99964154} + - {x: 24.363438, y: 6.054291} + - {x: 24.490751, y: 0.99964154} + - {x: 24.490751, y: 6.054291} + - {x: 24.872688, y: 0.99964154} + - {x: 24.872688, y: 6.054291} + - {x: 24.618065, y: 0.99964154} + - {x: 24.618065, y: 6.054291} + - {x: -0.48434618, y: -6.9178934} + - {x: -0.9686258, y: -6.9178915} + - {x: -0.9685479, y: -1.1674798} + - {x: -0.48426825, y: -1.1674838} + - {x: -0.9685479, y: -1.1674798} + - {x: -0.9684792, y: 11.975188} + - {x: -0.48419577, y: 11.975181} + - {x: -0.48426825, y: -1.1674838} + - {x: 24.96975, y: 0.99964154} + - {x: 24.96975, y: 6.054291} + - {x: 24.745377, y: 0.99964154} + - {x: 24.745377, y: 6.054291} + - {x: -24.108814, y: 1} + - {x: -24.108814, y: 6.0546494} + - {x: -24.236126, y: 6.0546494} + - {x: -24.236126, y: 19.741814} + - {x: -24.108814, y: 19.741814} + - {x: -24.108814, y: 6.0546494} + - {x: -24.363438, y: 1} + - {x: -24.363438, y: 6.0546494} + - {x: -24.490751, y: 6.0546494} + - {x: -24.490751, y: 19.741814} + - {x: -24.363438, y: 19.741814} + - {x: -24.363438, y: 6.0546494} + - {x: -24.236126, y: 1} + - {x: -24.236126, y: 6.0546494} + - {x: -24.363438, y: 6.0546494} + - {x: -24.363438, y: 19.741814} + - {x: -24.236126, y: 19.741814} + - {x: -24.236126, y: 6.0546494} + - {x: -24.490751, y: 1} + - {x: -24.490751, y: 6.0546494} + - {x: -24.618065, y: 6.0546494} + - {x: -24.618065, y: 19.741814} + - {x: -24.490751, y: 19.741814} + - {x: -24.490751, y: 6.0546494} + - {x: -24.618065, y: 1} + - {x: -24.618065, y: 6.0546494} + - {x: -24.745377, y: 6.0546494} + - {x: -24.745377, y: 19.741814} + - {x: -24.618065, y: 19.741814} + - {x: -24.618065, y: 6.0546494} + - {x: -24.745377, y: 1} + - {x: -24.745377, y: 6.0546494} + - {x: -24.872688, y: 6.0546494} + - {x: -24.872688, y: 19.741814} + - {x: -24.745377, y: 19.741814} + - {x: -24.745377, y: 6.0546494} + - {x: -0.03025, y: 1.0000001} + - {x: -0.48427963, y: 1.0000019} + - {x: -0.48421097, y: 6.0546494} + - {x: -0.03017752, y: 6.0546494} + - {x: -0.48421097, y: 6.0546494} + - {x: -0.4841385, y: 19.741814} + - {x: -0.030108856, y: 19.741814} + - {x: -0.03017752, y: 6.0546494} + - {x: -24.872688, y: 1} + - {x: -24.96975, y: 1} + - {x: -24.96975, y: 6.0546494} + - {x: -24.872688, y: 6.0546494} + - {x: -24.96975, y: 6.0546494} + - {x: -24.96975, y: 19.741814} + - {x: -24.872688, y: 19.741814} + - {x: -24.872688, y: 6.0546494} + - {x: 23.981503, y: 0.99975806} + - {x: 13.963301, y: 0.99975806} + - {x: 13.963302, y: 6.0544076} + - {x: 23.981503, y: 6.0544076} + - {x: -0.96855706, y: -6.9178896} + - {x: -23.954763, y: -6.9179015} + - {x: -23.954689, y: -1.1674901} + - {x: -0.96848696, y: -1.1674782} + - {x: -23.954689, y: -1.1674901} + - {x: -23.95462, y: 11.975174} + - {x: -0.9684183, y: 11.975189} + - {x: -0.96848696, y: -1.1674782} + - {x: 23.954765, y: 0.9999924} + - {x: 0.96855927, y: 1.0000038} + - {x: 0.9684906, y: 6.054653} + - {x: 23.954693, y: 6.0546417} + - {x: 0.9684906, y: 6.054653} + - {x: 0.96842194, y: 19.741821} + - {x: 23.954624, y: 19.741806} + - {x: 23.954693, y: 6.0546417} + - {x: -14.133051, y: 0.9997605} + - {x: -23.981503, y: 0.9997605} + - {x: -23.981503, y: 6.05441} + - {x: -14.133052, y: 6.05441} + - {x: -23.954765, y: 0.9999924} + - {x: -24.96975, y: 0.99999976} + - {x: -24.969677, y: 6.0546494} + - {x: -23.954693, y: 6.0546417} + - {x: -24.969677, y: 6.0546494} + - {x: -24.969608, y: 19.741814} + - {x: -23.954624, y: 19.741806} + - {x: -23.954693, y: 6.0546417} + - {x: 24.96975, y: 1.0000006} + - {x: 24.154766, y: 0.99999464} + - {x: 24.154694, y: 6.054644} + - {x: 24.969677, y: 6.0546503} + - {x: -9.966236, y: 19.741686} + - {x: -9.966237, y: 6.2545214} + - {x: -13.942982, y: 19.741686} + - {x: -13.942983, y: 6.2545214} + - {x: 12.226609, y: -13.848587} + - {x: 12.226609, y: -13.735809} + - {x: 12.655696, y: -13.848587} + - {x: 12.655696, y: -13.735809} + - {x: 23.981503, y: -8.438776} + - {x: 13.933051, y: -8.438776} + - {x: 13.738841, y: 5.405036} + - {x: 12.654625, y: 5.405036} + - {x: 8.438876, y: -0.9684055} + - {x: 8.438885, y: -23.954607} + - {x: -5.4049253, y: -11.255603} + - {x: -5.4049253, y: -13.735793} + - {x: 8.439179, y: -0.48452827} + - {x: 8.439175, y: -0.96881175} + - {x: -5.4046273, y: -11.203755} + - {x: -5.4046273, y: -11.256009} + - {x: 23.981503, y: -11.698658} + - {x: 24.108814, y: -11.698658} + - {x: 13.738841, y: -25.542456} + - {x: 13.752578, y: -25.542456} + - {x: 24.108814, y: -11.698658} + - {x: 24.236126, y: -11.698658} + - {x: 13.752578, y: -25.542456} + - {x: 13.766315, y: -25.542456} + - {x: 24.872688, y: -8.438775} + - {x: 24.745377, y: -8.438775} + - {x: 13.834999, y: 5.405038} + - {x: 13.821262, y: 5.405038} + - {x: 13.933051, y: -11.698658} + - {x: 23.981503, y: -11.698658} + - {x: 12.654625, y: -25.542454} + - {x: 13.738841, y: -25.542454} + - {x: 24.745377, y: -8.438775} + - {x: 24.618065, y: -8.438775} + - {x: 13.821262, y: 5.405038} + - {x: 13.807526, y: 5.405038} + - {x: 24.618065, y: -8.438775} + - {x: 24.490751, y: -8.438775} + - {x: 13.807526, y: 5.405038} + - {x: 13.793789, y: 5.405038} + - {x: 24.363438, y: -11.698657} + - {x: 24.490751, y: -11.698657} + - {x: 13.780052, y: -25.542454} + - {x: 13.793789, y: -25.542454} + - {x: 24.490751, y: -8.438775} + - {x: 24.363438, y: -8.438775} + - {x: 13.793789, y: 5.405038} + - {x: 13.780052, y: 5.405038} + - {x: 24.236126, y: -11.698658} + - {x: 24.363438, y: -11.698658} + - {x: 13.766315, y: -25.542456} + - {x: 13.780052, y: -25.542456} + - {x: 24.363438, y: -8.438775} + - {x: 24.236126, y: -8.438775} + - {x: 13.780052, y: 5.405038} + - {x: 13.766315, y: 5.405038} + - {x: 24.490751, y: -11.698657} + - {x: 24.618065, y: -11.698657} + - {x: 13.793789, y: -25.542454} + - {x: 13.807526, y: -25.542454} + - {x: 24.236126, y: -8.438775} + - {x: 24.108814, y: -8.438775} + - {x: 13.766315, y: 5.405038} + - {x: 13.752578, y: 5.405038} + - {x: -6.376532, y: -23.954609} + - {x: -6.3765225, y: -0.9684062} + - {x: 6.7464447, y: -13.735793} + - {x: 6.7464447, y: -11.255603} + - {x: 9.966236, y: -11.698658} + - {x: 13.933051, y: -11.698658} + - {x: 12.226609, y: -25.542456} + - {x: 12.654625, y: -25.542456} + - {x: 24.108814, y: -8.438775} + - {x: 23.981503, y: -8.438775} + - {x: 13.752578, y: 5.405038} + - {x: 13.738841, y: 5.405038} + - {x: -13.933051, y: -6.320971} + - {x: -23.981503, y: -6.320971} + - {x: -12.654625, y: 6.783401} + - {x: -13.738841, y: 6.783401} + - {x: 24.999874, y: 17.361036} + - {x: 23.95464, y: 17.361029} + - {x: 13.848601, y: 25.663723} + - {x: 13.735824, y: 25.663723} + - {x: 24.618065, y: -11.698658} + - {x: 24.745377, y: -11.698658} + - {x: 13.807526, y: -25.542456} + - {x: 13.821262, y: -25.542456} + - {x: 24.745377, y: -11.698658} + - {x: 24.872688, y: -11.698658} + - {x: 13.821262, y: -25.542456} + - {x: 13.834999, y: -25.542456} + - {x: -23.981497, y: -13.065882} + - {x: -13.933045, y: -13.065877} + - {x: -13.738832, y: -26.223637} + - {x: -12.654616, y: -26.223637} + - {x: -13.933051, y: -13.065873} + - {x: -9.966236, y: -13.065873} + - {x: -12.654625, y: -26.223633} + - {x: -12.226609, y: -26.223633} + - {x: 5.4768515, y: -11.698658} + - {x: 9.966236, y: -11.698658} + - {x: 11.74221, y: -25.542456} + - {x: 12.226609, y: -25.542456} + - {x: -9.966236, y: -13.065873} + - {x: -5.4768515, y: -13.065873} + - {x: -12.226609, y: -26.223633} + - {x: -11.74221, y: -26.223633} + - {x: 0.7406006, y: -11.698658} + - {x: 0.9874668, y: -11.698658} + - {x: 11.2311735, y: -25.542456} + - {x: 11.257811, y: -25.542456} + - {x: 0.9874668, y: -11.698658} + - {x: 5.4768515, y: -11.698658} + - {x: 11.257811, y: -25.542456} + - {x: 11.74221, y: -25.542456} + - {x: -5.476865, y: -13.065866} + - {x: -0.98748016, y: -13.065871} + - {x: -11.742229, y: -26.223623} + - {x: -11.25783, y: -26.223623} + - {x: 0.49373436, y: -8.438775} + - {x: 0.24686623, y: -8.438775} + - {x: 11.204537, y: 5.405038} + - {x: 11.1779, y: 5.405038} + - {x: 0.9874668, y: -8.438775} + - {x: 0.7406006, y: -8.438775} + - {x: 11.257811, y: 5.405038} + - {x: 11.2311735, y: 5.405038} + - {x: 11.698611, y: -0.96862376} + - {x: 11.6986065, y: -0.48434028} + - {x: 25.542414, y: -11.255821} + - {x: 25.542414, y: -11.2035675} + - {x: 5.4768515, y: -8.438775} + - {x: 0.9874668, y: -8.438775} + - {x: 11.74221, y: 5.405038} + - {x: 11.257811, y: 5.405038} + - {x: 0.24686623, y: -11.698659} + - {x: 0.49373436, y: -11.698659} + - {x: 11.1779, y: -25.542456} + - {x: 11.204537, y: -25.542456} + - {x: 0.49373436, y: -11.698658} + - {x: 0.7406006, y: -11.698658} + - {x: 11.204537, y: -25.542456} + - {x: 11.2311735, y: -25.542456} + - {x: 0.7406006, y: -8.438775} + - {x: 0.49373436, y: -8.438775} + - {x: 11.2311735, y: 5.405038} + - {x: 11.204537, y: 5.405038} + - {x: -13.092618, y: -0.96841425} + - {x: -13.092608, y: -23.954617} + - {x: -26.237204, y: -11.255611} + - {x: -26.237204, y: -13.735802} + - {x: 11.698759, y: -23.954617} + - {x: 11.698768, y: -0.9684134} + - {x: 25.542568, y: -13.735801} + - {x: 25.542568, y: -11.25561} + - {x: -0.9874668, y: -6.3209724} + - {x: -5.4768515, y: -6.3209724} + - {x: -11.257811, y: 6.7833996} + - {x: -11.74221, y: 6.7833996} + - {x: 9.966236, y: -8.438775} + - {x: 5.4768515, y: -8.438775} + - {x: 12.226609, y: 5.405038} + - {x: 11.74221, y: 5.405038} + - {x: 13.942982, y: -8.438776} + - {x: 9.966236, y: -8.438776} + - {x: 12.655696, y: 5.405036} + - {x: 12.226609, y: 5.405036} + - {x: -5.4768515, y: -6.3209724} + - {x: -9.966236, y: -6.3209724} + - {x: -11.74221, y: 6.7833996} + - {x: -12.226609, y: 6.7833996} + - {x: -9.966236, y: -6.3209724} + - {x: -13.942982, y: -6.3209724} + - {x: -12.226609, y: 6.7834} + - {x: -12.655696, y: 6.7834} + - {x: -23.95464, y: 17.34176} + - {x: -24.999874, y: 17.341768} + - {x: -13.735824, y: 25.645824} + - {x: -13.848601, y: 25.645824} + - {x: -10.6522045, y: -6.7030144} + - {x: -13.460101, y: -12.485164} + - {x: -10.609425, y: -6.7030144} + - {x: -10.609477, y: -11.12172} + - {x: 5.476852, y: 19.741688} + - {x: 9.966236, y: 19.741688} + - {x: 9.966237, y: 6.084774} + - {x: 9.935987, y: 6.054524} + - {x: 5.476853, y: 6.054524} + - {x: -9.966237, y: -24.96972} + - {x: -9.975097, y: -24.97858} + - {x: -13.942983, y: -24.96972} + - {x: -13.942983, y: -24.154737} + - {x: -9.966237, y: -24.154737} + - {x: 9.966236, y: 19.741688} + - {x: 13.942982, y: 19.741688} + - {x: 13.942983, y: 6.084774} + - {x: 9.975097, y: 6.075914} + - {x: 9.966237, y: 6.084774} + - {x: 5.4768524, y: 8.002264} + - {x: 5.4768524, y: 8.032317} + - {x: 5.4768524, y: 8.06237} + - {x: 5.4768524, y: 8.0924225} + - {x: 5.4768524, y: 8.122476} + - {x: 5.4768524, y: 8.152528} + - {x: 5.4768524, y: 8.182581} + - {x: 5.4768524, y: 8.212634} + - {x: 5.4768524, y: 8.242686} + - {x: 5.4768524, y: 8.272739} + - {x: 5.4768524, y: 8.302793} + - {x: 5.4768524, y: 8.332845} + - {x: 5.4768524, y: 8.362898} + - {x: 5.4768524, y: 8.39295} + - {x: 5.4768524, y: 8.423003} + - {x: 5.4768524, y: 8.453056} + - {x: 5.4768524, y: 8.4831085} + - {x: 5.4768524, y: 8.513162} + - {x: 5.4768524, y: 8.543215} + - {x: 5.4768524, y: 8.573267} + - {x: 5.4768524, y: 8.60332} + - {x: 5.4768524, y: 8.633372} + - {x: 5.4768524, y: 8.663425} + - {x: 5.4768524, y: 8.693479} + - {x: 5.4768524, y: 8.723531} + - {x: 5.4768524, y: 8.753584} + - {x: 5.4768524, y: 8.783636} + - {x: 5.4768524, y: 8.813689} + - {x: 5.4768524, y: 8.843742} + - {x: 5.4768524, y: 8.873795} + - {x: 5.4768524, y: 8.903848} + - {x: 9.935988, y: 8.903848} + - {x: 9.966238, y: 8.874757} + - {x: 9.966238, y: 8.873795} + - {x: 9.966238, y: 8.843742} + - {x: 9.966238, y: 8.813689} + - {x: 9.966238, y: 8.783636} + - {x: 9.966238, y: 8.753584} + - {x: 9.966238, y: 8.723531} + - {x: 9.966238, y: 8.693479} + - {x: 9.966238, y: 8.663425} + - {x: 9.966238, y: 8.633372} + - {x: 9.966238, y: 8.60332} + - {x: 9.966238, y: 8.573267} + - {x: 9.966238, y: 8.543214} + - {x: 9.966238, y: 8.513162} + - {x: 9.966238, y: 8.4831085} + - {x: 9.966238, y: 8.453056} + - {x: 9.966238, y: 8.423003} + - {x: 9.966238, y: 8.39295} + - {x: 9.966238, y: 8.362898} + - {x: 9.966238, y: 8.332845} + - {x: 9.966238, y: 8.302792} + - {x: 9.966238, y: 8.272739} + - {x: 9.966238, y: 8.242686} + - {x: 9.966238, y: 8.212634} + - {x: 9.966238, y: 8.182581} + - {x: 9.966238, y: 8.152528} + - {x: 9.966238, y: 8.122476} + - {x: 9.966238, y: 8.0924225} + - {x: 9.966238, y: 8.06237} + - {x: 9.966238, y: 8.032317} + - {x: 9.966238, y: 8.002264} + - {x: 9.966238, y: 7.9722114} + - {x: 5.4768524, y: 7.9722114} + - {x: -11.340844, y: -24.620777} + - {x: -11.371933, y: -24.612843} + - {x: -11.369541, y: -24.589048} + - {x: 1.5468013, y: 13.904627} + - {x: 1.5491941, y: 13.880832} + - {x: 1.5181049, y: 13.8729} + - {x: -24.89369, y: 0.76947933} + - {x: -24.916378, y: 0.761915} + - {x: -28.894884, y: 0.7694796} + - {x: 6.3186355, y: -28.939413} + - {x: 6.3453727, y: -24.960989} + - {x: 6.361415, y: -28.939413} + - {x: 7.732859, y: -28.996246} + - {x: 7.748902, y: -25.017822} + - {x: 7.775639, y: -28.996246} + - {x: 29.045576, y: 1.2214451} + - {x: 25.06707, y: 1.2138805} + - {x: 25.044382, y: 1.2214448} + - {x: -24.127167, y: 6.05454} + - {x: -24.127216, y: 0.99989074} + - {x: -23.844322, y: 6.0545387} + - {x: -23.844374, y: 0.9998893} + - {x: -9.966237, y: -12.516053} + - {x: -13.942983, y: -12.516053} + - {x: -9.966237, y: -12.798897} + - {x: -13.942983, y: -12.798897} + - {x: 6.945014, y: 6.0543723} + - {x: 6.9450655, y: 0.9997229} + - {x: 7.227857, y: 6.0543737} + - {x: 7.227909, y: 0.9997243} + - {x: -9.766235, y: 6.054522} + - {x: -9.966235, y: 6.254522} + - {x: -9.966234, y: 19.741686} + - {x: -5.47685, y: 19.741686} + - {x: -5.476851, y: 6.054522} + - {x: 10.166236, y: -23.954765} + - {x: 9.966236, y: -23.754765} + - {x: 9.966236, y: -0.9685592} + - {x: 13.933051, y: -0.9685592} + - {x: 13.933051, y: -23.754765} + - {x: 13.733051, y: -23.954765} + - {x: 0.9874668, y: -23.954765} + - {x: 0.9874668, y: -0.9685592} + - {x: 5.4768515, y: -0.9685592} + - {x: 9.966236, y: -0.9685592} + - {x: 9.966236, y: -23.754765} + - {x: 9.766236, y: -23.954765} + - {x: 5.4768515, y: -23.954765} + - {x: -23.981503, y: 6.054522} + - {x: -23.981503, y: 19.741686} + - {x: -13.933052, y: 19.741686} + - {x: -13.933053, y: 6.254522} + - {x: -14.133053, y: 6.054522} + - {x: 14.133051, y: -23.954765} + - {x: 13.933051, y: -23.754765} + - {x: 13.933051, y: -0.9685592} + - {x: 23.981503, y: -0.9685592} + - {x: 23.981503, y: -23.954765} + - {x: -24.127201, y: -0.8488195} + - {x: -23.844358, y: -0.8488213} + - {x: -23.985777, y: -0.6038712} + - {x: 9.766238, y: -23.954771} + - {x: 9.966238, y: -23.954771} + - {x: 9.966238, y: -24.154772} + - {x: 9.966234, y: -24.154772} + - {x: 9.966234, y: -23.954771} + - {x: 10.166234, y: -23.954771} + - {x: 10.166234, y: -23.954767} + - {x: 9.966234, y: -23.954767} + - {x: 9.966234, y: -23.754766} + - {x: 9.966238, y: -23.754766} + - {x: 9.966238, y: -23.954767} + - {x: 9.766238, y: -23.954767} + - {x: 6.9451094, y: -10.6058235} + - {x: 7.2279525, y: -10.605822} + - {x: 7.0865283, y: -10.360873} + - {x: 13.933049, y: -24.154772} + - {x: 13.933049, y: -23.954771} + - {x: 14.133049, y: -23.954771} + - {x: 14.133049, y: -23.954767} + - {x: 13.933049, y: -23.954767} + - {x: 13.933049, y: -23.754766} + - {x: 13.933053, y: -23.754766} + - {x: 13.933053, y: -23.954767} + - {x: 13.733053, y: -23.954767} + - {x: 13.733053, y: -23.954771} + - {x: 13.933053, y: -23.954771} + - {x: 13.933053, y: -24.154772} + - {x: 9.919299, y: 21.959763} + - {x: 13.887195, y: 21.959763} + - {x: 9.919251, y: 21.990013} + - {x: 13.887127, y: 22.002542} + - {x: 29.075567, y: 1.0816112} + - {x: 25.104778, y: 6.1363497} + - {x: 25.074373, y: 1.0816109} + - {x: 25.0743, y: 6.1361713} + - {x: -7.5375385, y: -26.513632} + - {x: -7.5393167, y: -26.514086} + - {x: -7.548335, y: -26.49913} + - {x: -7.5399303, y: -26.48984} + - {x: 17.3601, y: 11.979349} + - {x: 17.362492, y: 12.003144} + - {x: 17.370897, y: 11.993852} + - {x: 17.361877, y: 11.978896} + - {x: -23.95469, y: 6.2546406} + - {x: -24.154694, y: 6.054642} + - {x: -24.969677, y: 6.0546484} + - {x: -24.999928, y: 6.0848985} + - {x: -24.999859, y: 19.741812} + - {x: -23.954624, y: 19.741804} + - {x: 13.933053, y: 8.002264} + - {x: 13.933053, y: 8.032317} + - {x: 13.933053, y: 8.062369} + - {x: 13.933053, y: 8.0924225} + - {x: 13.933053, y: 8.122476} + - {x: 13.933053, y: 8.152528} + - {x: 13.933053, y: 8.182581} + - {x: 13.933053, y: 8.212634} + - {x: 13.933053, y: 8.242686} + - {x: 13.933053, y: 8.272739} + - {x: 13.933053, y: 8.302792} + - {x: 13.933053, y: 8.332845} + - {x: 13.933053, y: 8.362898} + - {x: 13.933053, y: 8.39295} + - {x: 13.933053, y: 8.423003} + - {x: 13.933053, y: 8.453055} + - {x: 13.933053, y: 8.4831085} + - {x: 13.933053, y: 8.513162} + - {x: 13.933053, y: 8.543214} + - {x: 13.933053, y: 8.573267} + - {x: 13.933053, y: 8.60332} + - {x: 13.933053, y: 8.633372} + - {x: 13.933053, y: 8.663425} + - {x: 13.933053, y: 8.693478} + - {x: 13.933053, y: 8.723531} + - {x: 13.933053, y: 8.753584} + - {x: 13.933053, y: 8.783636} + - {x: 13.933053, y: 8.813689} + - {x: 13.933053, y: 8.843742} + - {x: 13.933053, y: 8.873795} + - {x: 13.933053, y: 8.874756} + - {x: 13.963303, y: 8.903848} + - {x: 23.981504, y: 8.903848} + - {x: 23.981504, y: 8.873795} + - {x: 23.981504, y: 8.843741} + - {x: 23.981504, y: 8.813689} + - {x: 23.981504, y: 8.783636} + - {x: 23.981504, y: 8.753583} + - {x: 23.981504, y: 8.723531} + - {x: 23.981504, y: 8.693478} + - {x: 23.981504, y: 8.663425} + - {x: 23.981504, y: 8.633372} + - {x: 23.981504, y: 8.603319} + - {x: 23.981504, y: 8.573267} + - {x: 23.981504, y: 8.543214} + - {x: 23.981504, y: 8.513162} + - {x: 23.981504, y: 8.4831085} + - {x: 23.981504, y: 8.453055} + - {x: 23.981504, y: 8.423003} + - {x: 23.981504, y: 8.39295} + - {x: 23.981504, y: 8.362897} + - {x: 23.981504, y: 8.332845} + - {x: 23.981504, y: 8.302792} + - {x: 23.981504, y: 8.272739} + - {x: 23.981504, y: 8.242686} + - {x: 23.981504, y: 8.212633} + - {x: 23.981504, y: 8.182581} + - {x: 23.981504, y: 8.152528} + - {x: 23.981504, y: 8.122475} + - {x: 23.981504, y: 8.0924225} + - {x: 23.981504, y: 8.062369} + - {x: 23.981504, y: 8.032317} + - {x: 23.981504, y: 8.002264} + - {x: 23.981504, y: 7.9722114} + - {x: 13.933053, y: 7.9722114} + - {x: 13.902803, y: 8.903848} + - {x: 13.933053, y: 8.874756} + - {x: 13.933053, y: 8.873795} + - {x: 13.933053, y: 8.843742} + - {x: 13.933053, y: 8.813689} + - {x: 13.933053, y: 8.783636} + - {x: 13.933053, y: 8.753584} + - {x: 13.933053, y: 8.723531} + - {x: 13.933053, y: 8.693478} + - {x: 13.933053, y: 8.663425} + - {x: 13.933053, y: 8.633372} + - {x: 13.933053, y: 8.60332} + - {x: 13.933053, y: 8.573267} + - {x: 13.933053, y: 8.543214} + - {x: 13.933053, y: 8.513162} + - {x: 13.933053, y: 8.4831085} + - {x: 13.933053, y: 8.453055} + - {x: 13.933053, y: 8.423003} + - {x: 13.933053, y: 8.39295} + - {x: 13.933053, y: 8.362898} + - {x: 13.933053, y: 8.332845} + - {x: 13.933053, y: 8.302792} + - {x: 13.933053, y: 8.272739} + - {x: 13.933053, y: 8.242686} + - {x: 13.933053, y: 8.212634} + - {x: 13.933053, y: 8.182581} + - {x: 13.933053, y: 8.152528} + - {x: 13.933053, y: 8.122476} + - {x: 13.933053, y: 8.0924225} + - {x: 13.933053, y: 8.062369} + - {x: 13.933053, y: 8.032317} + - {x: 13.933053, y: 8.002264} + - {x: 13.933053, y: 7.9722114} + - {x: 9.966238, y: 7.9722114} + - {x: 9.966238, y: 8.002264} + - {x: 9.966238, y: 8.032317} + - {x: 9.966238, y: 8.06237} + - {x: 9.966238, y: 8.0924225} + - {x: 9.966238, y: 8.122476} + - {x: 9.966238, y: 8.152528} + - {x: 9.966238, y: 8.182581} + - {x: 9.966238, y: 8.212634} + - {x: 9.966238, y: 8.242686} + - {x: 9.966238, y: 8.272739} + - {x: 9.966238, y: 8.302792} + - {x: 9.966238, y: 8.332845} + - {x: 9.966238, y: 8.362898} + - {x: 9.966238, y: 8.39295} + - {x: 9.966238, y: 8.423003} + - {x: 9.966238, y: 8.453056} + - {x: 9.966238, y: 8.4831085} + - {x: 9.966238, y: 8.513162} + - {x: 9.966238, y: 8.543214} + - {x: 9.966238, y: 8.573267} + - {x: 9.966238, y: 8.60332} + - {x: 9.966238, y: 8.633372} + - {x: 9.966238, y: 8.663425} + - {x: 9.966238, y: 8.693479} + - {x: 9.966238, y: 8.723531} + - {x: 9.966238, y: 8.753584} + - {x: 9.966238, y: 8.783636} + - {x: 9.966238, y: 8.813689} + - {x: 9.966238, y: 8.843742} + - {x: 9.966238, y: 8.873795} + - {x: 9.966238, y: 8.874757} + - {x: 9.996488, y: 8.903848} + - {x: 13.933051, y: -24.154766} + - {x: 13.933051, y: -24.96975} + - {x: 13.9028015, y: -28.970829} + - {x: 9.996486, y: -28.970829} + - {x: 9.966236, y: -24.96975} + - {x: 9.966236, y: -24.154766} + - {x: 10.166236, y: -23.954765} + - {x: 13.733051, y: -23.954765} + - {x: 13.933051, y: 19.741688} + - {x: 23.981503, y: 19.741688} + - {x: 23.981503, y: 6.054524} + - {x: 13.963302, y: 6.054524} + - {x: 13.933052, y: 6.084774} + - {x: 24.999928, y: 6.0848985} + - {x: 24.969677, y: 6.0546484} + - {x: 24.154694, y: 6.054642} + - {x: 23.95469, y: 6.2546406} + - {x: 23.954624, y: 19.741804} + - {x: 24.999859, y: 19.741812} + - {x: -10.6076565, y: 19.214493} + - {x: -10.622781, y: 19.24069} + - {x: -10.62278, y: 19.223225} + - {x: 29.075567, y: 1.311392} + - {x: 25.09706, y: 1.3038274} + - {x: 25.074373, y: 1.3113917} + - {x: -24.8637, y: 0.67953247} + - {x: -24.886389, y: 0.67196816} + - {x: -28.864895, y: 0.6795327} + - {x: 9.123575, y: -28.928102} + - {x: 9.150312, y: -24.949678} + - {x: 9.166354, y: -28.928102} + - {x: 10.537799, y: -29.007557} + - {x: 10.553842, y: -25.029133} + - {x: 10.580579, y: -29.007557} + - {x: 27.551287, y: 9.449034} + - {x: 27.508507, y: 9.449034} + - {x: 27.529898, y: 9.486082} + - {x: 17.65634, y: 19.74175} + - {x: 17.65639, y: 6.054587} + - {x: 17.69912, y: 19.74175} + - {x: 17.69917, y: 6.054587} + - {x: 17.65639, y: -2.4019318} + - {x: 15.156012, y: -8.041267} + - {x: 17.69917, y: -2.4019318} + - {x: 20.507044, y: -8.177527} + - {x: 0.030011186, y: -8.438535} + - {x: 0.018737018, y: -8.414977} + - {x: 11.150927, y: 5.405357} + - {x: 11.177563, y: 5.4053574} + - {x: 0.2466274, y: -8.438533} + - {x: 11.698937, y: -23.954847} + - {x: 25.542747, y: -13.7360325} + - {x: 25.542747, y: -13.84881} + - {x: 11.7225, y: -24.981106} + - {x: 11.698942, y: -24.969831} + - {x: -3.536169, y: 8.874757} + - {x: 0.030250557, y: 8.903848} + - {x: 0.24686813, y: 8.903848} + - {x: 0.49373627, y: 8.903848} + - {x: 0.7406006, y: 8.903848} + - {x: 0.9874687, y: 8.903848} + - {x: 0.9874687, y: 8.873795} + - {x: 0.9874687, y: 8.843742} + - {x: 0.9874687, y: 8.813689} + - {x: 0.9874687, y: 8.783637} + - {x: 0.9874687, y: 8.753584} + - {x: 0.9874687, y: 8.723531} + - {x: 0.9874687, y: 8.693479} + - {x: 0.9874687, y: 8.663425} + - {x: 0.9874687, y: 8.633372} + - {x: 0.9874687, y: 8.60332} + - {x: 0.9874687, y: 8.573267} + - {x: 0.9874687, y: 8.543215} + - {x: 0.9874687, y: 8.513162} + - {x: 0.9874687, y: 8.4831085} + - {x: 0.9874687, y: 8.453056} + - {x: 0.9874687, y: 8.423003} + - {x: 0.9874687, y: 8.39295} + - {x: 0.9874687, y: 8.362898} + - {x: 0.9874687, y: 8.332845} + - {x: 0.9874687, y: 8.302793} + - {x: 0.9874687, y: 8.272739} + - {x: 0.9874687, y: 8.242686} + - {x: 0.9874687, y: 8.212634} + - {x: 0.9874687, y: 8.182581} + - {x: 0.9874687, y: 8.152529} + - {x: 0.9874687, y: 8.122476} + - {x: 0.9874687, y: 8.0924225} + - {x: 0.9874687, y: 8.06237} + - {x: 0.9874687, y: 8.032317} + - {x: 0.9874687, y: 8.002264} + - {x: 0.9874687, y: 7.972212} + - {x: 0.9874687, y: 7.9421587} + - {x: 0.7406006, y: 7.9421587} + - {x: 0.49373627, y: 7.9421587} + - {x: 0.24686813, y: 7.9421587} + - {x: -3.536169, y: 7.942159} + - {x: -3.536169, y: 7.972212} + - {x: -3.536169, y: 8.002265} + - {x: -3.536169, y: 8.032317} + - {x: -3.536169, y: 8.06237} + - {x: -3.536169, y: 8.0924225} + - {x: -3.536169, y: 8.122476} + - {x: -3.536169, y: 8.152529} + - {x: -3.536169, y: 8.182581} + - {x: -3.536169, y: 8.212634} + - {x: -3.536169, y: 8.242686} + - {x: -3.536169, y: 8.272739} + - {x: -3.536169, y: 8.302793} + - {x: -3.536169, y: 8.332845} + - {x: -3.536169, y: 8.362898} + - {x: -3.536169, y: 8.392951} + - {x: -3.536169, y: 8.423003} + - {x: -3.536169, y: 8.453056} + - {x: -3.536169, y: 8.4831085} + - {x: -3.536169, y: 8.513162} + - {x: -3.536169, y: 8.543215} + - {x: -3.536169, y: 8.573267} + - {x: -3.536169, y: 8.60332} + - {x: -3.536169, y: 8.633373} + - {x: -3.536169, y: 8.663425} + - {x: -3.536169, y: 8.693479} + - {x: -3.536169, y: 8.723531} + - {x: -3.536169, y: 8.753584} + - {x: -3.536169, y: 8.783637} + - {x: -3.536169, y: 8.813689} + - {x: -3.536169, y: 8.843742} + - {x: -3.536169, y: 8.873795} + - {x: 24.96975, y: 19.741688} + - {x: 24.96975, y: 6.054524} + - {x: 24.872688, y: 6.054524} + - {x: 24.745377, y: 6.054524} + - {x: 24.618065, y: 6.054524} + - {x: 24.490751, y: 6.054524} + - {x: 24.363438, y: 6.054524} + - {x: 24.236126, y: 6.054524} + - {x: 24.108814, y: 6.054524} + - {x: 23.981503, y: 6.054524} + - {x: 24.872688, y: 19.741688} + - {x: 17.65634, y: 11.974767} + - {x: 17.69912, y: 11.974767} + - {x: 17.67773, y: 11.989752} + - {x: -3.5275621, y: -24.96125} + - {x: 0.038729165, y: -28.962444} + - {x: -3.527819, y: -28.962444} + - {x: 0.021338396, y: 6.0546494} + - {x: 0.021290012, y: 19.741814} + - {x: -0.021441234, y: 6.0546494} + - {x: -0.021489948, y: 19.741814} + - {x: 0.06839074, y: -1.2072686} + - {x: 0.030175762, y: 4.961405} + - {x: -2.736214, y: -1.2072686} + - {x: -0.0003982773, y: 4.978556} + - {x: 11.698682, y: -0.030211093} + - {x: 11.7222395, y: -0.018937087} + - {x: 25.542488, y: -11.151214} + - {x: 25.542488, y: -11.203467} + - {x: 11.698682, y: -0.48424074} + - {x: 0.25331712, y: -11.69526} + - {x: 11.187031, y: -25.53694} + - {x: 11.160395, y: -25.536945} + - {x: 0.025431477, y: -11.718862} + - {x: 0.0367009, y: -11.695302} + - {x: 3.5059214, y: 1} + - {x: 3.536171, y: 0.9697499} + - {x: 0.021290176, y: 18.39949} + - {x: -0.021489784, y: 18.39949} + - {x: -0.000099816905, y: 18.414476} + - {x: 0.031122897, y: 0.99439317} + - {x: -2.773326, y: 0.99444} + - {x: -2.7733183, y: 0.964142} + - {x: 15.194418, y: -11.27782} + - {x: 20.909348, y: -7.9764223} + - {x: 15.171306, y: -11.241819} + - {x: 18.432467, y: -6.8170586} + - {x: -17.69912, y: 19.741877} + - {x: -17.69917, y: 6.054712} + - {x: -17.65634, y: 19.741877} + - {x: -17.65639, y: 6.054712} + - {x: -28.210997, y: 0.9672262} + - {x: -24.872072, y: 0.9984766} + - {x: -24.872072, y: 0.9672266} + - {x: 2.774187, y: 0.96875} + - {x: -0.48428154, y: 0.9687519} + - {x: -0.48428154, y: 1.0000019} + - {x: 2.7439365, y: 1} + - {x: 2.774187, y: 0.9697499} + - {x: 8.439036, y: -0.48433596} + - {x: -5.4047704, y: -11.203563} + - {x: -5.4047704, y: -11.151309} + - {x: 8.415479, y: -0.019032333} + - {x: 8.439036, y: -0.03030634} + - {x: 24.971743, y: -11.698201} + - {x: 24.983017, y: -11.721758} + - {x: 13.851556, y: -25.542664} + - {x: 13.837819, y: -25.542664} + - {x: 24.874681, y: -11.698207} + - {x: -28.211004, y: 0.9984928} + - {x: -24.969133, y: 0.9984766} + - {x: -28.210997, y: 0.96822613} + - {x: -17.69912, y: 11.974703} + - {x: -17.65634, y: 11.974703} + - {x: -17.67773, y: 11.989687} + - {x: 0.021441618, y: 6.054524} + - {x: 0.021490172, y: 19.741688} + - {x: -0.021339118, y: 6.054524} + - {x: -0.021290565, y: 19.741688} + - {x: -1.6404651, y: -15.765087} + - {x: -3.662239, y: -10.128034} + - {x: -6.7900577, y: -15.765087} + - {x: -3.7047868, y: -10.12606} + - {x: 24.87609, y: -8.437896} + - {x: 13.839814, y: 5.407044} + - {x: 13.853551, y: 5.4070425} + - {x: 24.984428, y: -8.414349} + - {x: 24.97315, y: -8.437905} + - {x: 8.438534, y: -24.97004} + - {x: 8.414975, y: -24.981314} + - {x: -5.405273, y: -13.849019} + - {x: -5.405273, y: -13.736241} + - {x: 8.438538, y: -23.955055} + - {x: -23.954767, y: 0.9687424} + - {x: -28.97083, y: 0.96875} + - {x: -28.97083, y: 0.9697499} + - {x: -24.969751, y: 1} + - {x: -23.954767, y: 0.9999924} + - {x: 28.211615, y: 7.9421587} + - {x: 24.87269, y: 7.9421587} + - {x: 24.745378, y: 7.9421587} + - {x: 24.618067, y: 7.9421587} + - {x: 24.490753, y: 7.9421587} + - {x: 24.36344, y: 7.9421587} + - {x: 24.236128, y: 7.9421587} + - {x: 24.108816, y: 7.9421587} + - {x: 23.981504, y: 7.9421587} + - {x: 23.981504, y: 7.9722114} + - {x: 23.981504, y: 8.002264} + - {x: 23.981504, y: 8.032317} + - {x: 23.981504, y: 8.062369} + - {x: 23.981504, y: 8.0924225} + - {x: 23.981504, y: 8.122475} + - {x: 23.981504, y: 8.152528} + - {x: 23.981504, y: 8.182581} + - {x: 23.981504, y: 8.212633} + - {x: 23.981504, y: 8.242686} + - {x: 23.981504, y: 8.272739} + - {x: 23.981504, y: 8.302792} + - {x: 23.981504, y: 8.332845} + - {x: 23.981504, y: 8.362897} + - {x: 23.981504, y: 8.39295} + - {x: 23.981504, y: 8.423003} + - {x: 23.981504, y: 8.453055} + - {x: 23.981504, y: 8.4831085} + - {x: 23.981504, y: 8.513162} + - {x: 23.981504, y: 8.543214} + - {x: 23.981504, y: 8.573267} + - {x: 23.981504, y: 8.603319} + - {x: 23.981504, y: 8.633372} + - {x: 23.981504, y: 8.663425} + - {x: 23.981504, y: 8.693478} + - {x: 23.981504, y: 8.723531} + - {x: 23.981504, y: 8.753583} + - {x: 23.981504, y: 8.783636} + - {x: 23.981504, y: 8.813689} + - {x: 23.981504, y: 8.843741} + - {x: 23.981504, y: 8.873795} + - {x: 23.981504, y: 8.903848} + - {x: 24.108816, y: 8.903848} + - {x: 24.236128, y: 8.903848} + - {x: 24.36344, y: 8.903848} + - {x: 24.490753, y: 8.903848} + - {x: 24.618067, y: 8.903848} + - {x: 24.745378, y: 8.903848} + - {x: 24.87269, y: 8.903848} + - {x: 24.969751, y: 8.903848} + - {x: 28.211615, y: 8.874757} + - {x: 28.211615, y: 8.873795} + - {x: 28.211615, y: 8.843742} + - {x: 28.211615, y: 8.813689} + - {x: 28.211615, y: 8.783637} + - {x: 28.211615, y: 8.753584} + - {x: 28.211615, y: 8.723531} + - {x: 28.211615, y: 8.693479} + - {x: 28.211615, y: 8.663425} + - {x: 28.211615, y: 8.633372} + - {x: 28.211615, y: 8.60332} + - {x: 28.211615, y: 8.573267} + - {x: 28.211615, y: 8.543215} + - {x: 28.211615, y: 8.513162} + - {x: 28.211615, y: 8.4831085} + - {x: 28.211615, y: 8.453056} + - {x: 28.211615, y: 8.423003} + - {x: 28.211615, y: 8.392951} + - {x: 28.211615, y: 8.362898} + - {x: 28.211615, y: 8.332845} + - {x: 28.211615, y: 8.302793} + - {x: 28.211615, y: 8.272739} + - {x: 28.211615, y: 8.242686} + - {x: 28.211615, y: 8.212634} + - {x: 28.211615, y: 8.182581} + - {x: 28.211615, y: 8.152529} + - {x: 28.211615, y: 8.122476} + - {x: 28.211615, y: 8.0924225} + - {x: 28.211615, y: 8.06237} + - {x: 28.211615, y: 8.032317} + - {x: 28.211615, y: 8.002264} + - {x: 28.211615, y: 7.972212} + - {x: 0.021490172, y: 5.549946} + - {x: -0.021290565, y: 5.549946} + - {x: 0.000099803736, y: 5.5649304} + - {x: 28.201054, y: -24.959488} + - {x: 24.959332, y: -28.96068} + - {x: 28.201336, y: -28.960682} + - {x: 24.872688, y: 19.741688} + - {x: 24.745377, y: 19.741688} + - {x: 24.618065, y: 19.741688} + - {x: 24.490751, y: 19.741688} + - {x: 24.363438, y: 19.741688} + - {x: 24.236126, y: 19.741688} + - {x: 24.108814, y: 19.741688} + - {x: 23.981503, y: 19.741688} + - {x: 23.981503, y: 6.054524} + - {x: 23.954762, y: -0.0000076293823} + - {x: 28.970829, y: 1.2442055e-11} + - {x: 28.970829, y: 0.03125} + - {x: 28.970829, y: 0.0625} + - {x: 28.970829, y: 0.09375} + - {x: 28.970829, y: 0.125} + - {x: 28.970829, y: 0.15625} + - {x: 28.970829, y: 0.1875} + - {x: 28.970829, y: 0.21875} + - {x: 28.970829, y: 0.25} + - {x: 28.970829, y: 0.28125} + - {x: 28.970829, y: 0.3125} + - {x: 28.970829, y: 0.34375} + - {x: 28.970829, y: 0.375} + - {x: 28.970829, y: 0.40625} + - {x: 28.970829, y: 0.4375} + - {x: 28.970829, y: 0.46875} + - {x: 28.970829, y: 0.5} + - {x: 28.970829, y: 0.53125} + - {x: 28.970829, y: 0.5625} + - {x: 28.970829, y: 0.59375} + - {x: 28.970829, y: 0.625} + - {x: 28.970829, y: 0.65625} + - {x: 28.970829, y: 0.6875} + - {x: 28.970829, y: 0.71875} + - {x: 28.970829, y: 0.75} + - {x: 28.970829, y: 0.78125} + - {x: 28.970829, y: 0.8125} + - {x: 28.970829, y: 0.84375} + - {x: 28.970829, y: 0.875} + - {x: 28.970829, y: 0.90625} + - {x: 28.970829, y: 0.9375} + - {x: 28.970829, y: 0.96875} + - {x: 28.970829, y: 0.9697499} + - {x: 24.96975, y: 1} + - {x: 23.954765, y: 0.9999924} + - {x: 23.954765, y: 0.9687424} + - {x: 23.954765, y: 0.9374924} + - {x: 23.954765, y: 0.9062424} + - {x: 23.954765, y: 0.8749924} + - {x: 23.954765, y: 0.8437424} + - {x: 23.954765, y: 0.8124924} + - {x: 23.954765, y: 0.7812424} + - {x: 23.954765, y: 0.7499924} + - {x: 23.954765, y: 0.7187424} + - {x: 23.954765, y: 0.6874924} + - {x: 23.954765, y: 0.6562424} + - {x: 23.954765, y: 0.6249924} + - {x: 23.954765, y: 0.5937424} + - {x: 23.954765, y: 0.5624924} + - {x: 23.954765, y: 0.5312424} + - {x: 23.954765, y: 0.49999237} + - {x: 23.954765, y: 0.46874237} + - {x: 23.954765, y: 0.43749237} + - {x: 23.954765, y: 0.40624237} + - {x: 23.954765, y: 0.37499237} + - {x: 23.954765, y: 0.34374237} + - {x: 23.954765, y: 0.31249237} + - {x: 23.954765, y: 0.28124237} + - {x: 23.954765, y: 0.24999237} + - {x: 23.954765, y: 0.21874237} + - {x: 23.954763, y: 0.18749237} + - {x: 23.954762, y: 0.15624237} + - {x: 23.954762, y: 0.12499237} + - {x: 23.954762, y: 0.09374237} + - {x: 23.954762, y: 0.06249237} + - {x: 23.954762, y: 0.03124237} + m_Textures2: [] + m_Textures3: [] + m_Tangents: + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000011704475, z: 0, w: -1} + - {x: -1, y: -0.00000011704472, z: 0, w: -1} + - {x: -1, y: -0.000000117042966, z: 0, w: -1} + - {x: -1, y: -0.00000011704298, z: 0, w: -1} + - {x: -1, y: -0.000000117042966, z: 0, w: -1} + - {x: -1, y: -0.000000117042966, z: 0, w: -1} + - {x: -1, y: -0.00000011704471, z: 0, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000011704238, z: 0, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000011704372, z: 0, w: -1} + - {x: -1, y: -0.00000013654926, z: 0, w: -1} + - {x: -1, y: -0.000000117044735, z: 0, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.000000117043555, z: 0, w: -1} + - {x: -1, y: -0.00000009753726, z: 0, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000011704474, z: 0, w: -1} + - {x: -1, y: -0.000000117044735, z: 0, w: -1} + - {x: -1, y: -0.00000011704472, z: 0, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000011933076, z: 0, w: -1} + - {x: -1, y: -0.00000012009276, z: 0, w: -1} + - {x: -1, y: -0.000000115033025, z: 0, w: -1} + - {x: -1, y: -0.00000011495464, z: 0, w: -1} + - {x: -1, y: -0.00000012664606, z: 0, w: -1} + - {x: -1, y: -0.00000012187806, z: 0, w: -1} + - {x: -1, y: -0.00000012832248, z: 0, w: -1} + - {x: -1, y: -0.00000012268185, z: 0, w: -1} + - {x: -1, y: -0.000000117042966, z: 0, w: -1} + - {x: -1, y: -0.0000001194814, z: 0, w: -1} + - {x: -1, y: -0.00000011704298, z: 0, w: -1} + - {x: -1, y: -0.00000011704298, z: 0, w: -1} + - {x: -1, y: -0.000000117043236, z: 0, w: -1} + - {x: -1, y: -0.00000011704298, z: 0, w: -1} + - {x: -1, y: -0.00000011704471, z: 0, w: -1} + - {x: -1, y: -0.00000011704471, z: 0, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000011704471, z: 0, w: -1} + - {x: -1, y: -0.00000012124114, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000011951484, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000012347255, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000012025863, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000012198494, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000011877103, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.0000001204973, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000011951481, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000009753726, z: 0, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000013655216, z: 0, w: -1} + - {x: -1, y: -0.00000009753726, z: 0, w: -1} + - {x: -1, y: -0.00000013655217, z: 0, w: -1} + - {x: -1, y: -0.00000014142904, z: 0, w: -1} + - {x: -1, y: -0.00000012679847, z: 0, w: -1} + - {x: -1, y: -0.00000011704474, z: 0, w: -1} + - {x: -1, y: -0.00000014045368, z: 0, w: -1} + - {x: -1, y: -0.00000012396661, z: 0, w: -1} + - {x: -1, y: -0.00000012009038, z: 0, w: -1} + - {x: -1, y: -0.00000012664515, z: 0, w: -1} + - {x: -1, y: -0.00000012582309, z: 0, w: -1} + - {x: -1, y: -0.00000012679847, z: 0, w: -1} + - {x: -1, y: -0.00000012009276, z: 0, w: -1} + - {x: -1, y: -0.00000012268362, z: 0, w: -1} + - {x: -1, y: -0.00000012132374, z: 0.00000038083093, w: -1} + - {x: -1, y: -0.00000012129924, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000012113652, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000011990494, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000012142708, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.000000119142925, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000011948318, z: 0, w: -1} + - {x: -1, y: -0.00000011704471, z: 0, w: -1} + - {x: -1, y: -0.00000012086922, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000011914292, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000012198493, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000011951482, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000011704473, z: 0, w: -1} + - {x: -1, y: -0.00000009753726, z: 0, w: -1} + - {x: -1, y: -0.00000013655216, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000009753726, z: 0, w: -1} + - {x: -1, y: -0.00000012347255, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000008198753, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000012496017, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000006099248, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000011900971, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000013604703, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000011603447, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000017654956, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000011704471, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.0000002340894, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000012198495, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.000000101494976, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000012496017, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.000000062480076, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000011704471, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000012496017, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000006099248, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000011900971, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.0000001375346, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000011704467, z: 0, w: -1} + - {x: -1, y: -0.00000015605609, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.000000066880716, z: 0, w: -1} + - {x: -1, y: -0.00000019506876, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000007802746, z: 0, w: -1} + - {x: -1, y: -0.00000015605609, z: 0, w: -1} + - {x: -1, y: -0.00000015605727, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000014045365, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000007802746, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000002926119, z: 0, w: -1} + - {x: -1, y: -0.00000013654866, z: 0, w: -1} + - {x: -1, y: -0.00000007802746, z: 0, w: -1} + - {x: -1, y: -0.00000015605609, z: 0, w: -1} + - {x: -1, y: -0.00000009753436, z: 0, w: -1} + - {x: -1, y: -0.00000014045365, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000015605727, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000011704236, z: 0, w: -1} + - {x: -1, y: -0.000000117041196, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000011704471, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000007802746, z: 0, w: -1} + - {x: -1, y: -0.00000023408239, z: 0, w: -1} + - {x: -1, y: -0.00000015605492, z: 0, w: -1} + - {x: -1, y: -0.00000023408707, z: 0, w: -1} + - {x: -1, y: -0.00000018727152, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000023408239, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000007802746, z: 0, w: -1} + - {x: -1, y: -0.00000046817883, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000015605492, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000004681788, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.000000033441346, z: 0, w: -1} + - {x: -1, y: -0.00000015605501, z: 0, w: -1} + - {x: -1, y: -0.00000023408707, z: 0, w: -1} + - {x: -1, y: -0.00000007802746, z: 0, w: -1} + - {x: -1, y: -0.00000023408239, z: 0, w: -1} + - {x: -1, y: -0.00000015605492, z: 0, w: -1} + - {x: -1, y: -0.00000026752474, z: 0, w: -1} + - {x: -1, y: -0.00000015605492, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000011900974, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000014050987, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000012496017, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.000000062480076, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000012496017, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.000000062480076, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000012496017, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.000000062480076, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000018727152, z: 0, w: -1} + - {x: -1, y: -0.00000023408448, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000012198488, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000010149492, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000012496017, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000005950487, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000011305926, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000020961399, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.000000107108775, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000029061903, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000012496017, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.000000062480076, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000012496017, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.000000062480076, z: 0.0000002856232, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000012496017, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.000000062480076, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000012496017, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000005950487, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000011305926, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000020961399, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.000000107108775, z: 0.0000005712464, w: -1} + - {x: -1, y: -0.00000029061903, z: 0.0000002856232, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000007802746, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000015605492, z: 0, w: -1} + - {x: -1, y: -0.00000023408472, z: 0, w: -1} + - {x: -1, y: -0.00000023408707, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000031211923, z: 0, w: -1} + - {x: -1, y: -0.00000046817883, z: 0, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: -0.00000023408943, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000007802981, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000005522218, z: 0, w: -1} + - {x: 1, y: 0.00000007363016, z: 0, w: -1} + - {x: 1, y: 0.00000007363016, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.000000036815372, z: 0, w: -1} + - {x: 0.9999702, y: -0.00078049, z: 0.0076802815, w: -1} + - {x: 0.9996948, y: 0.0067717885, z: 0.023755195, w: -1} + - {x: 0.9999702, y: -0.00078049, z: 0.0076802815, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.96067816, y: -0.11681563, z: -0.25189614, w: -1} + - {x: 0.9249559, y: -0.10419523, z: -0.3655132, w: -1} + - {x: 0.96067816, y: -0.11681563, z: -0.25189614, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000007362957, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000014725914, z: 0, w: -1} + - {x: 1, y: 0.00000014725914, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000007362957, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000007362957, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000014725914, z: 0, w: -1} + - {x: 1, y: 0.00000014725914, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000007362957, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: -0.00000041026874, z: -1, w: -1} + - {x: 0, y: -0.00000041026883, z: -1, w: -1} + - {x: 0, y: -0.00000038975563, z: -1, w: -1} + - {x: 0, y: -0.00000036924243, z: -1, w: -1} + - {x: 0, y: -0.00000041026883, z: -1, w: -1} + - {x: 0, y: -0.00000038975563, z: -1, w: -1} + - {x: 0, y: -0.00000036924243, z: -1, w: -1} + - {x: 0, y: -0.00000041026883, z: -1, w: -1} + - {x: 0, y: -0.0000003987278, z: -1, w: -1} + - {x: 0, y: -0.0000003871868, z: -1, w: -1} + - {x: 0, y: -0.0000003797388, z: -1, w: -1} + - {x: 0, y: -0.00000039328359, z: -1, w: -1} + - {x: 0, y: -0.0000003915196, z: -1, w: -1} + - {x: 0, y: -0.0000003902352, z: -1, w: -1} + - {x: 0, y: -0.00000040385567, z: -1, w: -1} + - {x: 0, y: -0.00000038566228, z: -1, w: -1} + - {x: 0, y: -0.00000038999607, z: -1, w: -1} + - {x: 0, y: -0.0000003902352, z: -1, w: -1} + - {x: 0, y: -0.0000003987278, z: -1, w: -1} + - {x: 0, y: -0.0000003871868, z: -1, w: -1} + - {x: 0, y: -0.0000003797388, z: -1, w: -1} + - {x: 0, y: -0.00000039328359, z: -1, w: -1} + - {x: 0, y: -0.0000003915196, z: -1, w: -1} + - {x: 0, y: -0.0000003902352, z: -1, w: -1} + - {x: 0, y: -0.00000041026814, z: -1, w: -1} + - {x: 0, y: -0.00000037949903, z: -1, w: -1} + - {x: 0, y: -0.00000038975563, z: -1, w: -1} + - {x: 0, y: -0.00000040001257, z: -1, w: -1} + - {x: 0, y: -0.00000040001188, z: -1, w: -1} + - {x: 0, y: -0.00000040001188, z: -1, w: -1} + - {x: 0, y: -0.00000039488384, z: -1, w: -1} + - {x: 0, y: -0.00000038975563, z: -1, w: -1} + - {x: 0, y: -0.0000003889542, z: -1, w: -1} + - {x: 0, y: -0.00000039436134, z: -1, w: -1} + - {x: 0, y: -0.0000003887107, z: -1, w: -1} + - {x: 0, y: -0.00000039307938, z: -1, w: -1} + - {x: 0, y: -0.00000038909184, z: -1, w: -1} + - {x: 0, y: -0.0000003902554, z: -1, w: -1} + - {x: 0, y: -0.00000039004462, z: -1, w: -1} + - {x: 0, y: -0.0000003895146, z: -1, w: -1} + - {x: 0, y: -0.00000039004783, z: -1, w: -1} + - {x: 0, y: -0.0000003902828, z: -1, w: -1} + - {x: 0, y: -0.0000003903781, z: -1, w: -1} + - {x: 0, y: -0.00000038847102, z: -1, w: -1} + - {x: 0, y: -0.00000039023504, z: -1, w: -1} + - {x: 0, y: -0.00000038562916, z: -1, w: -1} + - {x: 0, y: -0.0000003917594, z: -1, w: -1} + - {x: 0, y: -0.0000003951237, z: -1, w: -1} + - {x: 0, y: -0.000000388711, z: -1, w: -1} + - {x: 0, y: -0.00000039436156, z: -1, w: -1} + - {x: 0, y: -0.00000038871082, z: -1, w: -1} + - {x: 0, y: -0.00000036923697, z: -1, w: -1} + - {x: 0, y: -0.0000003692397, z: -1, w: -1} + - {x: 0, y: -0.00000037830674, z: -1, w: -1} + - {x: 0, y: -0.00000037743735, z: -1, w: -1} + - {x: 0, y: -0.00000036924516, z: -1, w: -1} + - {x: 0, y: -0.00000045129232, z: -1, w: -1} + - {x: 0, y: -0.00000041026874, z: -1, w: -1} + - {x: 0, y: -0.00000036924516, z: -1, w: -1} + - {x: 0, y: -0.00000045129232, z: -1, w: -1} + - {x: 0, y: -0.00000041026874, z: -1, w: -1} + - {x: 0, y: -0.0000003766918, z: -1, w: -1} + - {x: 0, y: -0.0000003902352, z: -1, w: -1} + - {x: 0, y: -0.00000040330033, z: -1, w: -1} + - {x: 0, y: -0.00000039633198, z: -1, w: -1} + - {x: 0, y: -0.00000042076374, z: -1, w: -1} + - {x: 0, y: -0.0000003841384, z: -1, w: -1} + - {x: 0, y: -0.0000003766918, z: -1, w: -1} + - {x: 0, y: -0.0000003902352, z: -1, w: -1} + - {x: 0, y: -0.00000038374483, z: -1, w: -1} + - {x: 0, y: -0.00000039720325, z: -1, w: -1} + - {x: 0, y: -0.00000038413714, z: -1, w: -1} + - {x: 0, y: -0.00000041771474, z: -1, w: -1} + - {x: 0, y: -0.0000003841378, z: -1, w: -1} + - {x: 0, y: -0.00000036924516, z: -1, w: -1} + - {x: 0, y: -0.00000045129232, z: -1, w: -1} + - {x: 0, y: -0.00000041026874, z: -1, w: -1} + - {x: 0, y: -0.00000036924516, z: -1, w: -1} + - {x: 0, y: -0.00000045129232, z: -1, w: -1} + - {x: 0, y: -0.00000041026874, z: -1, w: -1} + - {x: 0, y: -0.00000036924516, z: -1, w: -1} + - {x: 0, y: -0.00000045129232, z: -1, w: -1} + - {x: 0, y: -0.00000042076374, z: -1, w: -1} + - {x: 0, y: -0.0000003841384, z: -1, w: -1} + - {x: 0, y: -0.0000003766918, z: -1, w: -1} + - {x: 0, y: -0.0000003902352, z: -1, w: -1} + - {x: 0, y: -0.00000040330033, z: -1, w: -1} + - {x: 0, y: -0.00000039633198, z: -1, w: -1} + - {x: 0, y: -0.00000042076374, z: -1, w: -1} + - {x: 0, y: -0.0000003871868, z: -1, w: -1} + - {x: 0, y: -0.00000040330033, z: -1, w: -1} + - {x: 0, y: -0.00000039633198, z: -1, w: -1} + - {x: 0, y: -0.00000042076374, z: -1, w: -1} + - {x: 0, y: -0.0000003841384, z: -1, w: -1} + - {x: 0, y: -0.0000003766918, z: -1, w: -1} + - {x: 0, y: -0.0000003902352, z: -1, w: -1} + - {x: 0, y: -0.00000040330033, z: -1, w: -1} + - {x: 0, y: -0.00000039633198, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 8.688608e-13, z: 0, w: -1} + - {x: -1, y: 8.688608e-13, z: 0, w: -1} + - {x: -1, y: 8.688608e-13, z: 0, w: -1} + - {x: -1, y: 8.688608e-13, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -2.8440526e-13, z: 0, w: -1} + - {x: -1, y: -2.8440526e-13, z: 0, w: -1} + - {x: -1, y: -2.8440526e-13, z: 0, w: -1} + - {x: -1, y: -2.8440526e-13, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.0000014422042, z: 5.0136927e-19, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.0000014422042, z: 5.0136927e-19, w: -1} + - {x: -1, y: 0.0000028844083, z: 1.6596437e-18, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000067265296, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000067265296, z: 0, w: -1} + - {x: -1, y: -0.0000013453059, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 1.2550863e-13, z: 0, w: -1} + - {x: -1, y: 2.5101725e-13, z: 0, w: -1} + - {x: -1, y: 1.2550863e-13, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 3.343798e-13, z: 0, w: -1} + - {x: -1, y: 3.343798e-13, z: 0, w: -1} + - {x: -1, y: 3.343798e-13, z: 0, w: -1} + - {x: -1, y: 3.343798e-13, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 2.2498698e-12, z: 0, w: -1} + - {x: -1, y: 2.2498698e-12, z: 0, w: -1} + - {x: -1, y: 2.2498698e-12, z: 0, w: -1} + - {x: -1, y: 2.2498698e-12, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.000000094907584, z: 2.0795852e-21, w: -1} + - {x: -1, y: -0.00000018981517, z: 0, w: -1} + - {x: -1, y: -0.000000094907584, z: 2.0795852e-21, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.00000010621437, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.00000010621437, z: 0, w: -1} + - {x: -1, y: 0.00000021242874, z: 0, w: -1} + - {x: -1, y: 0.00000010621437, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.00000010621437, z: 0, w: -1} + - {x: -1, y: 0.00000021242874, z: 0, w: -1} + - {x: -1, y: -0.00000009490759, z: 0, w: -1} + - {x: -1, y: -0.00000018981518, z: 0, w: -1} + - {x: -1, y: -0.00000009490759, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.000000106214365, z: -4.897361e-20, w: -1} + - {x: -1, y: 0.00000021242873, z: -1.1193968e-19, w: -1} + - {x: -1, y: 0.000000106214365, z: -4.897361e-20, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.00000021242873, z: -8.395476e-20, w: -1} + - {x: -1, y: 0.000000106214365, z: -3.498115e-20, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.000000106214365, z: -3.498115e-20, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -1.9857443e-12, z: 0, w: -1} + - {x: -1, y: -1.9857443e-12, z: 0, w: -1} + - {x: -1, y: -1.9857443e-12, z: 0, w: -1} + - {x: -1, y: -1.9857443e-12, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -1.4756249e-13, z: 0, w: -1} + - {x: -1, y: -2.9512498e-13, z: 0, w: -1} + - {x: -1, y: -1.4756249e-13, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.0000000025930267, y: 0, z: 1, w: -1} + - {x: -2.9354394e-14, y: -1.99765e-28, z: 1, w: -1} + - {x: 0.0000000025930267, y: 0, z: 1, w: -1} + - {x: 0.0000000051860827, y: 0, z: 1, w: -1} + - {x: 0.0000000051861346, y: 0, z: 1, w: -1} + - {x: 0.0000000025930775, y: 0, z: 1, w: -1} + - {x: 2.023566e-14, y: -5.164102e-29, z: 1, w: -1} + - {x: 0.0000000025930775, y: 0, z: 1, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1.4074746e-12, y: 0, z: 1, w: -1} + - {x: 1.379877e-12, y: 2.0455934e-26, z: 1, w: -1} + - {x: 1.4074746e-12, y: 0, z: 1, w: -1} + - {x: 1.4350721e-12, y: 2.0455934e-26, z: 1, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.0000028949376, z: 0.0000061157366, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.0000013050392, z: 0.0000031360369, w: -1} + - {x: -1, y: 4.375766e-13, z: 0.000015409032, w: -1} + - {x: -1, y: 0, z: 0.000007726212, w: -1} + - {x: -1, y: 0, z: 0.000003863106, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0.000007726212, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.0000052586356, y: 0, z: -1, w: -1} + - {x: -0.0000052016103, y: 0, z: -1, w: -1} + - {x: -0.000005144585, y: 0, z: -1, w: -1} + - {x: -0.0000052016103, y: 0, z: -1, w: -1} + - {x: 0.00000005702532, y: 7.690773e-23, z: -1, w: -1} + - {x: 1.309355e-13, y: 0, z: -1, w: -1} + - {x: 0.00000005702532, y: 7.690773e-23, z: -1, w: -1} + - {x: 0.000000114050515, y: 1.8386052e-22, z: -1, w: -1} + - {x: 0.00000031169375, y: -0.000000052328755, z: -1, w: -1} + - {x: 0.00000031533455, y: -0.000000043417977, z: -1, w: -1} + - {x: 0.00000031897537, y: -0.000000034507213, z: -1, w: -1} + - {x: 0.00000031533455, y: -0.000000043417977, z: -1, w: -1} + - {x: -0.000000002593076, y: 0.0000000498978, z: -1, w: -1} + - {x: -1.8185389e-14, y: 0.00000003216918, z: -1, w: -1} + - {x: -0.000000002593076, y: 0.0000000498978, z: -1, w: -1} + - {x: -0.0000000051861337, y: 0.000000067626424, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.0000036529366, y: 0, z: -1, w: -1} + - {x: -0.0000014694633, y: 3.910164e-13, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: -0.0000027344875, y: 8.689252e-14, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.000002755346, y: 0, z: -1, w: -1} + - {x: -0.000004009941, y: -1.3033873e-13, z: -1, w: -1} + - {x: 0.0000002461581, y: 0, z: -1, w: -1} + - {x: 0.00000012307925, y: 0, z: -1, w: -1} + - {x: 4.1163112e-13, y: 0, z: -1, w: -1} + - {x: 0.00000012307925, y: 0, z: -1, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.0000000030038978, z: -0.000000426506, w: -1} + - {x: -1, y: 0.00000010213211, z: -0.00000005605263, w: -1} + - {x: -1, y: 0.0000000030038978, z: -0.000000426506, w: -1} + - {x: -1, y: -0.00000009612432, z: -0.0000007969594, w: -1} + - {x: -1, y: -0.00000010964953, z: -0.00000084971543, w: -1} + - {x: -1, y: 0.00000016447436, z: -0.00000042485658, w: -1} + - {x: -1, y: 0.00000043859825, z: 2.3225608e-12, w: -1} + - {x: -1, y: 0.00000016447436, z: -0.00000042485658, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: -1.9840882e-19, z: -0.0000001898152, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -1.9840882e-19, z: -0.0000001898152, w: -1} + - {x: 1, y: -3.8609283e-19, z: -0.0000003796304, w: -1} + - {x: 1, y: -1.4258346e-19, z: -0.00000037963036, w: -1} + - {x: 1, y: -1.4258346e-19, z: -0.00000037963034, w: -1} + - {x: 1, y: -1.4258346e-19, z: -0.00000037963036, w: -1} + - {x: 1, y: -1.4258346e-19, z: -0.0000003796304, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0.0000004248575, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0.0000004248575, w: -1} + - {x: 1, y: 0, z: 0.000000849715, w: -1} + - {x: 1, y: 0, z: 0.00000042485746, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0.00000042485746, w: -1} + - {x: 1, y: 0, z: 0.0000008497149, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0.00000042485746, w: -1} + - {x: 1, y: 0, z: 0.0000008497149, w: -1} + - {x: 1, y: 0, z: 0.00000042485746, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.0000034369898, y: -0.0000004984299, z: 1, w: -1} + - {x: -0.0000021996727, y: -0.00000047653631, z: 1, w: -1} + - {x: -0.0000034369898, y: -0.0000004984299, z: 1, w: -1} + - {x: -0.0000046743066, y: -0.0000005203235, z: 1, w: -1} + - {x: 0, y: 0.00000048951676, z: 1, w: -1} + - {x: 0, y: 0.0000006526872, z: 1, w: -1} + - {x: 0, y: 0.00000048951676, z: 1, w: -1} + - {x: 0, y: 0.00000032634625, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.00000020780313, y: 0.00000003163607, z: 1, w: -1} + - {x: -0.00000035194174, y: -0.00000003692729, z: 1, w: -1} + - {x: -0.00000020780313, y: 0.00000003163607, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.00000028964573, y: 0.000000042004217, z: 1, w: -1} + - {x: 0.0000002896457, y: 0.000000042004213, z: 1, w: -1} + - {x: 0.00000028964573, y: 0.000000042004217, z: 1, w: -1} + - {x: 0.00000028964573, y: 0.00000004200421, z: 1, w: -1} + - {x: 0, y: -0.000000042230578, z: 1, w: -1} + - {x: 0, y: -0.00000003486639, z: 1, w: -1} + - {x: 0, y: -0.000000027502203, z: 1, w: -1} + - {x: 0, y: -0.00000003486639, z: 1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.0000047013605, y: -0.00000011744983, z: 1, w: -1} + - {x: -0.000004626736, y: -0.00000023489942, z: 1, w: -1} + - {x: -0.0000047013605, y: -0.00000011744983, z: 1, w: -1} + - {x: -0.0000047759854, y: -2.438734e-13, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: -1.3246818e-12, y: 0.00000058508886, z: -1, w: -1} + - {x: -1.379877e-12, y: 0.00000029254443, z: -1, w: -1} + - {x: -1.4350721e-12, y: -2.0455934e-26, z: -1, w: -1} + - {x: -1.379877e-12, y: 0.00000029254443, z: -1, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.80550575, y: -0.592588, z: -3.187143e-14, w: -1} + - {x: 0.8055056, y: -0.59258825, z: -0.00000003444407, w: -1} + - {x: 0.8055056, y: -0.59258825, z: -0.00000003444407, w: -1} + - {x: 0.8055054, y: -0.5925885, z: -0.00000006888814, w: -1} + - {x: 0.8055115, y: -0.59258026, z: 0.0000000476491, w: -1} + - {x: 0.80550873, y: -0.59258395, z: 0.00000002382493, w: -1} + - {x: 0.80550873, y: -0.59258395, z: 0.00000002382493, w: -1} + - {x: 0.80550593, y: -0.5925877, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.7805138, y: 0.6251385, z: -0.000000072672115, w: -1} + - {x: -0.780514, y: 0.6251383, z: -0.000000036336065, w: -1} + - {x: -0.780514, y: 0.6251383, z: -0.000000036336065, w: -1} + - {x: -0.7805142, y: 0.6251381, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 0.0000011239034, y: 0.00000008704479, z: -1, w: -1} + - {x: 0.0000005619517, y: 0.000000043522395, z: -1, w: -1} + - {x: 0.0000005619517, y: 0.000000043522395, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.00000029586732, z: 0.000000008619852, w: -1} + - {x: -1, y: 0.00000014793366, z: 0.000000004309926, w: -1} + - {x: -1, y: 0.00000014793366, z: 0.000000004309926, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: -0.00000066223055, z: -0.00000001929333, w: -1} + - {x: -1, y: -0.0000003311153, z: -0.0000000096466986, w: -1} + - {x: -1, y: -0.0000003311153, z: -0.0000000096466986, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.80551153, y: 0.59258014, z: -0.000000045729365, w: -1} + - {x: 0.8055086, y: 0.59258413, z: -0.000000022864688, w: -1} + - {x: 0.8055086, y: 0.59258413, z: -0.000000022864688, w: -1} + - {x: 0.8055057, y: 0.59258807, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.78133625, y: -0.62411034, z: 0, w: -1} + - {x: -0.78133607, y: -0.6241106, z: 2.3186343e-14, w: -1} + - {x: -0.78133607, y: -0.6241106, z: 2.3186343e-14, w: -1} + - {x: -0.7813359, y: -0.6241107, z: 0, w: -1} + - {x: 0.80550563, y: 0.59258807, z: -0.00000006888813, w: -1} + - {x: 0.80550575, y: 0.5925879, z: -0.000000034444085, w: -1} + - {x: 0.80550575, y: 0.5925879, z: -0.000000034444085, w: -1} + - {x: 0.805506, y: 0.59258777, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.0000011315055, y: -0.00000008823419, z: 1, w: -1} + - {x: -0.00000056575277, y: -0.000000044117094, z: 1, w: -1} + - {x: -0.00000056575277, y: -0.000000044117094, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0.7070956, y: 0, z: 0.7071179, w: -1} + - {x: 0.4071106, y: -0.21176848, z: 0.8884904, w: -1} + - {x: 0.4071106, y: -0.21176848, z: 0.8884904, w: -1} + - {x: 0.0070438795, y: -0.36318645, z: 0.93168986, w: -1} + - {x: 1, y: -8.9213376e-21, z: -0.000000016901634, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -3.9650386e-21, z: -0.000000011267756, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -4.455734e-21, z: -0.000000016901634, w: -1} + - {x: -1, y: 0.000007606147, z: 0, w: -1} + - {x: -1, y: 0.000002529721, z: -1.1488253e-18, w: -1} + - {x: -1, y: -0.00000001698327, z: 0, w: -1} + - {x: -1, y: -0.000000008491635, z: 0, w: -1} + - {x: -1, y: 0.0000038030735, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000007362954, z: 0, w: -1} + - {x: 1, y: 0.00000014725909, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000007362954, z: 0, w: -1} + - {x: 1, y: -0.00000037165978, z: 0, w: -1} + - {x: 1, y: -0.00000033360527, z: 0, w: -1} + - {x: 1, y: -0.00000022240823, z: 0, w: -1} + - {x: 1, y: -0.00000033360178, z: 0, w: -1} + - {x: 1, y: 0.00000066716126, z: 0, w: -1} + - {x: 1, y: -0.00000011120764, z: 0, w: -1} + - {x: 1, y: -0.00000022240118, z: 0, w: -1} + - {x: 1, y: -0.000000111204116, z: 0, w: -1} + - {x: 1, y: -0.00000022239766, z: 0, w: -1} + - {x: 1, y: 0.00000022238709, z: 0, w: -1} + - {x: 1, y: -3.524292e-12, z: 0, w: -1} + - {x: 1, y: -0.00000011119707, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -0.000032208656, z: 0, w: -1} + - {x: 0.99999976, y: -0.0006727652, z: 0, w: -1} + - {x: 1, y: -0.00031999097, z: 0, w: -1} + - {x: 1, y: 5.18412e-10, z: 0, w: -1} + - {x: 1, y: -0.0000327824, z: 0, w: -1} + - {x: 1, y: 0.00003278395, z: 0, w: -1} + - {x: 1, y: 0.000016392754, z: 0, w: -1} + - {x: 1, y: 0.000032784472, z: 0, w: -1} + - {x: 1, y: 0.000016393271, z: 0, w: -1} + - {x: 1, y: -0.0000983472, z: 0, w: -1} + - {x: 1, y: 0.000049176706, z: 0, w: -1} + - {x: 1, y: 0.00003278551, z: 0, w: -1} + - {x: 1, y: -0.0001311296, z: 0, w: -1} + - {x: 1, y: -0.000032671953, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000007362954, z: 0, w: -1} + - {x: 1, y: 0.00000014725909, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -0.94867086, y: -0.31626526, z: 0.000015298105, w: -1} + - {x: -0.94867086, y: -0.31626526, z: 0.000015298105, w: -1} + - {x: -0.94867086, y: -0.31626526, z: 0.000015298105, w: -1} + - {x: 0.94865644, y: 0.0000049936784, z: 0.31630856, w: -1} + - {x: 0.94865644, y: 0.0000049936784, z: 0.31630856, w: -1} + - {x: 0.94865644, y: 0.0000049936784, z: 0.31630856, w: -1} + - {x: 0.0075601414, y: -1.5494422e-11, z: 0.99997145, w: -1} + - {x: 0.0075601414, y: -1.5494422e-11, z: 0.99997145, w: -1} + - {x: 0.0075601414, y: -1.5494422e-11, z: 0.99997145, w: -1} + - {x: 0.70710117, y: -0.7071123, z: 0, w: -1} + - {x: 0.70710117, y: -0.7071123, z: 0, w: -1} + - {x: 0.70710117, y: -0.7071123, z: 0, w: -1} + - {x: 0.70710117, y: 0.7071123, z: 0, w: -1} + - {x: 0.70710117, y: 0.7071123, z: 0, w: -1} + - {x: 0.70710117, y: 0.7071123, z: 0, w: -1} + - {x: 0.0075601414, y: 1.5494422e-11, z: -0.99997145, w: -1} + - {x: 0.0075601414, y: 1.5494422e-11, z: -0.99997145, w: -1} + - {x: 0.0075601414, y: 1.5494422e-11, z: -0.99997145, w: -1} + - {x: -0.70710504, y: 0, z: 0.70710844, w: -1} + - {x: -0.7071051, y: 0, z: 0.7071085, w: -1} + - {x: -0.7071051, y: 0, z: 0.7071085, w: -1} + - {x: -0.7071051, y: 0, z: 0.7071085, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.70710516, y: 2.981978e-13, z: -0.7071085, w: -1} + - {x: -0.7071051, y: 2.9819802e-13, z: -0.70710844, w: -1} + - {x: -0.7071051, y: 2.9819802e-13, z: -0.70710844, w: -1} + - {x: -0.70710516, y: 2.9819826e-13, z: -0.7071085, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.000000001034685, z: -0.00000006712184, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0.0000000015520276, z: -0.00000010068276, w: -1} + - {x: -1, y: 0.0000000015520274, z: -0.000000100682755, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.0000000014579095, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.0000000014579095, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.0000000010934321, z: 0, w: -1} + - {x: -1, y: -2.585214e-20, z: 0.000000044982425, w: -1} + - {x: -1, y: -1.7703872e-20, z: 0.000000044982425, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: -1.5397573e-20, z: 0.000000029988282, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -6.513558e-10, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -9.770337e-10, z: 0, w: -1} + - {x: 1, y: -9.770337e-10, z: 0, w: -1} + - {x: -0.70710254, y: 0.00000013867741, z: 0.707111, w: -1} + - {x: -0.70710254, y: 0.00000013867741, z: 0.707111, w: -1} + - {x: -0.70710254, y: 0.00000013867741, z: 0.707111, w: -1} + - {x: 1, y: 0.000001788141, z: -6.098614e-19, w: -1} + - {x: 1, y: 0.000001788141, z: -6.098614e-19, w: -1} + - {x: 1, y: 0.000001788141, z: -6.098614e-19, w: -1} + - {x: 1, y: -0.000001788141, z: 6.098614e-19, w: -1} + - {x: 1, y: -0.000001788141, z: 6.098614e-19, w: -1} + - {x: 1, y: -0.000001788141, z: 6.098614e-19, w: -1} + - {x: 1, y: -0.000001788141, z: 1.3552475e-19, w: -1} + - {x: 1, y: -0.000001788141, z: 1.3552475e-19, w: -1} + - {x: 1, y: -0.000001788141, z: 1.3552475e-19, w: -1} + - {x: 1, y: 0.000001788141, z: -1.3552475e-19, w: -1} + - {x: 1, y: 0.000001788141, z: -1.3552475e-19, w: -1} + - {x: 1, y: 0.000001788141, z: -1.3552475e-19, w: -1} + - {x: -0.70710236, y: -0.0000004483856, z: -0.70711124, w: -1} + - {x: -0.70710236, y: -0.0000004483856, z: -0.70711124, w: -1} + - {x: -0.70710236, y: -0.0000004483856, z: -0.70711124, w: -1} + - {x: 1, y: -0.000001788141, z: 6.098614e-19, w: -1} + - {x: 1, y: -0.000001788141, z: 6.098614e-19, w: -1} + - {x: 1, y: -0.000001788141, z: 6.098614e-19, w: -1} + - {x: 1, y: -0.000001788141, z: 1.3552475e-19, w: -1} + - {x: 1, y: -0.000001788141, z: 1.3552475e-19, w: -1} + - {x: 1, y: -0.000001788141, z: 1.3552475e-19, w: -1} + - {x: 1, y: 0.000001788141, z: -1.3552475e-19, w: -1} + - {x: 1, y: 0.000001788141, z: -1.3552475e-19, w: -1} + - {x: 1, y: 0.000001788141, z: -1.3552475e-19, w: -1} + - {x: 1, y: 0.000001788141, z: -6.098614e-19, w: -1} + - {x: 1, y: 0.000001788141, z: -6.098614e-19, w: -1} + - {x: 1, y: 0.000001788141, z: -6.098614e-19, w: -1} + - {x: 0.99999756, y: 0, z: 0.0022328296, w: -1} + - {x: 0.9999975, y: 0.00000006008228, z: 0.002232847, w: -1} + - {x: 0.9999975, y: 0.00000006008228, z: 0.002232847, w: -1} + - {x: 0.9999975, y: 0.00000012024687, z: 0.0022328645, w: -1} + - {x: 0.007560143, y: -1.7089273e-12, z: -0.99997145, w: -1} + - {x: 0.38616082, y: -0.0024096356, z: -0.92242837, w: -1} + - {x: 0.38616082, y: -0.0024096356, z: -0.92242837, w: -1} + - {x: 0.7070894, y: -0.004168733, z: -0.70711184, w: -1} + - {x: -0.9486753, y: 0.31625187, z: 0.000086266016, w: -1} + - {x: -0.9486653, y: 0.31628183, z: 0.00007338637, w: -1} + - {x: -0.9486753, y: 0.31625187, z: 0.000086266016, w: -1} + - {x: -0.9486852, y: 0.31622192, z: 0.00009915325, w: -1} + - {x: 0.94864345, y: -0.00014347292, z: -0.31634748, w: -1} + - {x: 0.9486533, y: -0.000009739246, z: -0.31631798, w: -1} + - {x: 0.94864345, y: -0.00014347292, z: -0.31634748, w: -1} + - {x: 0.9486335, y: -0.00027717918, z: -0.31637704, w: -1} + - {x: 0.0000000037799133, y: 1.72042e-13, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0.000000003780085, y: -6.8913705e-24, z: 1, w: -1} + - {x: 0.00000000566987, y: 2.58063e-13, z: 1, w: -1} + - {x: -5.16126e-13, y: 5.16126e-13, z: 1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000003289576, z: 0, w: -1} + - {x: 1, y: 0.00000006579152, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000003289576, z: 0, w: -1} + - {x: 1, y: 0.00000006579152, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000003289576, z: 0, w: -1} + - {x: 1, y: -0.00012014014, z: 0, w: -1} + - {x: 1, y: -0.0000819617, z: 0, w: -1} + - {x: 1, y: -0.00006556997, z: 0, w: -1} + - {x: 1, y: -0.000081961174, z: 0, w: -1} + - {x: 1, y: 0.00016391199, z: 0, w: -1} + - {x: 1, y: -0.000049177746, z: 0, w: -1} + - {x: 1, y: -0.000065568944, z: 0, w: -1} + - {x: 1, y: 0.0001311296, z: 0, w: -1} + - {x: 1, y: -0.00003278551, z: 0, w: -1} + - {x: 1, y: -0.000049176706, z: 0, w: -1} + - {x: 1, y: -0.000032784985, z: 0, w: -1} + - {x: 1, y: -0.000049176186, z: 0, w: -1} + - {x: 1, y: 0.0000655648, z: 0, w: -1} + - {x: 1, y: -0.000016392754, z: 0, w: -1} + - {x: 1, y: -0.00003278395, z: 0, w: -1} + - {x: 1, y: 0.0000327824, z: 0, w: -1} + - {x: 1, y: -5.18412e-10, z: 0, w: -1} + - {x: 1, y: -0.00019211166, z: 0, w: -1} + - {x: 0.99999994, y: -0.00035143987, z: 0, w: -1} + - {x: 1, y: -0.000019243056, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.000000098988394, z: 0, w: -1} + - {x: 1, y: 0.000000049495767, z: 0, w: -1} + - {x: 1, y: -0.000000098985254, z: 0, w: -1} + - {x: 1, y: 0.00000014848416, z: 0, w: -1} + - {x: 1, y: 0.000000098991535, z: 0, w: -1} + - {x: 1, y: 0.00000014848573, z: 0, w: -1} + - {x: 1, y: 0.0000000989931, z: 0, w: -1} + - {x: 1, y: -0.00000029695576, z: 0, w: -1} + - {x: 1, y: 0.0000001979815, z: 0, w: -1} + - {x: 1, y: 0.00000014848888, z: 0, w: -1} + - {x: 1, y: 0.00000019798307, z: 0, w: -1} + - {x: 1, y: 0.00000014849044, z: 0, w: -1} + - {x: 1, y: -0.00000049492627, z: 0, w: -1} + - {x: 1, y: 0.00000024747882, z: 0, w: -1} + - {x: 1, y: 0.0000001979862, z: 0, w: -1} + - {x: 1, y: -0.0000005939115, z: 0, w: -1} + - {x: 1, y: -0.00000009913394, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000003289576, z: 0, w: -1} + - {x: 1, y: 0.00000006579152, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000003289576, z: 0, w: -1} + - {x: 1, y: 0.00000006579152, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00003207848, z: 0, w: -1} + - {x: 0.99999994, y: 0.00035143987, z: 0, w: -1} + - {x: 1, y: 0.00019211166, z: 0, w: -1} + - {x: 1, y: 5.18412e-10, z: 0, w: -1} + - {x: 1, y: -0.0000327824, z: 0, w: -1} + - {x: 1, y: 0.00003278395, z: 0, w: -1} + - {x: 1, y: 0.000016392754, z: 0, w: -1} + - {x: 1, y: -0.0000655648, z: 0, w: -1} + - {x: 1, y: 0.000049176186, z: 0, w: -1} + - {x: 1, y: 0.000032784985, z: 0, w: -1} + - {x: 1, y: 0.000049176706, z: 0, w: -1} + - {x: 1, y: 0.00003278551, z: 0, w: -1} + - {x: 1, y: -0.0000327824, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000008332918, z: 0, w: -1} + - {x: 1, y: 0.00000016665835, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000008332918, z: 0, w: -1} + - {x: 1, y: 0.00000016665835, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000008332918, z: 0, w: -1} + - {x: 1, y: 0.00000016665835, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.00000008332918, z: 0, w: -1} + - {x: 1, y: 0.00000016665835, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.0000327824, z: 0, w: -1} + - {x: 1, y: -0.00003278551, z: 0, w: -1} + - {x: 1, y: -0.000049176706, z: 0, w: -1} + - {x: 1, y: 0.0000983472, z: 0, w: -1} + - {x: 1, y: -0.000016393271, z: 0, w: -1} + - {x: 1, y: -0.000032784472, z: 0, w: -1} + - {x: 1, y: -0.000016392754, z: 0, w: -1} + - {x: 1, y: -0.00003278395, z: 0, w: -1} + - {x: 1, y: 0.0000327824, z: 0, w: -1} + - {x: 1, y: -5.18412e-10, z: 0, w: -1} + - {x: 1, y: 0.00031999097, z: 0, w: -1} + - {x: 0.99999976, y: 0.0006727652, z: 0, w: -1} + - {x: 1, y: 0.000056062574, z: 0, w: -1} + - {x: 0.9999999, y: 0.00048265434, z: -5.0275916e-16, w: -1} + - {x: 0.9999995, y: 0.0009594798, z: 0, w: -1} + - {x: 1, y: 0.00024132717, z: -2.549348e-16, w: -1} + - {x: 0.99999994, y: -0.00032176956, z: 3.284959e-16, w: -1} + - {x: 0.9999995, y: -0.0009594798, z: 0, w: -1} + - {x: 0.9999999, y: -0.00048265434, z: 5.0275916e-16, w: -1} + - {x: 1, y: -0.0000019429401, z: 0, w: -1} + - {x: 1, y: 0.0000029144103, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0.000000007551208, w: -1} + - {x: 1, y: 0, z: 0.000000007551208, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0.0000000050341384, w: -1} + - {x: -0.000000003780085, y: 0.000000003780085, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: -0.0000000037799137, y: 0.0000000037799133, z: -1, w: -1} + - {x: 5.16126e-13, y: -5.16126e-13, z: -1, w: -1} + - {x: -0.0000000056698704, y: 0.00000000566987, z: -1, w: -1} + - {x: 0.70711255, y: -0.00006724888, z: 0.707101, w: -1} + - {x: 0.70711255, y: -0.00006724888, z: 0.707101, w: -1} + - {x: 0.70711255, y: -0.00006724888, z: 0.707101, w: -1} + - {x: 0.0075601414, y: 1.5494422e-11, z: -0.99997145, w: -1} + - {x: 0.0075601414, y: 1.5494422e-11, z: -0.99997145, w: -1} + - {x: 0.0075601414, y: 1.5494422e-11, z: -0.99997145, w: -1} + - {x: 0.0075601414, y: -1.5494422e-11, z: 0.99997145, w: -1} + - {x: 0.0075601414, y: -1.5494422e-11, z: 0.99997145, w: -1} + - {x: 0.0075601414, y: -1.5494422e-11, z: 0.99997145, w: -1} + - {x: 0.70710117, y: -0.7071123, z: 0, w: -1} + - {x: 0.70710117, y: -0.7071123, z: 0, w: -1} + - {x: 0.70710117, y: -0.7071123, z: 0, w: -1} + - {x: 0.70710117, y: 0.7071123, z: 0, w: -1} + - {x: 0.70710117, y: 0.7071123, z: 0, w: -1} + - {x: 0.70710117, y: 0.7071123, z: 0, w: -1} + - {x: 0.7070957, y: 0.000000017206323, z: -0.707118, w: -1} + - {x: 0.7070957, y: 0.000000017206323, z: -0.707118, w: -1} + - {x: 0.7070957, y: 0.000000017206323, z: -0.707118, w: -1} + - {x: 0.7071003, y: 2.1034479e-13, z: -0.7071132, w: -1} + - {x: 0.7071004, y: -2.1033904e-13, z: -0.7071131, w: -1} + - {x: 0.7071004, y: -2.1033904e-13, z: -0.7071131, w: -1} + - {x: 0.70710045, y: -2.1033331e-13, z: -0.7071131, w: -1} + - {x: 0.7071004, y: 0.0000000132144455, z: -0.70711315, w: -1} + - {x: 0.6907626, y: 0.011269885, z: -0.7229938, w: -1} + - {x: 0.6907626, y: 0.011269885, z: -0.7229938, w: -1} + - {x: 0.67397416, y: 0.02253584, z: -0.7384112, w: -1} + - {x: 1, y: -0.000005217794, z: -0.000007092748, w: -1} + - {x: 1, y: -0.0000048583897, z: -0.000007640611, w: -1} + - {x: 1, y: -0.000007553761, z: -0.00001130434, w: -1} + - {x: 1, y: -0.000010608536, z: -0.000014420208, w: -1} + - {x: 1, y: -0.000006775095, z: -0.000009900484, w: -1} + - {x: 0.8055068, y: 0.5925865, z: -1.5571915e-13, w: -1} + - {x: 0.8055054, y: 0.5925884, z: 0, w: -1} + - {x: 0.8055042, y: 0.59259015, z: -8.4960034e-14, w: -1} + - {x: 0.8055075, y: 0.5925855, z: 0, w: -1} + - {x: 0.8055121, y: 0.59257936, z: 1.8044779e-13, w: -1} + - {x: 1, y: 0.00000570625, z: 0, w: -1} + - {x: 1, y: 0.000002853125, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.0000073183332, z: 0, w: -1} + - {x: 1, y: -0.0000070302704, z: 0, w: -1} + - {x: 1, y: -0.000008034513, z: 0, w: -1} + - {x: 1, y: 0.000020084852, z: 0, w: -1} + - {x: 1, y: -0.0000060259645, z: 0, w: -1} + - {x: 1, y: -0.0000070302076, z: 0, w: -1} + - {x: 1, y: 0.000018076365, z: 0, w: -1} + - {x: 1, y: -0.0000050216586, z: 0, w: -1} + - {x: 1, y: -0.000006025901, z: 0, w: -1} + - {x: 1, y: -0.0000050216267, z: 0, w: -1} + - {x: 1, y: -0.0000060258694, z: 0, w: -1} + - {x: 1, y: 0.000014059396, z: 0, w: -1} + - {x: 1, y: -0.0000040173204, z: 0, w: -1} + - {x: 1, y: -0.000005021563, z: 0, w: -1} + - {x: 1, y: 0.00001205091, z: 0, w: -1} + - {x: 1, y: -0.000003013014, z: 0, w: -1} + - {x: 1, y: -0.0000040172563, z: 0, w: -1} + - {x: 1, y: -0.0000030129822, z: 0, w: -1} + - {x: 1, y: -0.000004017225, z: 0, w: -1} + - {x: 1, y: 0.000008033899, z: 0, w: -1} + - {x: 1, y: -0.0000040173218, z: 0, w: -1} + - {x: 1, y: -0.000006025791, z: 0, w: -1} + - {x: 1, y: -0.0000040172586, z: 0, w: -1} + - {x: 1, y: -0.000006025728, z: 0, w: -1} + - {x: 1, y: 0.000008033879, z: 0, w: -1} + - {x: 1, y: -0.0000020086609, z: 0, w: -1} + - {x: 1, y: -0.0000040171303, z: 0, w: -1} + - {x: 1, y: 0.0000040169393, z: 0, w: -1} + - {x: 1, y: -6.3892e-11, z: 0, w: -1} + - {x: 1, y: -0.0000020085333, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -0.0000006696494, z: 0, w: -1} + - {x: 1, y: 0.00000025723315, z: 0, w: -1} + - {x: 1, y: 0.00000009831064, z: 0, w: -1} + - {x: 1, y: 0.00000013106796, z: 0, w: -1} + - {x: 1, y: 0.00000006553398, z: 0, w: -1} + - {x: 1, y: 0.00000026214008, z: 0, w: -1} + - {x: 1, y: 0.00000013107419, z: 0, w: -1} + - {x: 1, y: 0.00000026214423, z: 0, w: -1} + - {x: 1, y: 0.00000013107834, z: 0, w: -1} + - {x: 1, y: -0.00000052426356, z: 0, w: -1} + - {x: 1, y: 0.0000003932184, z: 0, w: -1} + - {x: 1, y: 0.0000002621525, z: 0, w: -1} + - {x: 1, y: 0.00000039322256, z: 0, w: -1} + - {x: 1, y: 0.00000026215668, z: 0, w: -1} + - {x: 1, y: -0.0000006776075, z: 0, w: -1} + - {x: 1, y: 0.0000004921789, z: 0, w: -1} + - {x: 1, y: 0.00000036914201, z: 0, w: -1} + - {x: 1, y: -0.0000012303691, z: 0, w: -1} + - {x: 1, y: 0.00000061522366, z: 0, w: -1} + - {x: 1, y: 0.0000004921867, z: 0, w: -1} + - {x: 1, y: 0.0000006152276, z: 0, w: -1} + - {x: 1, y: 0.0000004921907, z: 0, w: -1} + - {x: 1, y: -0.0000017225168, z: 0, w: -1} + - {x: 1, y: 0.0000007382722, z: 0, w: -1} + - {x: 1, y: 0.0000006152353, z: 0, w: -1} + - {x: 1, y: -0.0000019685906, z: 0, w: -1} + - {x: 1, y: 0.00000086131706, z: 0, w: -1} + - {x: 1, y: 0.00000073828016, z: 0, w: -1} + - {x: 1, y: 0.0000008613209, z: 0, w: -1} + - {x: 1, y: 0.00000073828403, z: 0, w: -1} + - {x: 1, y: -0.0000024607382, z: 0, w: -1} + - {x: 1, y: 0.0000009843656, z: 0, w: -1} + - {x: 1, y: 0.00000086132866, z: 0, w: -1} + - {x: 1, y: 0.0000009843696, z: 0, w: -1} + - {x: 1, y: 0.0000011381629, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0.70710045, y: 0.0000000108314255, z: -0.70711327, w: -1} + - {x: 0.70710045, y: 0.0000000108314255, z: -0.70711327, w: -1} + - {x: 0.70710045, y: 0.0000000108314255, z: -0.70711327, w: -1} + - {x: 0.99996406, y: 0.0084816115, z: 0, w: -1} + - {x: 0.99996406, y: 0.0084816115, z: 0, w: -1} + - {x: 0.99996406, y: 0.0084816115, z: 0, w: -1} + - {x: -0.70711225, y: -1.06087184e-13, z: -0.70710135, w: -1} + - {x: -0.7071095, y: -1.06446624e-13, z: -0.7071041, w: -1} + - {x: -0.7071095, y: -1.06446624e-13, z: -0.7071041, w: -1} + - {x: -0.7071068, y: 0, z: -0.7071068, w: -1} + - {x: -0.01078569, y: 0, z: -0.9999418, w: -1} + - {x: -0.23979554, y: 0.15612872, z: -0.9581868, w: -1} + - {x: -0.23979554, y: 0.15612872, z: -0.9581868, w: -1} + - {x: -0.45112523, y: 0.30923873, z: -0.83717227, w: -1} + - {x: 0.8055105, y: 0.59258145, z: 0.00000003141308, w: -1} + - {x: 0.80550826, y: 0.59258467, z: -0.000000008042612, w: -1} + - {x: 0.8055058, y: 0.59258795, z: -0.000000023749218, w: -1} + - {x: 0.8055057, y: 0.59258807, z: 0, w: -1} + - {x: 0.80550736, y: 0.5925858, z: -0.0000000053617444, w: -1} + - {x: 1, y: 0.00011889419, z: -0.00016117372, w: -1} + - {x: 1, y: 0.00012729938, z: -0.00017303802, w: -1} + - {x: 1, y: 0.00012094467, z: -0.00016373998, w: -1} + - {x: 1, y: 0.00011469164, z: -0.00015524156, w: -1} + - {x: 1, y: 0.000114793285, z: -0.00015604118, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.7071068, y: 0, z: -0.7071068, w: -1} + - {x: -0.7071068, y: 0, z: -0.7071068, w: -1} + - {x: -0.7071068, y: 0, z: -0.7071068, w: -1} + - {x: -0.0020789579, y: -0.000113125694, z: -0.99999785, w: -1} + - {x: -0.010769013, y: 0.000016677328, z: -0.999942, w: -1} + - {x: -0.0045991405, y: -0.0003172473, z: -0.9999894, w: -1} + - {x: 0.7640281, y: -0.645183, z: 0.0000054612087, w: -1} + - {x: 0.8468961, y: -0.5246256, z: 0.08680383, w: -1} + - {x: 0.8468961, y: -0.5246256, z: 0.08680383, w: -1} + - {x: 0.907939, y: -0.37092227, z: 0.1950986, w: -1} + - {x: -0.7071132, y: 2.1143838e-13, z: 0.7071003, w: -1} + - {x: -0.7071132, y: 2.1143838e-13, z: 0.7071003, w: -1} + - {x: -0.7071132, y: 2.1143838e-13, z: 0.7071003, w: -1} + - {x: -0.7071132, y: 2.1143838e-13, z: 0.7071003, w: -1} + - {x: -1, y: -0.00000012143265, z: 0.0000005755221, w: -1} + - {x: -1, y: -0.00000015605961, z: 0, w: -1} + - {x: -1, y: -0.00000027574276, z: 0.00000019041539, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0.8055084, y: -0.59258443, z: -8.505045e-15, w: -1} + - {x: 0.8055057, y: -0.59258807, z: 0, w: -1} + - {x: 0.8055058, y: -0.5925878, z: 1.9136417e-14, w: -1} + - {x: 0.80550975, y: -0.5925826, z: 9.568158e-15, w: -1} + - {x: 0.8055135, y: -0.59257746, z: 0, w: -1} + - {x: 1, y: 0.000034935005, z: -0.00004748796, w: -1} + - {x: 1, y: 0.00003519696, z: -0.000049125316, w: -1} + - {x: 1, y: 0.000017729573, z: -0.000025381454, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0.000023464738, z: -0.00003275023, w: -1} + - {x: -0.99995655, y: 0.0000049793116, z: 0.009326426, w: -1} + - {x: -0.99999845, y: -0.00010040477, z: 0.0017994017, w: -1} + - {x: -0.999992, y: -0.0002800812, z: 0.0039816224, w: -1} + - {x: -0.70711327, y: 0, z: 0.7071004, w: -1} + - {x: -0.70711327, y: 0, z: 0.7071004, w: -1} + - {x: -0.70711327, y: 0, z: 0.7071004, w: -1} + - {x: 0.7071068, y: 0, z: 0.7071068, w: -1} + - {x: 0.7071068, y: 0, z: 0.7071068, w: -1} + - {x: 0.7071068, y: 0, z: 0.7071068, w: -1} + - {x: 0.7071068, y: 0, z: 0.7071068, w: -1} + - {x: 0.6295379, y: 0, z: 0.7769698, w: -1} + - {x: 0.6606832, y: 0.020200578, z: 0.75039303, w: -1} + - {x: 0.6606832, y: 0.020200578, z: 0.75039303, w: -1} + - {x: 0.6904864, y: 0.040390503, z: 0.7222169, w: -1} + - {x: 1, y: 0.000065857756, z: 0.00009086141, w: -1} + - {x: 1, y: 0.00008228342, z: 0.00011184802, w: -1} + - {x: 1, y: 0.00006967478, z: 0.00009671908, w: -1} + - {x: 1, y: 0.00005764497, z: 0.00008036799, w: -1} + - {x: 1, y: 0.00005822392, z: 0.000079146026, w: -1} + - {x: 0.8055152, y: -0.59257513, z: 0, w: -1} + - {x: 0.8055091, y: -0.5925834, z: -0.000000033876958, w: -1} + - {x: 0.8055042, y: -0.5925901, z: -0.00000006832043, w: -1} + - {x: 0.8055054, y: -0.5925884, z: -0.000000068888134, w: -1} + - {x: 0.8055079, y: -0.5925851, z: -0.00000004554751, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: -0.0000005712464, w: -1} + - {x: 1, y: -5.392004e-12, z: -0.0000004896398, w: -1} + - {x: 1, y: 0.00000005361906, z: -0.000000481482, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -0.00000008056832, z: -0.00000015496313, w: -1} + - {x: 1, y: 0.00000015028662, z: 0, w: -1} + - {x: 1, y: 0.0000022256577, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -0.000003894592, z: 0, w: -1} + - {x: 1, y: 0.000003894839, z: 0, w: -1} + - {x: 1, y: 2.4738256e-10, z: 0, w: -1} + - {x: 1, y: 0.000003894963, z: 0, w: -1} + - {x: 1, y: 0.000003894839, z: 0, w: -1} + - {x: 1, y: -0.0000116837755, z: 0, w: -1} + - {x: 1, y: 0.0000038949006, z: 0, w: -1} + - {x: 1, y: 0.0000019476047, z: 0, w: -1} + - {x: 1, y: -0.000015578367, z: 0, w: -1} + - {x: 1, y: 0.000005842321, z: 0, w: -1} + - {x: 1, y: 0.0000038950257, z: 0, w: -1} + - {x: 1, y: 0.000005842383, z: 0, w: -1} + - {x: 1, y: 0.0000038950866, z: 0, w: -1} + - {x: 1, y: -0.000023367551, z: 0, w: -1} + - {x: 1, y: 0.000007789801, z: 0, w: -1} + - {x: 1, y: 0.000005842505, z: 0, w: -1} + - {x: 1, y: -0.000027262144, z: 0, w: -1} + - {x: 1, y: 0.000009737221, z: 0, w: -1} + - {x: 1, y: 0.000007789926, z: 0, w: -1} + - {x: 1, y: 0.000009737283, z: 0, w: -1} + - {x: 1, y: 0.000007789988, z: 0, w: -1} + - {x: 1, y: -0.000035051326, z: 0, w: -1} + - {x: 1, y: 0.000011684704, z: 0, w: -1} + - {x: 1, y: 0.000009737409, z: 0, w: -1} + - {x: 1, y: 0.000011684766, z: 0, w: -1} + - {x: 1, y: 0.000009737469, z: 0, w: -1} + - {x: 1, y: -0.00004284051, z: 0, w: -1} + - {x: 1, y: 0.000013632183, z: 0, w: -1} + - {x: 1, y: 0.00000497235, z: -0.000000114268026, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: -0.00000051252965, z: -0.000000509715, w: -1} + - {x: 1, y: -0.000006277526, z: -0.0000005883495, w: -1} + - {x: 1, y: -0.000002985813, z: -0.0000005883495, w: -1} + - {x: 1, y: 4.8601123e-12, z: -0.0000005883495, w: -1} + - {x: 1, y: 0.00000015295483, z: -0.0000005883495, w: -1} + - {x: 1, y: 9.720225e-12, z: -0.0000005883495, w: -1} + - {x: 1, y: -0.0000006117804, z: -0.0000005883495, w: -1} + - {x: 1, y: 0.00000030590965, z: -0.0000005883495, w: -1} + - {x: 1, y: 0.00000015296456, z: -0.0000005883495, w: -1} + - {x: 1, y: -0.0000009176706, z: -0.0000005883495, w: -1} + - {x: 1, y: 0.00000045886452, z: -0.0000005883495, w: -1} + - {x: 1, y: 0.000000137651, z: -0.00000042411034, w: -1} + - {x: 1, y: 0.00000011723239, z: -0.00000045089809, w: -1} + - {x: 1, y: 0.00000048884954, z: -0.00000024434289, w: -1} + - {x: 1, y: 0.0000020026275, z: -0.00000055026504, w: -1} + - {x: 1, y: -0.0000005722293, z: -0.00000055026504, w: -1} + - {x: 1, y: -0.00000071527404, z: -0.00000055026504, w: -1} + - {x: 1, y: -0.00000057222474, z: -0.00000055026504, w: -1} + - {x: 1, y: -0.00000071526955, z: -0.00000055026504, w: -1} + - {x: 1, y: 0.0000014304483, z: -0.00000055026504, w: -1} + - {x: 1, y: -0.00000042917083, z: -0.00000055026504, w: -1} + - {x: 1, y: -0.00000057221564, z: -0.00000055026504, w: -1} + - {x: 1, y: 0.0000011443586, z: -0.00000055026504, w: -1} + - {x: 1, y: -0.00000028611692, z: -0.00000055026504, w: -1} + - {x: 1, y: -0.00000042916173, z: -0.00000055026504, w: -1} + - {x: 1, y: -0.00000028611237, z: -0.00000055026504, w: -1} + - {x: 1, y: -0.00000042915718, z: -0.00000055026504, w: -1} + - {x: 1, y: 0.00000038872517, z: -0.00000037383847, w: -1} + - {x: 1, y: -0.00000014851321, z: -0.0000005712464, w: -1} + - {x: 1, y: -0.00000029701226, z: -0.0000005712464, w: -1} + - {x: 1, y: 0.0000002969981, z: -0.0000005712464, w: -1} + - {x: 1, y: -4.7180038e-12, z: -0.0000005712464, w: -1} + - {x: 1, y: -0.00000014850377, z: -0.0000005712464, w: -1} + - {x: 0.7071068, y: 0, z: 0.7071068, w: -1} + - {x: 0.7071068, y: 0, z: 0.7071068, w: -1} + - {x: 0.7071068, y: 0, z: 0.7071068, w: -1} + - {x: 0.9999565, y: -0.009330666, z: -1.6826098e-11, w: -1} + - {x: 0.9999565, y: -0.009330666, z: -1.6826098e-11, w: -1} + - {x: 0.9999565, y: -0.009330666, z: -1.6826098e-11, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + - {x: 0, y: 0, z: -1, w: -1} + m_Colors: [] + m_UnwrapParameters: + m_HardAngle: 88 + m_PackMargin: 20 + m_AngleError: 8 + m_AreaError: 15 + m_PreserveMeshAssetOnDestroy: 0 + assetGuid: + m_Mesh: {fileID: 0} + m_IsSelectable: 1 + m_SelectedFaces: 7c000000ff000000fb000000 + m_SelectedEdges: + - a: 1022 + b: 1023 + - a: 1024 + b: 1025 + - a: 1025 + b: 1022 + - a: 1023 + b: 1026 + - a: 1027 + b: 1024 + - a: 1026 + b: 1028 + - a: 1029 + b: 1027 + - a: 1028 + b: 1030 + - a: 1031 + b: 1029 + - a: 1030 + b: 1035 + - a: 1034 + b: 1031 + - a: 1032 + b: 1034 + - a: 1035 + b: 1033 + - a: 1038 + b: 1032 + - a: 1033 + b: 1039 + - a: 1039 + b: 1037 + - a: 1036 + b: 1038 + - a: 1037 + b: 1040 + - a: 1041 + b: 1036 + - a: 1040 + b: 1042 + - a: 1043 + b: 1041 + - a: 1042 + b: 1044 + - a: 1045 + b: 1043 + - a: 1044 + b: 1046 + - a: 1047 + b: 1045 + - a: 1046 + b: 1048 + - a: 1049 + b: 1047 + - a: 1048 + b: 1050 + - a: 1051 + b: 1049 + - a: 1050 + b: 1052 + - a: 1053 + b: 1051 + - a: 1052 + b: 1054 + - a: 1055 + b: 1053 + - a: 1054 + b: 1056 + - a: 1057 + b: 1055 + - a: 1056 + b: 1058 + - a: 1059 + b: 1057 + - a: 1058 + b: 1060 + - a: 1061 + b: 1059 + - a: 1060 + b: 1062 + - a: 1063 + b: 1061 + - a: 1062 + b: 1064 + - a: 1065 + b: 1063 + - a: 1064 + b: 1066 + - a: 1067 + b: 1065 + - a: 1066 + b: 1068 + - a: 1069 + b: 1067 + - a: 1068 + b: 1070 + - a: 1071 + b: 1069 + - a: 1070 + b: 1072 + - a: 1073 + b: 1071 + - a: 1072 + b: 1074 + - a: 1075 + b: 1073 + - a: 1074 + b: 1076 + - a: 1077 + b: 1075 + - a: 1076 + b: 1078 + - a: 1079 + b: 1077 + - a: 1078 + b: 1080 + - a: 1081 + b: 1079 + - a: 1080 + b: 1082 + - a: 1083 + b: 1081 + - a: 1082 + b: 1084 + - a: 1085 + b: 1083 + - a: 1084 + b: 1086 + - a: 1086 + b: 1087 + - a: 1087 + b: 1085 + - a: 2494 + b: 2493 + - a: 2493 + b: 2492 + - a: 1139 + b: 1140 + - a: 1142 + b: 1139 + - a: 1128 + b: 1129 + - a: 1129 + b: 1130 + - a: 1119 + b: 1120 + - a: 1120 + b: 1128 + - a: 1130 + b: 1126 + - a: 1118 + b: 1119 + - a: 1126 + b: 1124 + - a: 1117 + b: 1118 + - a: 1124 + b: 1122 + - a: 1116 + b: 1117 + - a: 1122 + b: 1138 + - a: 1115 + b: 1116 + - a: 1138 + b: 1136 + - a: 1114 + b: 1115 + - a: 1136 + b: 1134 + - a: 1113 + b: 1114 + - a: 1134 + b: 1132 + - a: 1112 + b: 1113 + - a: 1132 + b: 1103 + - a: 1095 + b: 1112 + - a: 1103 + b: 1101 + - a: 1094 + b: 1095 + - a: 1101 + b: 1099 + - a: 1093 + b: 1094 + - a: 1099 + b: 1097 + - a: 1092 + b: 1093 + - a: 1097 + b: 1111 + - a: 1091 + b: 1092 + - a: 1111 + b: 1109 + - a: 1090 + b: 1091 + - a: 1109 + b: 1107 + - a: 1089 + b: 1090 + - a: 1107 + b: 1105 + - a: 1088 + b: 1089 + - a: 1105 + b: 1177 + - a: 1169 + b: 1088 + - a: 1177 + b: 1175 + - a: 1168 + b: 1169 + - a: 1175 + b: 1173 + - a: 1167 + b: 1168 + - a: 1173 + b: 1171 + - a: 1166 + b: 1167 + - a: 1171 + b: 1185 + - a: 1165 + b: 1166 + - a: 1185 + b: 1183 + - a: 1164 + b: 1165 + - a: 1183 + b: 1181 + - a: 1163 + b: 1164 + - a: 1181 + b: 1179 + - a: 1162 + b: 1163 + - a: 1179 + b: 1156 + - a: 1148 + b: 1162 + - a: 1156 + b: 1154 + - a: 1147 + b: 1148 + - a: 1154 + b: 1152 + - a: 1146 + b: 1147 + - a: 1152 + b: 1150 + - a: 1145 + b: 1146 + - a: 1150 + b: 1161 + - a: 1144 + b: 1145 + - a: 1161 + b: 1159 + - a: 1143 + b: 1144 + - a: 1159 + b: 1157 + - a: 1140 + b: 1143 + - a: 2492 + b: 1142 + - a: 1157 + b: 2494 + - a: 2680 + b: 2679 + - a: 2679 + b: 2678 + - a: 2678 + b: 2677 + - a: 2677 + b: 2676 + - a: 2676 + b: 2675 + - a: 2675 + b: 2674 + - a: 2674 + b: 2673 + - a: 2673 + b: 2672 + - a: 2688 + b: 2687 + - a: 2672 + b: 2671 + - a: 2689 + b: 2688 + - a: 2671 + b: 2670 + - a: 2690 + b: 2689 + - a: 2670 + b: 2669 + - a: 2691 + b: 2690 + - a: 2669 + b: 2668 + - a: 2692 + b: 2691 + - a: 2668 + b: 2667 + - a: 2693 + b: 2692 + - a: 2667 + b: 2666 + - a: 2694 + b: 2693 + - a: 2666 + b: 2665 + - a: 2695 + b: 2694 + - a: 2665 + b: 2664 + - a: 2696 + b: 2695 + - a: 2664 + b: 2663 + - a: 2697 + b: 2696 + - a: 2663 + b: 2662 + - a: 2698 + b: 2697 + - a: 2662 + b: 2661 + - a: 2699 + b: 2698 + - a: 2661 + b: 2660 + - a: 2700 + b: 2699 + - a: 2660 + b: 2659 + - a: 2701 + b: 2700 + - a: 2659 + b: 2658 + - a: 2702 + b: 2701 + - a: 2658 + b: 2657 + - a: 2703 + b: 2702 + - a: 2657 + b: 2656 + - a: 2704 + b: 2703 + - a: 2656 + b: 2655 + - a: 2705 + b: 2704 + - a: 2655 + b: 2654 + - a: 2706 + b: 2705 + - a: 2654 + b: 2653 + - a: 2707 + b: 2706 + - a: 2653 + b: 2652 + - a: 2708 + b: 2707 + - a: 2652 + b: 2651 + - a: 2709 + b: 2708 + - a: 2651 + b: 2650 + - a: 2710 + b: 2709 + - a: 2650 + b: 2649 + - a: 2711 + b: 2710 + - a: 2649 + b: 2648 + - a: 2712 + b: 2711 + - a: 2648 + b: 2647 + - a: 2647 + b: 2646 + - a: 2646 + b: 2712 + - a: 2687 + b: 2686 + - a: 2686 + b: 2685 + - a: 2685 + b: 2684 + - a: 2684 + b: 2683 + - a: 2683 + b: 2682 + - a: 2681 + b: 2680 + - a: 2682 + b: 2681 + m_SelectedVertices: 00040000fe030000ff030000010400000304000002040000050400000404000007040000060400000a0400000b04000008040000090400000e0400000f0400000c0400000d040000110400001004000013040000120400001504000014040000170400001604000019040000180400001b0400001a0400001d0400001c0400001f0400001e040000210400002004000023040000220400002504000024040000270400002604000029040000280400002b0400002a0400002d0400002c0400002f0400002e040000310400003004000033040000320400003504000034040000370400003604000039040000380400003b0400003a0400003d0400003c0400003f0400003e040000be090000bd090000bc0900007304000074040000760400007504000067040000680400006a040000690400005f0400006004000065040000660400005e04000063040000640400005d04000061040000620400005c04000071040000720400005b0400006f040000700400005a0400006d0400006e040000590400006b0400006c040000580400004e0400004f040000470400004c0400004d040000460400004a0400004b0400004504000048040000490400004404000056040000570400004304000054040000550400004204000052040000530400004104000050040000510400004004000098040000990400009104000096040000970400009004000094040000950400008f04000092040000930400008e040000a0040000a10400008d0400009e0400009f0400008c0400009c0400009d0400008b0400009a0400009b0400008a04000083040000840400007c04000081040000820400007b0400007f040000800400007a0400007d0400007e0400007904000088040000890400007804000086040000870400007704000085040000780a0000770a0000760a0000750a0000740a0000730a0000720a0000710a00007f0a0000700a0000800a00006f0a0000810a00006e0a0000820a00006d0a0000830a00006c0a0000840a00006b0a0000850a00006a0a0000860a0000690a0000870a0000680a0000880a0000670a0000890a0000660a00008a0a0000650a00008b0a0000640a00008c0a0000630a00008d0a0000620a00008e0a0000610a00008f0a0000600a0000900a00005f0a0000910a00005e0a0000920a00005d0a0000930a00005c0a0000940a00005b0a0000950a00005a0a0000960a0000590a0000970a0000580a0000980a0000570a0000560a00007e0a00007d0a00007c0a00007b0a00007a0a0000790a0000 +--- !u!23 &5567995395359841688 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5567995395359841693} + 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: 7475c0152fb3fbb48a312d226cc846bb, 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: 2 + 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!33 &5567995395359841691 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5567995395359841693} + m_Mesh: {fileID: 0} +--- !u!64 &5567995395359841690 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5567995395359841693} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 4 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 0} +--- !u!1 &5567995396293658447 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5567995396293658440} + - component: {fileID: 5567995396293658443} + - component: {fileID: 5567995396293658442} + - component: {fileID: 5567995396293658445} + - component: {fileID: 5567995396293658444} + m_Layer: 0 + m_Name: Cube (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 8 + m_IsActive: 1 +--- !u!4 &5567995396293658440 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5567995396293658447} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 10.04, y: 1.0199997, z: -9.6} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 5567995395359841702} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &5567995396293658443 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5567995396293658447} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8233d90336aea43098adf6dbabd606a2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_MeshFormatVersion: 1 + m_Faces: + - m_Indexes: 000000000100000002000000010000000300000002000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 040000000500000006000000050000000700000006000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 08000000090000000a000000090000000b0000000a000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 0c0000000d0000000e0000000d0000000f0000000e000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 170000001000000011000000110000001600000017000000120000001600000011000000120000001500000016000000150000001200000014000000120000001300000014000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 1 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 1f00000018000000190000001f000000190000001e0000001e000000190000001a0000001d0000001e0000001a0000001c0000001d0000001a0000001a0000001b0000001c000000 + m_SmoothingGroup: 0 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 220000002100000020000000220000002300000021000000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 260000002500000024000000260000002700000025000000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 2d000000280000002c0000002c0000002800000029000000290000002a0000002c0000002a0000002b0000002c000000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 300000002f0000002e00000030000000310000002f000000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 320000003300000036000000360000003300000034000000350000003600000034000000370000003200000036000000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 3a00000039000000380000003a0000003b00000039000000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 3f000000400000003c0000003c00000040000000410000003c0000003d0000003f0000003d0000003e0000003f000000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + - m_Indexes: 460000004700000042000000460000004200000043000000440000004500000043000000430000004500000046000000 + m_SmoothingGroup: -1 + m_Uv: + m_UseWorldSpace: 0 + m_FlipU: 0 + m_FlipV: 0 + m_SwapUV: 0 + m_Fill: 1 + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Rotation: 0 + m_Anchor: 9 + m_Material: {fileID: 0} + m_SubmeshIndex: 0 + m_ManualUV: 0 + elementGroup: -1 + m_TextureGroup: -1 + m_SharedVertices: + - m_Vertices: 000000001e00000028000000 + - m_Vertices: 010000001d00000044000000 + - m_Vertices: 020000002100000029000000 + - m_Vertices: 030000002000000043000000 + - m_Vertices: 040000001c00000045000000 + - m_Vertices: 050000001b00000040000000 + - m_Vertices: 060000003900000046000000 + - m_Vertices: 07000000380000003f000000 + - m_Vertices: 080000001a00000041000000 + - m_Vertices: 090000001900000034000000 + - m_Vertices: 0a0000002f0000003c000000 + - m_Vertices: 0b0000002e00000033000000 + - m_Vertices: 0c0000001800000035000000 + - m_Vertices: 0d0000001f0000002d000000 + - m_Vertices: 0e0000002500000036000000 + - m_Vertices: 0f000000240000002c000000 + - m_Vertices: 100000003a0000003e000000 + - m_Vertices: 11000000310000003d000000 + - m_Vertices: 120000003000000032000000 + - m_Vertices: 130000002700000037000000 + - m_Vertices: 14000000260000002b000000 + - m_Vertices: 15000000230000002a000000 + - m_Vertices: 160000002200000042000000 + - m_Vertices: 170000003b00000047000000 + m_SharedTextures: [] + m_Positions: + - {x: -5.1062, y: 0, z: -0.0000009536743} + - {x: 8.827619, y: 0, z: -0.0000009536743} + - {x: -0.5282267, y: 13.773976, z: -0.0000065979475} + - {x: 5.0320997, y: 13.770957, z: -0.0000065967106} + - {x: 9.027618, y: 0, z: -0.20000096} + - {x: 9.027618, y: 0, z: -4.800001} + - {x: 5.2007036, y: 13.884868, z: -0.20000665} + - {x: 5.2007036, y: 13.884868, z: -4.800009} + - {x: 8.827619, y: 0, z: -5.000001} + - {x: -5.1062007, y: 0, z: -5.0000005} + - {x: 5.0320997, y: 13.770957, z: -5.0000086} + - {x: -0.52822715, y: 13.773976, z: -5.0000076} + - {x: -5.3062005, y: 0, z: -4.8000007} + - {x: -5.3062, y: 0, z: -0.20000096} + - {x: -0.69096035, y: 13.886103, z: -4.800008} + - {x: -0.6909599, y: 13.886103, z: -0.20000665} + - {x: 5.121086, y: 13.963768, z: -4.85788} + - {x: 5.120379, y: 13.963768, z: -4.8585873} + - {x: -0.6065686, y: 13.963768, z: -4.8585863} + - {x: -0.60727566, y: 13.963768, z: -4.857879} + - {x: -0.6072752, y: 13.963768, z: -0.14213514} + - {x: -0.6065681, y: 13.963768, z: -0.14142804} + - {x: 5.120379, y: 13.963768, z: -0.1414281} + - {x: 5.121086, y: 13.963768, z: -0.14213525} + - {x: -5.3062005, y: 0, z: -4.8000007} + - {x: -5.1062007, y: 0, z: -5.0000005} + - {x: 8.827619, y: 0, z: -5.000001} + - {x: 9.027618, y: 0, z: -4.800001} + - {x: 9.027618, y: 0, z: -0.20000096} + - {x: 8.827619, y: 0, z: -0.0000009536743} + - {x: -5.1062, y: 0, z: -0.0000009536743} + - {x: -5.3062, y: 0, z: -0.20000096} + - {x: 5.0320997, y: 13.770957, z: -0.0000065967106} + - {x: -0.5282267, y: 13.773976, z: -0.0000065979475} + - {x: 5.120379, y: 13.963768, z: -0.1414281} + - {x: -0.6065681, y: 13.963768, z: -0.14142804} + - {x: -0.6909599, y: 13.886103, z: -0.20000665} + - {x: -0.69096035, y: 13.886103, z: -4.800008} + - {x: -0.6072752, y: 13.963768, z: -0.14213514} + - {x: -0.60727566, y: 13.963768, z: -4.857879} + - {x: -5.1062, y: 0, z: -0.0000009536743} + - {x: -0.5282267, y: 13.773976, z: -0.0000065979475} + - {x: -0.6065681, y: 13.963768, z: -0.14142804} + - {x: -0.6072752, y: 13.963768, z: -0.14213514} + - {x: -0.6909599, y: 13.886103, z: -0.20000665} + - {x: -5.3062, y: 0, z: -0.20000096} + - {x: -0.52822715, y: 13.773976, z: -5.0000076} + - {x: 5.0320997, y: 13.770957, z: -5.0000086} + - {x: -0.6065686, y: 13.963768, z: -4.8585863} + - {x: 5.120379, y: 13.963768, z: -4.8585873} + - {x: -0.6065686, y: 13.963768, z: -4.8585863} + - {x: -0.52822715, y: 13.773976, z: -5.0000076} + - {x: -5.1062007, y: 0, z: -5.0000005} + - {x: -5.3062005, y: 0, z: -4.8000007} + - {x: -0.69096035, y: 13.886103, z: -4.800008} + - {x: -0.60727566, y: 13.963768, z: -4.857879} + - {x: 5.2007036, y: 13.884868, z: -4.800009} + - {x: 5.2007036, y: 13.884868, z: -0.20000665} + - {x: 5.121086, y: 13.963768, z: -4.85788} + - {x: 5.121086, y: 13.963768, z: -0.14213525} + - {x: 5.0320997, y: 13.770957, z: -5.0000086} + - {x: 5.120379, y: 13.963768, z: -4.8585873} + - {x: 5.121086, y: 13.963768, z: -4.85788} + - {x: 5.2007036, y: 13.884868, z: -4.800009} + - {x: 9.027618, y: 0, z: -4.800001} + - {x: 8.827619, y: 0, z: -5.000001} + - {x: 5.120379, y: 13.963768, z: -0.1414281} + - {x: 5.0320997, y: 13.770957, z: -0.0000065967106} + - {x: 8.827619, y: 0, z: -0.0000009536743} + - {x: 9.027618, y: 0, z: -0.20000096} + - {x: 5.2007036, y: 13.884868, z: -0.20000665} + - {x: 5.121086, y: 13.963768, z: -0.14213525} + m_Textures0: + - {x: 5.1062, y: 3.9079485e-13} + - {x: -8.827619, y: 3.9079485e-13} + - {x: 0.5282267, y: 13.773976} + - {x: -5.0320997, y: 13.770957} + - {x: -0.20000096, y: -2.3987286} + - {x: -4.800001, y: -2.3987286} + - {x: -0.20000665, y: 12.00387} + - {x: -4.800009, y: 12.00387} + - {x: 8.827619, y: 0.0000027776985} + - {x: -5.1062007, y: 0.0000027776985} + - {x: 5.0320997, y: 13.77096} + - {x: -0.528227, y: 13.773979} + - {x: 4.800001, y: -1.6735741} + - {x: 0.20000146, y: -1.6735741} + - {x: 4.800008, y: 12.959413} + - {x: 0.20000671, y: 12.959413} + - {x: 5.121086, y: -4.85788} + - {x: 5.120379, y: -4.8585873} + - {x: -0.6065686, y: -4.8585863} + - {x: -0.60727566, y: -4.857879} + - {x: -0.6072752, y: -0.14213514} + - {x: -0.6065681, y: -0.14142804} + - {x: 5.120379, y: -0.1414281} + - {x: 5.121086, y: -0.14213525} + - {x: 5.3062005, y: -4.8000007} + - {x: 5.1062007, y: -5.0000005} + - {x: -8.827619, y: -5.000001} + - {x: -9.027618, y: -4.800001} + - {x: -9.027618, y: -0.20000096} + - {x: -8.827619, y: -0.0000009536743} + - {x: 5.1062, y: -0.0000009536743} + - {x: 5.3062, y: -0.20000096} + - {x: -5.0320992, y: 11.104018} + - {x: 0.5282266, y: 11.107762} + - {x: -5.1204348, y: 11.343113} + - {x: 0.6065118, y: 11.344461} + - {x: 8.939622, y: -0.2000074} + - {x: 8.939622, y: -4.800009} + - {x: 9.053793, y: -0.14213589} + - {x: 9.053793, y: -4.85788} + - {x: 3.6108077, y: -0.825974} + - {x: 0.37353578, y: 13.323242} + - {x: 0.52892935, y: 13.518207} + - {x: 0.52992934, y: 13.518207} + - {x: 0.6300256, y: 13.438427} + - {x: 3.8936503, y: -0.82597077} + - {x: -0.53024983, y: 8.056191} + - {x: 5.0300765, y: 8.052425} + - {x: -0.60853404, y: 8.292897} + - {x: 5.118413, y: 8.2915125} + - {x: 3.0066285, y: 12.709292} + - {x: 3.1620243, y: 12.51433} + - {x: -0.07509881, y: -1.6349214} + - {x: -0.35794127, y: -1.6349214} + - {x: 2.9055333, y: 12.629511} + - {x: 3.0056286, y: 12.709292} + - {x: -6.079513, y: -4.800009} + - {x: -6.079513, y: -0.20000665} + - {x: -6.191603, y: -4.85788} + - {x: -6.191603, y: -0.14213525} + - {x: 0.02295377, y: 12.159738} + - {x: 0.18537521, y: 12.356177} + - {x: 0.18637526, y: 12.356177} + - {x: 0.28359511, y: 12.275794} + - {x: 2.9897377, y: -1.8702877} + - {x: 2.7068954, y: -1.8702897} + - {x: -3.72071, y: 13.0324545} + - {x: -3.5582876, y: 12.836015} + - {x: -6.2421594, y: -1.1940264} + - {x: -6.525002, y: -1.1940255} + - {x: -3.8189297, y: 12.952069} + - {x: -3.7217102, y: 13.0324545} + m_Textures2: [] + m_Textures3: [] + m_Tangents: + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 3.0904722e-14, w: -1} + - {x: -1, y: 0, z: 3.0904722e-14, w: -1} + - {x: -1, y: 0, z: 6.1809444e-14, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 0, y: 0, z: 1, w: -1} + - {x: 1, y: 0, z: -0.00000003422157, w: -1} + - {x: 1, y: 3.643822e-21, z: -0.00000010299331, w: -1} + - {x: 1, y: 3.643822e-21, z: -0.00000010299331, w: -1} + - {x: 1, y: 6.5681432e-21, z: -0.00000017176505, w: -1} + - {x: -0.000000103660255, y: 0, z: -1, w: -1} + - {x: -0.00000010366024, y: 0, z: -1, w: -1} + - {x: -0.00000010366024, y: 0, z: -1, w: -1} + - {x: -0.00000010366022, y: -2.24105e-15, z: -1, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: 1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -1, y: 0, z: 0, w: -1} + - {x: -0.99999994, y: -0.0000000014929428, z: 0.00039818743, w: -1} + - {x: -1, y: -0.0000944078, z: 0.00026944833, w: -1} + - {x: -1, y: -0.0000944078, z: 0.00026944833, w: -1} + - {x: -1, y: -0.00018881685, z: 0.00014070547, w: -1} + - {x: 0.7329763, y: 0.6802541, z: 0, w: -1} + - {x: 0.7329764, y: 0.6802541, z: -2.0757296e-15, w: -1} + - {x: 0.7329764, y: 0.6802541, z: -2.0757296e-15, w: -1} + - {x: 0.7329764, y: 0.6802541, z: -2.0499398e-15, w: -1} + - {x: -0.70710856, y: -0.000012106827, z: -0.707105, w: -1} + - {x: -0.70710903, y: -0.000013830948, z: -0.70710456, w: -1} + - {x: -0.7071042, y: -0.000007249403, z: -0.70710933, w: -1} + - {x: -0.7070994, y: 0.0000000068186625, z: -0.7071143, w: -1} + - {x: -0.7071064, y: -0.000009688343, z: -0.7071072, w: -1} + - {x: -0.7071083, y: -0.000011084653, z: -0.7071053, w: -1} + - {x: 0.99999994, y: 0.00000005569147, z: 0.00040458163, w: -1} + - {x: 1, y: 0.000097514414, z: 0.0002737138, w: -1} + - {x: 1, y: 0.000097514414, z: 0.0002737138, w: -1} + - {x: 1, y: 0.00019497566, z: 0.00014284252, w: -1} + - {x: 0.707092, y: -0.00000070155926, z: -0.70712155, w: -1} + - {x: 0.7071069, y: -0.0000011858118, z: -0.70710677, w: -1} + - {x: 0.7071068, y: -0.0000004910407, z: -0.7071068, w: -1} + - {x: 0.70710677, y: 0, z: -0.70710677, w: -1} + - {x: 0.7070993, y: -0.0000005758464, z: -0.7071142, w: -1} + - {x: 0.707077, y: -0.0000000068192016, z: -0.70713663, w: -1} + - {x: 0.7102986, y: -0.7039005, z: 0, w: -1} + - {x: 0.7102986, y: -0.7039005, z: 0, w: -1} + - {x: 0.7102986, y: -0.7039005, z: 0, w: -1} + - {x: 0.71029854, y: -0.7039005, z: 0, w: -1} + - {x: 0.7071078, y: -0.000009307955, z: 0.70710576, w: -1} + - {x: 0.70710737, y: -0.0000058285664, z: 0.7071063, w: -1} + - {x: 0.70710677, y: 0, z: 0.70710677, w: -1} + - {x: 0.7071075, y: -0.0000071092, z: 0.7071061, w: -1} + - {x: 0.7071078, y: -0.000008139027, z: 0.7071059, w: -1} + - {x: 0.7071077, y: -0.0000066246726, z: 0.7071059, w: -1} + - {x: -0.70710635, y: 0.00000012750849, z: 0.7071072, w: -1} + - {x: -0.7071064, y: 0.0000019445356, z: 0.70710707, w: -1} + - {x: -0.7071069, y: 0.0000028900974, z: 0.70710677, w: -1} + - {x: -0.7071067, y: 0.000002766498, z: 0.7071068, w: -1} + - {x: -0.7071065, y: 0.0000009793041, z: 0.70710707, w: -1} + - {x: -0.7071068, y: 0, z: 0.7071068, w: -1} + m_Colors: [] + m_UnwrapParameters: + m_HardAngle: 88 + m_PackMargin: 20 + m_AngleError: 8 + m_AreaError: 15 + m_PreserveMeshAssetOnDestroy: 0 + assetGuid: + m_Mesh: {fileID: 0} + m_IsSelectable: 1 + m_SelectedFaces: + m_SelectedEdges: [] + m_SelectedVertices: +--- !u!23 &5567995396293658442 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5567995396293658447} + 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: 7475c0152fb3fbb48a312d226cc846bb, 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: 2 + 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!33 &5567995396293658445 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5567995396293658447} + m_Mesh: {fileID: 0} +--- !u!64 &5567995396293658444 +MeshCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5567995396293658447} + m_Material: {fileID: 0} + m_IsTrigger: 0 + m_Enabled: 1 + serializedVersion: 4 + m_Convex: 0 + m_CookingOptions: 30 + m_Mesh: {fileID: 0} +--- !u!1001 &5567995395052547464 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5567995395359841702} + m_Modifications: + - target: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_LocalPosition.x + value: 12.39 + objectReference: {fileID: 0} + - target: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_LocalPosition.y + value: 14.9837675 + objectReference: {fileID: 0} + - target: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_LocalPosition.z + value: -12.110001 + objectReference: {fileID: 0} + - target: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8314568732944286798, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_Name + value: JumpPad + objectReference: {fileID: 0} + - target: {fileID: 8314568732944286798, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + propertyPath: m_StaticEditorFlags + value: 8 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} +--- !u!4 &8280618446719454950 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4589120558693393262, guid: 6cc9dec85776f842fb3d7560482e765a, type: 3} + m_PrefabInstance: {fileID: 5567995395052547464} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Tower.prefab.meta b/Assets/Tower.prefab.meta new file mode 100644 index 0000000..85275ba --- /dev/null +++ b/Assets/Tower.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 0294d2c472afa8a33888e39123272af6 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/crosshair.png b/Assets/crosshair.png new file mode 100644 index 0000000..f98d14c --- /dev/null +++ b/Assets/crosshair.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74824b6f665f6964c225462533518d9fecf39f8a79ab63664907f271da2d9161 +size 602 diff --git a/Assets/crosshair.png.meta b/Assets/crosshair.png.meta new file mode 100644 index 0000000..8c1eafb --- /dev/null +++ b/Assets/crosshair.png.meta @@ -0,0 +1,108 @@ +fileFormatVersion: 2 +guid: bdaf546d61524a61190682323e10a4e7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + 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: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: -1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + 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: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + 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: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/skybox.meta b/Assets/skybox.meta new file mode 100644 index 0000000..624d131 --- /dev/null +++ b/Assets/skybox.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2141380d597dc0ee38ed20c339277b47 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/skybox/skyboxv1_usa_far.mat b/Assets/skybox/skyboxv1_usa_far.mat new file mode 100644 index 0000000..ce703bb --- /dev/null +++ b/Assets/skybox/skyboxv1_usa_far.mat @@ -0,0 +1,56 @@ +%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: skyboxv1_usa_far + m_Shader: {fileID: 104, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BackTex: + m_Texture: {fileID: 2800000, guid: 9a897092db778004aa92750e42189bc6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DownTex: + m_Texture: {fileID: 2800000, guid: 30ea30490dc5d4e4fa91b1249fdfa425, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _FrontTex: + m_Texture: {fileID: 2800000, guid: fdc4bb24e99d5dd4a9f55c4f040e1ad6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LeftTex: + m_Texture: {fileID: 2800000, guid: b56632c7c8fd3b847b45240b062ff1a8, type: 3} + 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} + - _RightTex: + m_Texture: {fileID: 2800000, guid: 50ef5c21788d1cb4bb7b5f2fadbb47d1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _UpTex: + m_Texture: {fileID: 2800000, guid: 2460972a1fbd2b14782125f9fc968380, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _Exposure: 1 + - _Rotation: 243.09329 + m_Colors: + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _Tint: {r: 0.5, g: 0.5, b: 0.5, a: 0.5} + m_BuildTextureStacks: [] diff --git a/Assets/skybox/skyboxv1_usa_far.mat.meta b/Assets/skybox/skyboxv1_usa_far.mat.meta new file mode 100644 index 0000000..99815fb --- /dev/null +++ b/Assets/skybox/skyboxv1_usa_far.mat.meta @@ -0,0 +1,4 @@ +fileFormatVersion: 2 +guid: cd490d4feb37a9f40b6e853477c2c2eb +NativeFormatImporter: + userData: diff --git a/Assets/skybox/textures.meta b/Assets/skybox/textures.meta new file mode 100644 index 0000000..de0b270 --- /dev/null +++ b/Assets/skybox/textures.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: 646741e8389ff4d47a3391f3ae0522a1 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/skybox/textures/skyboxv1_usa_far.meta b/Assets/skybox/textures/skyboxv1_usa_far.meta new file mode 100644 index 0000000..0360f65 --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far.meta @@ -0,0 +1,5 @@ +fileFormatVersion: 2 +guid: a7c26191b4bbdd1438409712ad07e112 +folderAsset: yes +DefaultImporter: + userData: diff --git a/Assets/skybox/textures/skyboxv1_usa_far/earth000001.png b/Assets/skybox/textures/skyboxv1_usa_far/earth000001.png new file mode 100644 index 0000000..02a68fc --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000001.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4ca16bc159fa9a95bda4b8d70501436f62538800d21cbf6ec4b8d7a131f0f3 +size 4804134 diff --git a/Assets/skybox/textures/skyboxv1_usa_far/earth000001.png.meta b/Assets/skybox/textures/skyboxv1_usa_far/earth000001.png.meta new file mode 100644 index 0000000..43df245 --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000001.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: fdc4bb24e99d5dd4a9f55c4f040e1ad6 +timeCreated: 1451778115 +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: 3 + maxTextureSize: 2048 + textureSettings: + filterMode: 2 + aniso: 4 + 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/skybox/textures/skyboxv1_usa_far/earth000002.png b/Assets/skybox/textures/skyboxv1_usa_far/earth000002.png new file mode 100644 index 0000000..57b8ab7 --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000002.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:720e569d8902e684b30c5d3de3601620d12c924a9c9e9e72078d64c53ca33e2f +size 1678193 diff --git a/Assets/skybox/textures/skyboxv1_usa_far/earth000002.png.meta b/Assets/skybox/textures/skyboxv1_usa_far/earth000002.png.meta new file mode 100644 index 0000000..b57273c --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000002.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: b56632c7c8fd3b847b45240b062ff1a8 +timeCreated: 1451778117 +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: 3 + maxTextureSize: 2048 + textureSettings: + filterMode: 2 + aniso: 4 + 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/skybox/textures/skyboxv1_usa_far/earth000003.png b/Assets/skybox/textures/skyboxv1_usa_far/earth000003.png new file mode 100644 index 0000000..b2e856a --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000003.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15dad98115181553c89fed00f369357dc8278f2c08069b88397664c9fcc0552f +size 316164 diff --git a/Assets/skybox/textures/skyboxv1_usa_far/earth000003.png.meta b/Assets/skybox/textures/skyboxv1_usa_far/earth000003.png.meta new file mode 100644 index 0000000..ba4d161 --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000003.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 9a897092db778004aa92750e42189bc6 +timeCreated: 1451778116 +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: 3 + maxTextureSize: 2048 + textureSettings: + filterMode: 2 + aniso: 4 + 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/skybox/textures/skyboxv1_usa_far/earth000004.png b/Assets/skybox/textures/skyboxv1_usa_far/earth000004.png new file mode 100644 index 0000000..1f82247 --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000004.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e499fd25f87662a85bf49fbae86f39f76e55b7d9c4a433f1bc19bdaf2d68b68 +size 2635452 diff --git a/Assets/skybox/textures/skyboxv1_usa_far/earth000004.png.meta b/Assets/skybox/textures/skyboxv1_usa_far/earth000004.png.meta new file mode 100644 index 0000000..451a9af --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000004.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 50ef5c21788d1cb4bb7b5f2fadbb47d1 +timeCreated: 1451778118 +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: 3 + maxTextureSize: 2048 + textureSettings: + filterMode: 2 + aniso: 4 + 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/skybox/textures/skyboxv1_usa_far/earth000005.png b/Assets/skybox/textures/skyboxv1_usa_far/earth000005.png new file mode 100644 index 0000000..ddc2eeb --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000005.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dd9d826ed817ff5e6409b55309e742eb9e147805b6663eddc85ddcaec61ee7c +size 4038627 diff --git a/Assets/skybox/textures/skyboxv1_usa_far/earth000005.png.meta b/Assets/skybox/textures/skyboxv1_usa_far/earth000005.png.meta new file mode 100644 index 0000000..9a65952 --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000005.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 30ea30490dc5d4e4fa91b1249fdfa425 +timeCreated: 1451778121 +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: 3 + maxTextureSize: 2048 + textureSettings: + filterMode: 2 + aniso: 4 + 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/skybox/textures/skyboxv1_usa_far/earth000006.png b/Assets/skybox/textures/skyboxv1_usa_far/earth000006.png new file mode 100644 index 0000000..3e97b2e --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000006.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:527ba7b2a75196fd0575736db3d8d714d4230b7a80dc3608e2bbc3dcf09b9ca1 +size 373053 diff --git a/Assets/skybox/textures/skyboxv1_usa_far/earth000006.png.meta b/Assets/skybox/textures/skyboxv1_usa_far/earth000006.png.meta new file mode 100644 index 0000000..f14d34f --- /dev/null +++ b/Assets/skybox/textures/skyboxv1_usa_far/earth000006.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 2460972a1fbd2b14782125f9fc968380 +timeCreated: 1451778119 +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: 3 + maxTextureSize: 2048 + textureSettings: + filterMode: 2 + aniso: 4 + 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/Packages/manifest.json b/Packages/manifest.json new file mode 100644 index 0000000..434108d --- /dev/null +++ b/Packages/manifest.json @@ -0,0 +1,46 @@ +{ + "dependencies": { + "com.unity.collab-proxy": "1.3.9", + "com.unity.ide.rider": "2.0.7", + "com.unity.ide.visualstudio": "2.0.7", + "com.unity.ide.vscode": "1.2.3", + "com.unity.inputsystem": "1.0.2", + "com.unity.probuilder": "4.5.0", + "com.unity.test-framework": "1.1.22", + "com.unity.textmeshpro": "3.0.1", + "com.unity.timeline": "1.4.6", + "com.unity.toolchain.linux-x86_64": "0.1.18-preview", + "com.unity.ugui": "1.0.0", + "com.unity.modules.ai": "1.0.0", + "com.unity.modules.androidjni": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.cloth": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.physics2d": "1.0.0", + "com.unity.modules.screencapture": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.terrainphysics": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.umbra": "1.0.0", + "com.unity.modules.unityanalytics": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.unitywebrequesttexture": "1.0.0", + "com.unity.modules.unitywebrequestwww": "1.0.0", + "com.unity.modules.vehicles": "1.0.0", + "com.unity.modules.video": "1.0.0", + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.wind": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } +} diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json new file mode 100644 index 0000000..e46203c --- /dev/null +++ b/Packages/packages-lock.json @@ -0,0 +1,387 @@ +{ + "dependencies": { + "com.unity.collab-proxy": { + "version": "1.3.9", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ext.nunit": { + "version": "1.0.6", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ide.rider": { + "version": "2.0.7", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.1" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.visualstudio": { + "version": "2.0.7", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.9" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.vscode": { + "version": "1.2.3", + "depth": 0, + "source": "registry", + "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.probuilder": { + "version": "4.5.0", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.settings-manager": "1.0.3" + }, + "url": "https://packages.unity.com" + }, + "com.unity.settings-manager": { + "version": "1.0.3", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.sysroot": { + "version": "0.1.19-preview", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.sysroot.linux-x86_64": { + "version": "0.1.14-preview", + "depth": 1, + "source": "registry", + "dependencies": { + "com.unity.sysroot": "0.1.18-preview" + }, + "url": "https://packages.unity.com" + }, + "com.unity.test-framework": { + "version": "1.1.22", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.textmeshpro": { + "version": "3.0.1", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.timeline": { + "version": "1.4.6", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.director": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.toolchain.linux-x86_64": { + "version": "0.1.18-preview", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.sysroot": "0.1.19-preview", + "com.unity.sysroot.linux-x86_64": "0.1.14-preview" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ugui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0" + } + }, + "com.unity.modules.ai": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.androidjni": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.animation": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.assetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.audio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.cloth": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.director": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.animation": "1.0.0" + } + }, + "com.unity.modules.imageconversion": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imgui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.jsonserialize": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.particlesystem": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics2d": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.screencapture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.subsystems": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.terrain": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.terrainphysics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.modules.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics2d": "1.0.0" + } + }, + "com.unity.modules.ui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.uielements": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.uielementsnative": "1.0.0" + } + }, + "com.unity.modules.uielementsnative": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.umbra": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unityanalytics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.unitywebrequest": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unitywebrequestassetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestaudio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.audio": "1.0.0" + } + }, + "com.unity.modules.unitywebrequesttexture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestwww": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.vehicles": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.video": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.vr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } + }, + "com.unity.modules.wind": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.xr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.subsystems": "1.0.0" + } + } + } +} diff --git a/ProjectSettings/AudioManager.asset b/ProjectSettings/AudioManager.asset new file mode 100644 index 0000000..07ebfb0 --- /dev/null +++ b/ProjectSettings/AudioManager.asset @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!11 &1 +AudioManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Volume: 1 + Rolloff Scale: 1 + Doppler Factor: 1 + Default Speaker Mode: 2 + m_SampleRate: 0 + m_DSPBufferSize: 1024 + m_VirtualVoiceCount: 512 + m_RealVoiceCount: 32 + m_SpatializerPlugin: + m_AmbisonicDecoderPlugin: + m_DisableAudio: 0 + m_VirtualizeEffects: 1 + m_RequestedDSPBufferSize: 1024 diff --git a/ProjectSettings/ClusterInputManager.asset b/ProjectSettings/ClusterInputManager.asset new file mode 100644 index 0000000..e7886b2 --- /dev/null +++ b/ProjectSettings/ClusterInputManager.asset @@ -0,0 +1,6 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!236 &1 +ClusterInputManager: + m_ObjectHideFlags: 0 + m_Inputs: [] diff --git a/ProjectSettings/DynamicsManager.asset b/ProjectSettings/DynamicsManager.asset new file mode 100644 index 0000000..cdc1f3e --- /dev/null +++ b/ProjectSettings/DynamicsManager.asset @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!55 &1 +PhysicsManager: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_Gravity: {x: 0, y: -9.81, z: 0} + m_DefaultMaterial: {fileID: 0} + m_BounceThreshold: 2 + m_SleepThreshold: 0.005 + m_DefaultContactOffset: 0.01 + m_DefaultSolverIterations: 6 + m_DefaultSolverVelocityIterations: 1 + m_QueriesHitBackfaces: 0 + m_QueriesHitTriggers: 1 + m_EnableAdaptiveForce: 0 + m_ClothInterCollisionDistance: 0 + m_ClothInterCollisionStiffness: 0 + m_ContactsGeneration: 1 + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + m_AutoSimulation: 1 + m_AutoSyncTransforms: 0 + m_ReuseCollisionCallbacks: 1 + m_ClothInterCollisionSettingsToggle: 0 + m_ContactPairsMode: 0 + m_BroadphaseType: 0 + m_WorldBounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 250, y: 250, z: 250} + m_WorldSubdivisions: 8 + m_FrictionType: 0 + m_EnableEnhancedDeterminism: 0 + m_EnableUnifiedHeightmaps: 1 + m_DefaultMaxAngluarSpeed: 7 diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset new file mode 100644 index 0000000..0147887 --- /dev/null +++ b/ProjectSettings/EditorBuildSettings.asset @@ -0,0 +1,8 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1045 &1 +EditorBuildSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Scenes: [] + m_configObjects: {} diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset new file mode 100644 index 0000000..de5d0b2 --- /dev/null +++ b/ProjectSettings/EditorSettings.asset @@ -0,0 +1,30 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!159 &1 +EditorSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_ExternalVersionControlSupport: Visible Meta Files + m_SerializationMode: 2 + m_LineEndingsForNewScripts: 0 + m_DefaultBehaviorMode: 0 + m_PrefabRegularEnvironment: {fileID: 0} + m_PrefabUIEnvironment: {fileID: 0} + m_SpritePackerMode: 0 + m_SpritePackerPaddingPower: 1 + m_EtcTextureCompressorBehavior: 1 + m_EtcTextureFastCompressor: 1 + m_EtcTextureNormalCompressor: 2 + m_EtcTextureBestCompressor: 4 + m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref + m_ProjectGenerationRootNamespace: + m_CollabEditorSettings: + inProgressEnabled: 1 + m_EnableTextureStreamingInEditMode: 1 + m_EnableTextureStreamingInPlayMode: 1 + m_AsyncShaderCompilation: 1 + m_EnterPlayModeOptionsEnabled: 0 + m_EnterPlayModeOptions: 3 + m_ShowLightmapResolutionOverlay: 1 + m_UseLegacyProbeSampleCount: 0 + m_SerializeInlineMappingsOnOneLine: 1 \ No newline at end of file diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset new file mode 100644 index 0000000..88dfcc8 --- /dev/null +++ b/ProjectSettings/GraphicsSettings.asset @@ -0,0 +1,63 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!30 &1 +GraphicsSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_Deferred: + m_Mode: 1 + m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} + m_DeferredReflections: + m_Mode: 1 + m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} + m_ScreenSpaceShadows: + m_Mode: 1 + m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} + m_LegacyDeferred: + m_Mode: 1 + m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} + m_DepthNormals: + m_Mode: 1 + m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} + m_MotionVectors: + m_Mode: 1 + m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} + m_LightHalo: + m_Mode: 1 + m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} + m_LensFlare: + m_Mode: 1 + m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} + m_VideoShadersIncludeMode: 2 + m_AlwaysIncludedShaders: + - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} + m_PreloadedShaders: [] + m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_CustomRenderPipeline: {fileID: 0} + m_TransparencySortMode: 0 + m_TransparencySortAxis: {x: 0, y: 0, z: 1} + m_DefaultRenderingPath: 1 + m_DefaultMobileRenderingPath: 1 + m_TierSettings: [] + m_LightmapStripping: 0 + m_FogStripping: 0 + m_InstancingStripping: 0 + m_LightmapKeepPlain: 1 + m_LightmapKeepDirCombined: 1 + m_LightmapKeepDynamicPlain: 1 + m_LightmapKeepDynamicDirCombined: 1 + m_LightmapKeepShadowMask: 1 + m_LightmapKeepSubtractive: 1 + m_FogKeepLinear: 1 + m_FogKeepExp: 1 + m_FogKeepExp2: 1 + m_AlbedoSwatchInfos: [] + m_LightsUseLinearIntensity: 0 + m_LightsUseColorTemperature: 0 + m_DefaultRenderingLayerMask: 1 + m_LogWhenShaderIsCompiled: 0 diff --git a/ProjectSettings/InputManager.asset b/ProjectSettings/InputManager.asset new file mode 100644 index 0000000..17c8f53 --- /dev/null +++ b/ProjectSettings/InputManager.asset @@ -0,0 +1,295 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!13 &1 +InputManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Axes: + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: a + altPositiveButton: d + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: s + altPositiveButton: w + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: mouse 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: mouse 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: mouse 2 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: space + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse X + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse Y + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse ScrollWheel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 2 + joyNum: 0 + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 0 + type: 2 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 1 + type: 2 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 0 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 1 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 2 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 3 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: enter + altNegativeButton: + altPositiveButton: space + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Cancel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: escape + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 diff --git a/ProjectSettings/NavMeshAreas.asset b/ProjectSettings/NavMeshAreas.asset new file mode 100644 index 0000000..3b0b7c3 --- /dev/null +++ b/ProjectSettings/NavMeshAreas.asset @@ -0,0 +1,91 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!126 &1 +NavMeshProjectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + areas: + - name: Walkable + cost: 1 + - name: Not Walkable + cost: 1 + - name: Jump + cost: 2 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + m_LastAgentTypeID: -887442657 + m_Settings: + - serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.75 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_SettingNames: + - Humanoid diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset new file mode 100644 index 0000000..be4a797 --- /dev/null +++ b/ProjectSettings/PackageManagerSettings.asset @@ -0,0 +1,43 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_EnablePreviewPackages: 0 + m_EnablePackageDependencies: 0 + m_AdvancedSettingsExpanded: 1 + m_ScopedRegistriesSettingsExpanded: 1 + oneTimeWarningShown: 0 + m_Registries: + - m_Id: main + m_Name: + m_Url: https://packages.unity.com + m_Scopes: [] + m_IsDefault: 1 + m_Capabilities: 7 + m_UserSelectedRegistryName: + m_UserAddingNewScopedRegistry: 0 + m_RegistryInfoDraft: + m_ErrorMessage: + m_Original: + m_Id: + m_Name: + m_Url: + m_Scopes: [] + m_IsDefault: 0 + m_Capabilities: 0 + m_Modified: 0 + m_Name: + m_Url: + m_Scopes: + - + m_SelectedScopeIndex: 0 diff --git a/ProjectSettings/Packages/com.unity.probuilder/Settings.json b/ProjectSettings/Packages/com.unity.probuilder/Settings.json new file mode 100644 index 0000000..c3cc742 --- /dev/null +++ b/ProjectSettings/Packages/com.unity.probuilder/Settings.json @@ -0,0 +1,173 @@ +{ + "m_Name": "Settings", + "m_Path": "ProjectSettings/Packages/com.unity.probuilder/Settings.json", + "m_Dictionary": { + "m_DictionaryValues": [ + { + "type": "UnityEngine.ProBuilder.LogLevel, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "log.level", + "value": "{\"m_Value\":3}" + }, + { + "type": "UnityEngine.ProBuilder.LogOutput, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "log.output", + "value": "{\"m_Value\":1}" + }, + { + "type": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "log.path", + "value": "{\"m_Value\":\"ProBuilderLog.txt\"}" + }, + { + "type": "UnityEngine.ProBuilder.SemVer, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "about.identifier", + "value": "{\"m_Value\":{\"m_Major\":4,\"m_Minor\":5,\"m_Patch\":0,\"m_Build\":-1,\"m_Type\":\"\",\"m_Metadata\":\"\",\"m_Date\":\"\"}}" + }, + { + "type": "UnityEngine.ProBuilder.SemVer, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "preferences.version", + "value": "{\"m_Value\":{\"m_Major\":4,\"m_Minor\":5,\"m_Patch\":0,\"m_Build\":-1,\"m_Type\":\"\",\"m_Metadata\":\"\",\"m_Date\":\"\"}}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "lightmapping.autoUnwrapLightmapUV", + "value": "{\"m_Value\":true}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "UnityEngine.ProBuilder.ProBuilderEditor-isUtilityWindow", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.backFaceSelectEnabled", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.toolbarIconGUI", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.showSceneInfo", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "mesh.newShapesSnapToGrid", + "value": "{\"m_Value\":true}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.autoRecalculateCollisions", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "mesh.meshColliderIsConvex", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.closeWindowAfterShapeCreation", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "SelectEdgeLoop.selectIterative", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.showEditorNotifications", + "value": "{\"m_Value\":false}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "FillHole.selectEntirePath", + "value": "{\"m_Value\":true}" + }, + { + "type": "System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "editor.extrudeEdgesAsGroup", + "value": "{\"m_Value\":true}" + }, + { + "type": "UnityEngine.ProBuilder.SelectionModifierBehavior, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "editor.rectSelectModifier", + "value": "{\"m_Value\":2}" + }, + { + "type": "UnityEngine.ProBuilder.RectSelectMode, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "editor.dragSelectRectMode", + "value": "{\"m_Value\":0}" + }, + { + "type": "UnityEngine.ProBuilder.SelectMode, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "editor.selectMode", + "value": "{\"m_Value\":1}" + }, + { + "type": "UnityEngine.ProBuilder.PivotLocation, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "mesh.newShapePivotLocation", + "value": "{\"m_Value\":1}" + }, + { + "type": "UnityEngine.Rendering.ShadowCastingMode, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "mesh.shadowCastingMode", + "value": "{\"m_Value\":1}" + }, + { + "type": "UnityEngine.Material, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "mesh.userMaterial", + "value": "{\"m_Value\":{\"instanceID\":0}}" + }, + { + "type": "UnityEditor.StaticEditorFlags, UnityEditor.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "mesh.defaultStaticEditorFlags", + "value": "{\"m_Value\":0}" + }, + { + "type": "UnityEngine.ProBuilder.ColliderType, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "mesh.newShapeColliderType", + "value": "{\"m_Value\":2}" + }, + { + "type": "UnityEngine.ProBuilder.UnwrapParameters, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "lightmapping.defaultLightmapUnwrapParameters", + "value": "{\"m_Value\":{\"m_HardAngle\":88.0,\"m_PackMargin\":20.0,\"m_AngleError\":8.0,\"m_AreaError\":15.0}}" + }, + { + "type": "System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "SubdivideEdges.subdivisions", + "value": "{\"m_Value\":1}" + }, + { + "type": "UnityEngine.ProBuilder.ExtrudeMethod, Unity.ProBuilder, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "editor.extrudeMethod", + "value": "{\"m_Value\":2}" + }, + { + "type": "System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "ExtrudeFaces.distance", + "value": "{\"m_Value\":0.5}" + }, + { + "type": "System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "BevelEdges.size", + "value": "{\"m_Value\":0.20000000298023225}" + }, + { + "type": "System.Single, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089", + "key": "ExtrudeEdges.distance", + "value": "{\"m_Value\":0.5}" + }, + { + "type": "UnityEditor.ProBuilder.Actions.DetachFaces+DetachSetting, Unity.ProBuilder.Editor, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", + "key": "DetachFaces.target", + "value": "{\"m_Value\":0}" + } + ] + } +} \ No newline at end of file diff --git a/ProjectSettings/Physics2DSettings.asset b/ProjectSettings/Physics2DSettings.asset new file mode 100644 index 0000000..47880b1 --- /dev/null +++ b/ProjectSettings/Physics2DSettings.asset @@ -0,0 +1,56 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!19 &1 +Physics2DSettings: + m_ObjectHideFlags: 0 + serializedVersion: 4 + m_Gravity: {x: 0, y: -9.81} + m_DefaultMaterial: {fileID: 0} + m_VelocityIterations: 8 + m_PositionIterations: 3 + m_VelocityThreshold: 1 + m_MaxLinearCorrection: 0.2 + m_MaxAngularCorrection: 8 + m_MaxTranslationSpeed: 100 + m_MaxRotationSpeed: 360 + m_BaumgarteScale: 0.2 + m_BaumgarteTimeOfImpactScale: 0.75 + m_TimeToSleep: 0.5 + m_LinearSleepTolerance: 0.01 + m_AngularSleepTolerance: 2 + m_DefaultContactOffset: 0.01 + m_JobOptions: + serializedVersion: 2 + useMultithreading: 0 + useConsistencySorting: 0 + m_InterpolationPosesPerJob: 100 + m_NewContactsPerJob: 30 + m_CollideContactsPerJob: 100 + m_ClearFlagsPerJob: 200 + m_ClearBodyForcesPerJob: 200 + m_SyncDiscreteFixturesPerJob: 50 + m_SyncContinuousFixturesPerJob: 50 + m_FindNearestContactsPerJob: 100 + m_UpdateTriggerContactsPerJob: 100 + m_IslandSolverCostThreshold: 100 + m_IslandSolverBodyCostScale: 1 + m_IslandSolverContactCostScale: 10 + m_IslandSolverJointCostScale: 10 + m_IslandSolverBodiesPerJob: 50 + m_IslandSolverContactsPerJob: 50 + m_AutoSimulation: 1 + m_QueriesHitTriggers: 1 + m_QueriesStartInColliders: 1 + m_CallbacksOnDisable: 1 + m_ReuseCollisionCallbacks: 1 + m_AutoSyncTransforms: 0 + m_AlwaysShowColliders: 0 + m_ShowColliderSleep: 1 + m_ShowColliderContacts: 0 + m_ShowColliderAABB: 0 + m_ContactArrowScale: 0.2 + m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} + m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} + m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} + m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff diff --git a/ProjectSettings/PresetManager.asset b/ProjectSettings/PresetManager.asset new file mode 100644 index 0000000..67a94da --- /dev/null +++ b/ProjectSettings/PresetManager.asset @@ -0,0 +1,7 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1386491679 &1 +PresetManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_DefaultPresets: {} diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset new file mode 100644 index 0000000..d783d6a --- /dev/null +++ b/ProjectSettings/ProjectSettings.asset @@ -0,0 +1,671 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!129 &1 +PlayerSettings: + m_ObjectHideFlags: 0 + serializedVersion: 22 + productGUID: ecfc955615bb77dd4aa3de6a61caae71 + AndroidProfiler: 0 + AndroidFilterTouchesWhenObscured: 0 + AndroidEnableSustainedPerformanceMode: 0 + defaultScreenOrientation: 4 + targetDevice: 2 + useOnDemandResources: 0 + accelerometerFrequency: 60 + companyName: DefaultCompany + productName: Abgabe2 + defaultCursor: {fileID: 0} + cursorHotspot: {x: 0, y: 0} + m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} + m_ShowUnitySplashScreen: 1 + m_ShowUnitySplashLogo: 1 + m_SplashScreenOverlayOpacity: 1 + m_SplashScreenAnimation: 1 + m_SplashScreenLogoStyle: 1 + m_SplashScreenDrawMode: 0 + m_SplashScreenBackgroundAnimationZoom: 1 + m_SplashScreenLogoAnimationZoom: 1 + m_SplashScreenBackgroundLandscapeAspect: 1 + m_SplashScreenBackgroundPortraitAspect: 1 + m_SplashScreenBackgroundLandscapeUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenBackgroundPortraitUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenLogos: [] + m_VirtualRealitySplashScreen: {fileID: 0} + m_HolographicTrackingLossScreen: {fileID: 0} + defaultScreenWidth: 1024 + defaultScreenHeight: 768 + defaultScreenWidthWeb: 960 + defaultScreenHeightWeb: 600 + m_StereoRenderingPath: 0 + m_ActiveColorSpace: 0 + m_MTRendering: 1 + mipStripping: 0 + numberOfMipsStripped: 0 + m_StackTraceTypes: 010000000100000001000000010000000100000001000000 + iosShowActivityIndicatorOnLoading: -1 + androidShowActivityIndicatorOnLoading: -1 + iosUseCustomAppBackgroundBehavior: 0 + iosAllowHTTPDownload: 1 + allowedAutorotateToPortrait: 1 + allowedAutorotateToPortraitUpsideDown: 1 + allowedAutorotateToLandscapeRight: 1 + allowedAutorotateToLandscapeLeft: 1 + useOSAutorotation: 1 + use32BitDisplayBuffer: 1 + preserveFramebufferAlpha: 0 + disableDepthAndStencilBuffers: 0 + androidStartInFullscreen: 1 + androidRenderOutsideSafeArea: 1 + androidUseSwappy: 1 + androidBlitType: 0 + defaultIsNativeResolution: 1 + macRetinaSupport: 1 + runInBackground: 1 + captureSingleScreen: 0 + muteOtherAudioSources: 0 + Prepare IOS For Recording: 0 + Force IOS Speakers When Recording: 0 + deferSystemGesturesMode: 0 + hideHomeButton: 0 + submitAnalytics: 1 + usePlayerLog: 1 + bakeCollisionMeshes: 0 + forceSingleInstance: 0 + useFlipModelSwapchain: 1 + resizableWindow: 0 + useMacAppStoreValidation: 0 + macAppStoreCategory: public.app-category.games + gpuSkinning: 1 + xboxPIXTextureCapture: 0 + xboxEnableAvatar: 0 + xboxEnableKinect: 0 + xboxEnableKinectAutoTracking: 0 + xboxEnableFitness: 0 + visibleInBackground: 1 + allowFullscreenSwitch: 1 + fullscreenMode: 1 + xboxSpeechDB: 0 + xboxEnableHeadOrientation: 0 + xboxEnableGuest: 0 + xboxEnablePIXSampling: 0 + metalFramebufferOnly: 0 + xboxOneResolution: 0 + xboxOneSResolution: 0 + xboxOneXResolution: 3 + xboxOneMonoLoggingLevel: 0 + xboxOneLoggingLevel: 1 + xboxOneDisableEsram: 0 + xboxOneEnableTypeOptimization: 0 + xboxOnePresentImmediateThreshold: 0 + switchQueueCommandMemory: 0 + switchQueueControlMemory: 16384 + switchQueueComputeMemory: 262144 + switchNVNShaderPoolsGranularity: 33554432 + switchNVNDefaultPoolsGranularity: 16777216 + switchNVNOtherPoolsGranularity: 16777216 + switchNVNMaxPublicTextureIDCount: 0 + switchNVNMaxPublicSamplerIDCount: 0 + stadiaPresentMode: 0 + stadiaTargetFramerate: 0 + vulkanNumSwapchainBuffers: 3 + vulkanEnableSetSRGBWrite: 0 + vulkanEnablePreTransform: 0 + vulkanEnableLateAcquireNextImage: 0 + m_SupportedAspectRatios: + 4:3: 1 + 5:4: 1 + 16:10: 1 + 16:9: 1 + Others: 1 + bundleVersion: 0.1 + preloadedAssets: [] + metroInputSource: 0 + wsaTransparentSwapchain: 0 + m_HolographicPauseOnTrackingLoss: 1 + xboxOneDisableKinectGpuReservation: 1 + xboxOneEnable7thCore: 1 + vrSettings: + enable360StereoCapture: 0 + isWsaHolographicRemotingEnabled: 0 + enableFrameTimingStats: 0 + useHDRDisplay: 0 + D3DHDRBitDepth: 0 + m_ColorGamuts: 00000000 + targetPixelDensity: 30 + resolutionScalingMode: 0 + androidSupportedAspectRatio: 1 + androidMaxAspectRatio: 2.1 + applicationIdentifier: {} + buildNumber: + Standalone: 0 + iPhone: 0 + tvOS: 0 + overrideDefaultApplicationIdentifier: 0 + AndroidBundleVersionCode: 1 + AndroidMinSdkVersion: 19 + AndroidTargetSdkVersion: 0 + AndroidPreferredInstallLocation: 1 + aotOptions: + stripEngineCode: 1 + iPhoneStrippingLevel: 0 + iPhoneScriptCallOptimization: 0 + ForceInternetPermission: 0 + ForceSDCardPermission: 0 + CreateWallpaper: 0 + APKExpansionFiles: 0 + keepLoadedShadersAlive: 0 + StripUnusedMeshComponents: 1 + VertexChannelCompressionMask: 4054 + iPhoneSdkVersion: 988 + iOSTargetOSVersionString: 11.0 + tvOSSdkVersion: 0 + tvOSRequireExtendedGameController: 0 + tvOSTargetOSVersionString: 11.0 + uIPrerenderedIcon: 0 + uIRequiresPersistentWiFi: 0 + uIRequiresFullScreen: 1 + uIStatusBarHidden: 1 + uIExitOnSuspend: 0 + uIStatusBarStyle: 0 + appleTVSplashScreen: {fileID: 0} + appleTVSplashScreen2x: {fileID: 0} + tvOSSmallIconLayers: [] + tvOSSmallIconLayers2x: [] + tvOSLargeIconLayers: [] + tvOSLargeIconLayers2x: [] + tvOSTopShelfImageLayers: [] + tvOSTopShelfImageLayers2x: [] + tvOSTopShelfImageWideLayers: [] + tvOSTopShelfImageWideLayers2x: [] + iOSLaunchScreenType: 0 + iOSLaunchScreenPortrait: {fileID: 0} + iOSLaunchScreenLandscape: {fileID: 0} + iOSLaunchScreenBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreenFillPct: 100 + iOSLaunchScreenSize: 100 + iOSLaunchScreenCustomXibPath: + iOSLaunchScreeniPadType: 0 + iOSLaunchScreeniPadImage: {fileID: 0} + iOSLaunchScreeniPadBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreeniPadFillPct: 100 + iOSLaunchScreeniPadSize: 100 + iOSLaunchScreeniPadCustomXibPath: + iOSLaunchScreenCustomStoryboardPath: + iOSLaunchScreeniPadCustomStoryboardPath: + iOSDeviceRequirements: [] + iOSURLSchemes: [] + iOSBackgroundModes: 0 + iOSMetalForceHardShadows: 0 + metalEditorSupport: 1 + metalAPIValidation: 1 + iOSRenderExtraFrameOnPause: 0 + iosCopyPluginsCodeInsteadOfSymlink: 0 + appleDeveloperTeamID: + iOSManualSigningProvisioningProfileID: + tvOSManualSigningProvisioningProfileID: + iOSManualSigningProvisioningProfileType: 0 + tvOSManualSigningProvisioningProfileType: 0 + appleEnableAutomaticSigning: 0 + iOSRequireARKit: 0 + iOSAutomaticallyDetectAndAddCapabilities: 1 + appleEnableProMotion: 0 + shaderPrecisionModel: 0 + clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea + templatePackageId: com.unity.template.3d@5.0.4 + templateDefaultScene: Assets/Scenes/SampleScene.unity + useCustomMainManifest: 0 + useCustomLauncherManifest: 0 + useCustomMainGradleTemplate: 0 + useCustomLauncherGradleManifest: 0 + useCustomBaseGradleTemplate: 0 + useCustomGradlePropertiesTemplate: 0 + useCustomProguardFile: 0 + AndroidTargetArchitectures: 1 + AndroidSplashScreenScale: 0 + androidSplashScreen: {fileID: 0} + AndroidKeystoreName: + AndroidKeyaliasName: + AndroidBuildApkPerCpuArchitecture: 0 + AndroidTVCompatibility: 0 + AndroidIsGame: 1 + AndroidEnableTango: 0 + androidEnableBanner: 1 + androidUseLowAccuracyLocation: 0 + androidUseCustomKeystore: 0 + m_AndroidBanners: + - width: 320 + height: 180 + banner: {fileID: 0} + androidGamepadSupportLevel: 0 + AndroidMinifyWithR8: 0 + AndroidMinifyRelease: 0 + AndroidMinifyDebug: 0 + AndroidValidateAppBundleSize: 1 + AndroidAppBundleSizeToValidate: 150 + m_BuildTargetIcons: [] + m_BuildTargetPlatformIcons: [] + m_BuildTargetBatching: + - m_BuildTarget: Standalone + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: tvOS + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: Android + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: iPhone + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: WebGL + m_StaticBatching: 0 + m_DynamicBatching: 0 + m_BuildTargetGraphicsJobs: + - m_BuildTarget: MacStandaloneSupport + m_GraphicsJobs: 0 + - m_BuildTarget: Switch + m_GraphicsJobs: 1 + - m_BuildTarget: MetroSupport + m_GraphicsJobs: 1 + - m_BuildTarget: AppleTVSupport + m_GraphicsJobs: 0 + - m_BuildTarget: BJMSupport + m_GraphicsJobs: 1 + - m_BuildTarget: LinuxStandaloneSupport + m_GraphicsJobs: 1 + - m_BuildTarget: PS4Player + m_GraphicsJobs: 1 + - m_BuildTarget: iOSSupport + m_GraphicsJobs: 0 + - m_BuildTarget: WindowsStandaloneSupport + m_GraphicsJobs: 1 + - m_BuildTarget: XboxOnePlayer + m_GraphicsJobs: 1 + - m_BuildTarget: LuminSupport + m_GraphicsJobs: 0 + - m_BuildTarget: AndroidPlayer + m_GraphicsJobs: 0 + - m_BuildTarget: WebGLSupport + m_GraphicsJobs: 0 + m_BuildTargetGraphicsJobMode: + - m_BuildTarget: PS4Player + m_GraphicsJobMode: 0 + - m_BuildTarget: XboxOnePlayer + m_GraphicsJobMode: 0 + m_BuildTargetGraphicsAPIs: + - m_BuildTarget: AndroidPlayer + m_APIs: 150000000b000000 + m_Automatic: 0 + - m_BuildTarget: iOSSupport + m_APIs: 10000000 + m_Automatic: 1 + - m_BuildTarget: AppleTVSupport + m_APIs: 10000000 + m_Automatic: 1 + - m_BuildTarget: WebGLSupport + m_APIs: 0b000000 + m_Automatic: 1 + m_BuildTargetVRSettings: + - m_BuildTarget: Standalone + m_Enabled: 0 + m_Devices: + - Oculus + - OpenVR + openGLRequireES31: 0 + openGLRequireES31AEP: 0 + openGLRequireES32: 0 + m_TemplateCustomTags: {} + mobileMTRendering: + Android: 1 + iPhone: 1 + tvOS: 1 + m_BuildTargetGroupLightmapEncodingQuality: [] + m_BuildTargetGroupLightmapSettings: [] + m_BuildTargetNormalMapEncoding: [] + playModeTestRunnerEnabled: 0 + runPlayModeTestAsEditModeTest: 0 + actionOnDotNetUnhandledException: 1 + enableInternalProfiler: 0 + logObjCUncaughtExceptions: 1 + enableCrashReportAPI: 0 + cameraUsageDescription: + locationUsageDescription: + microphoneUsageDescription: + switchNMETAOverride: + switchNetLibKey: + switchSocketMemoryPoolSize: 6144 + switchSocketAllocatorPoolSize: 128 + switchSocketConcurrencyLimit: 14 + switchScreenResolutionBehavior: 2 + switchUseCPUProfiler: 0 + switchUseGOLDLinker: 0 + switchApplicationID: 0x01004b9000490000 + switchNSODependencies: + switchTitleNames_0: + switchTitleNames_1: + switchTitleNames_2: + switchTitleNames_3: + switchTitleNames_4: + switchTitleNames_5: + switchTitleNames_6: + switchTitleNames_7: + switchTitleNames_8: + switchTitleNames_9: + switchTitleNames_10: + switchTitleNames_11: + switchTitleNames_12: + switchTitleNames_13: + switchTitleNames_14: + switchPublisherNames_0: + switchPublisherNames_1: + switchPublisherNames_2: + switchPublisherNames_3: + switchPublisherNames_4: + switchPublisherNames_5: + switchPublisherNames_6: + switchPublisherNames_7: + switchPublisherNames_8: + switchPublisherNames_9: + switchPublisherNames_10: + switchPublisherNames_11: + switchPublisherNames_12: + switchPublisherNames_13: + switchPublisherNames_14: + switchIcons_0: {fileID: 0} + switchIcons_1: {fileID: 0} + switchIcons_2: {fileID: 0} + switchIcons_3: {fileID: 0} + switchIcons_4: {fileID: 0} + switchIcons_5: {fileID: 0} + switchIcons_6: {fileID: 0} + switchIcons_7: {fileID: 0} + switchIcons_8: {fileID: 0} + switchIcons_9: {fileID: 0} + switchIcons_10: {fileID: 0} + switchIcons_11: {fileID: 0} + switchIcons_12: {fileID: 0} + switchIcons_13: {fileID: 0} + switchIcons_14: {fileID: 0} + switchSmallIcons_0: {fileID: 0} + switchSmallIcons_1: {fileID: 0} + switchSmallIcons_2: {fileID: 0} + switchSmallIcons_3: {fileID: 0} + switchSmallIcons_4: {fileID: 0} + switchSmallIcons_5: {fileID: 0} + switchSmallIcons_6: {fileID: 0} + switchSmallIcons_7: {fileID: 0} + switchSmallIcons_8: {fileID: 0} + switchSmallIcons_9: {fileID: 0} + switchSmallIcons_10: {fileID: 0} + switchSmallIcons_11: {fileID: 0} + switchSmallIcons_12: {fileID: 0} + switchSmallIcons_13: {fileID: 0} + switchSmallIcons_14: {fileID: 0} + switchManualHTML: + switchAccessibleURLs: + switchLegalInformation: + switchMainThreadStackSize: 1048576 + switchPresenceGroupId: + switchLogoHandling: 0 + switchReleaseVersion: 0 + switchDisplayVersion: 1.0.0 + switchStartupUserAccount: 0 + switchTouchScreenUsage: 0 + switchSupportedLanguagesMask: 0 + switchLogoType: 0 + switchApplicationErrorCodeCategory: + switchUserAccountSaveDataSize: 0 + switchUserAccountSaveDataJournalSize: 0 + switchApplicationAttribute: 0 + switchCardSpecSize: -1 + switchCardSpecClock: -1 + switchRatingsMask: 0 + switchRatingsInt_0: 0 + switchRatingsInt_1: 0 + switchRatingsInt_2: 0 + switchRatingsInt_3: 0 + switchRatingsInt_4: 0 + switchRatingsInt_5: 0 + switchRatingsInt_6: 0 + switchRatingsInt_7: 0 + switchRatingsInt_8: 0 + switchRatingsInt_9: 0 + switchRatingsInt_10: 0 + switchRatingsInt_11: 0 + switchRatingsInt_12: 0 + switchLocalCommunicationIds_0: + switchLocalCommunicationIds_1: + switchLocalCommunicationIds_2: + switchLocalCommunicationIds_3: + switchLocalCommunicationIds_4: + switchLocalCommunicationIds_5: + switchLocalCommunicationIds_6: + switchLocalCommunicationIds_7: + switchParentalControl: 0 + switchAllowsScreenshot: 1 + switchAllowsVideoCapturing: 1 + switchAllowsRuntimeAddOnContentInstall: 0 + switchDataLossConfirmation: 0 + switchUserAccountLockEnabled: 0 + switchSystemResourceMemory: 16777216 + switchSupportedNpadStyles: 22 + switchNativeFsCacheSize: 32 + switchIsHoldTypeHorizontal: 0 + switchSupportedNpadCount: 8 + switchSocketConfigEnabled: 0 + switchTcpInitialSendBufferSize: 32 + switchTcpInitialReceiveBufferSize: 64 + switchTcpAutoSendBufferSizeMax: 256 + switchTcpAutoReceiveBufferSizeMax: 256 + switchUdpSendBufferSize: 9 + switchUdpReceiveBufferSize: 42 + switchSocketBufferEfficiency: 4 + switchSocketInitializeEnabled: 1 + switchNetworkInterfaceManagerInitializeEnabled: 1 + switchPlayerConnectionEnabled: 1 + switchUseNewStyleFilepaths: 0 + ps4NPAgeRating: 12 + ps4NPTitleSecret: + ps4NPTrophyPackPath: + ps4ParentalLevel: 11 + ps4ContentID: ED1633-NPXX51362_00-0000000000000000 + ps4Category: 0 + ps4MasterVersion: 01.00 + ps4AppVersion: 01.00 + ps4AppType: 0 + ps4ParamSfxPath: + ps4VideoOutPixelFormat: 0 + ps4VideoOutInitialWidth: 1920 + ps4VideoOutBaseModeInitialWidth: 1920 + ps4VideoOutReprojectionRate: 60 + ps4PronunciationXMLPath: + ps4PronunciationSIGPath: + ps4BackgroundImagePath: + ps4StartupImagePath: + ps4StartupImagesFolder: + ps4IconImagesFolder: + ps4SaveDataImagePath: + ps4SdkOverride: + ps4BGMPath: + ps4ShareFilePath: + ps4ShareOverlayImagePath: + ps4PrivacyGuardImagePath: + ps4ExtraSceSysFile: + ps4NPtitleDatPath: + ps4RemotePlayKeyAssignment: -1 + ps4RemotePlayKeyMappingDir: + ps4PlayTogetherPlayerCount: 0 + ps4EnterButtonAssignment: 1 + ps4ApplicationParam1: 0 + ps4ApplicationParam2: 0 + ps4ApplicationParam3: 0 + ps4ApplicationParam4: 0 + ps4DownloadDataSize: 0 + ps4GarlicHeapSize: 2048 + ps4ProGarlicHeapSize: 2560 + playerPrefsMaxSize: 32768 + ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ + ps4pnSessions: 1 + ps4pnPresence: 1 + ps4pnFriends: 1 + ps4pnGameCustomData: 1 + playerPrefsSupport: 0 + enableApplicationExit: 0 + resetTempFolder: 1 + restrictedAudioUsageRights: 0 + ps4UseResolutionFallback: 0 + ps4ReprojectionSupport: 0 + ps4UseAudio3dBackend: 0 + ps4UseLowGarlicFragmentationMode: 1 + ps4SocialScreenEnabled: 0 + ps4ScriptOptimizationLevel: 0 + ps4Audio3dVirtualSpeakerCount: 14 + ps4attribCpuUsage: 0 + ps4PatchPkgPath: + ps4PatchLatestPkgPath: + ps4PatchChangeinfoPath: + ps4PatchDayOne: 0 + ps4attribUserManagement: 0 + ps4attribMoveSupport: 0 + ps4attrib3DSupport: 0 + ps4attribShareSupport: 0 + ps4attribExclusiveVR: 0 + ps4disableAutoHideSplash: 0 + ps4videoRecordingFeaturesUsed: 0 + ps4contentSearchFeaturesUsed: 0 + ps4CompatibilityPS5: 0 + ps4GPU800MHz: 1 + ps4attribEyeToEyeDistanceSettingVR: 0 + ps4IncludedModules: [] + ps4attribVROutputEnabled: 0 + monoEnv: + splashScreenBackgroundSourceLandscape: {fileID: 0} + splashScreenBackgroundSourcePortrait: {fileID: 0} + blurSplashScreenBackground: 1 + spritePackerPolicy: + webGLMemorySize: 16 + webGLExceptionSupport: 1 + webGLNameFilesAsHashes: 0 + webGLDataCaching: 1 + webGLDebugSymbols: 0 + webGLEmscriptenArgs: + webGLModulesDirectory: + webGLTemplate: APPLICATION:Default + webGLAnalyzeBuildSize: 0 + webGLUseEmbeddedResources: 0 + webGLCompressionFormat: 1 + webGLWasmArithmeticExceptions: 0 + webGLLinkerTarget: 1 + webGLThreadsSupport: 0 + webGLDecompressionFallback: 0 + scriptingDefineSymbols: {} + additionalCompilerArguments: {} + platformArchitecture: {} + scriptingBackend: {} + il2cppCompilerConfiguration: {} + managedStrippingLevel: {} + incrementalIl2cppBuild: {} + suppressCommonWarnings: 1 + allowUnsafeCode: 0 + useDeterministicCompilation: 1 + useReferenceAssemblies: 1 + enableRoslynAnalyzers: 1 + additionalIl2CppArgs: + scriptingRuntimeVersion: 1 + gcIncremental: 1 + assemblyVersionValidation: 1 + gcWBarrierValidation: 0 + apiCompatibilityLevelPerPlatform: {} + m_RenderingPath: 1 + m_MobileRenderingPath: 1 + metroPackageName: Template_3D + metroPackageVersion: + metroCertificatePath: + metroCertificatePassword: + metroCertificateSubject: + metroCertificateIssuer: + metroCertificateNotAfter: 0000000000000000 + metroApplicationDescription: Template_3D + wsaImages: {} + metroTileShortName: + metroTileShowName: 0 + metroMediumTileShowName: 0 + metroLargeTileShowName: 0 + metroWideTileShowName: 0 + metroSupportStreamingInstall: 0 + metroLastRequiredScene: 0 + metroDefaultTileSize: 1 + metroTileForegroundText: 2 + metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} + metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} + metroSplashScreenUseBackgroundColor: 0 + platformCapabilities: {} + metroTargetDeviceFamilies: {} + metroFTAName: + metroFTAFileTypes: [] + metroProtocolName: + XboxOneProductId: + XboxOneUpdateKey: + XboxOneSandboxId: + XboxOneContentId: + XboxOneTitleId: + XboxOneSCId: + XboxOneGameOsOverridePath: + XboxOnePackagingOverridePath: + XboxOneAppManifestOverridePath: + XboxOneVersion: 1.0.0.0 + XboxOnePackageEncryption: 0 + XboxOnePackageUpdateGranularity: 2 + XboxOneDescription: + XboxOneLanguage: + - enus + XboxOneCapability: [] + XboxOneGameRating: {} + XboxOneIsContentPackage: 0 + XboxOneEnhancedXboxCompatibilityMode: 0 + XboxOneEnableGPUVariability: 1 + XboxOneSockets: {} + XboxOneSplashScreen: {fileID: 0} + XboxOneAllowedProductIds: [] + XboxOnePersistentLocalStorageSize: 0 + XboxOneXTitleMemory: 8 + XboxOneOverrideIdentityName: + XboxOneOverrideIdentityPublisher: + vrEditorSettings: {} + cloudServicesEnabled: + UNet: 1 + luminIcon: + m_Name: + m_ModelFolderPath: + m_PortalFolderPath: + luminCert: + m_CertPath: + m_SignPackage: 1 + luminIsChannelApp: 0 + luminVersion: + m_VersionCode: 1 + m_VersionName: + apiCompatibilityLevel: 6 + activeInputHandler: 1 + cloudProjectId: + framebufferDepthMemorylessMode: 0 + qualitySettingsNames: [] + projectName: + organizationId: + cloudEnabled: 0 + legacyClampBlendShapeWeights: 0 + virtualTexturingSupportEnabled: 0 diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt new file mode 100644 index 0000000..3bdba15 --- /dev/null +++ b/ProjectSettings/ProjectVersion.txt @@ -0,0 +1,2 @@ +m_EditorVersion: 2020.2.7f1 +m_EditorVersionWithRevision: 2020.2.7f1 (c53830e277f1) diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset new file mode 100644 index 0000000..7b7658d --- /dev/null +++ b/ProjectSettings/QualitySettings.asset @@ -0,0 +1,232 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!47 &1 +QualitySettings: + m_ObjectHideFlags: 0 + serializedVersion: 5 + m_CurrentQuality: 5 + m_QualitySettings: + - serializedVersion: 2 + name: Very Low + pixelLightCount: 0 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 15 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + blendWeights: 1 + textureQuality: 1 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 0 + lodBias: 0.3 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 4 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Low + pixelLightCount: 0 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + blendWeights: 2 + textureQuality: 0 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 0 + lodBias: 0.4 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 16 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Medium + pixelLightCount: 1 + shadows: 1 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + blendWeights: 2 + textureQuality: 0 + anisotropicTextures: 1 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 1 + lodBias: 0.7 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 64 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: High + pixelLightCount: 2 + shadows: 2 + shadowResolution: 1 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 40 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + blendWeights: 2 + textureQuality: 0 + anisotropicTextures: 1 + antiAliasing: 0 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + vSyncCount: 1 + lodBias: 1 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 256 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Very High + pixelLightCount: 3 + shadows: 2 + shadowResolution: 2 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 70 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + blendWeights: 4 + textureQuality: 0 + anisotropicTextures: 2 + antiAliasing: 2 + softParticles: 1 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + vSyncCount: 1 + lodBias: 1.5 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 1024 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Ultra + pixelLightCount: 4 + shadows: 2 + shadowResolution: 2 + shadowProjection: 1 + shadowCascades: 4 + shadowDistance: 150 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + blendWeights: 4 + textureQuality: 0 + anisotropicTextures: 2 + antiAliasing: 2 + softParticles: 1 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + vSyncCount: 1 + lodBias: 2 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 4096 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + m_PerPlatformDefaultQuality: + Android: 2 + Lumin: 5 + Nintendo 3DS: 5 + Nintendo Switch: 5 + PS4: 5 + PSP2: 2 + Stadia: 5 + Standalone: 5 + WebGL: 3 + Windows Store Apps: 5 + XboxOne: 5 + iPhone: 2 + tvOS: 2 diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset new file mode 100644 index 0000000..9c5e037 --- /dev/null +++ b/ProjectSettings/TagManager.asset @@ -0,0 +1,43 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!78 &1 +TagManager: + serializedVersion: 2 + tags: [] + layers: + - Default + - TransparentFX + - Ignore Raycast + - + - Water + - UI + - Player + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + m_SortingLayers: + - name: Default + uniqueID: 0 + locked: 0 diff --git a/ProjectSettings/TimeManager.asset b/ProjectSettings/TimeManager.asset new file mode 100644 index 0000000..558a017 --- /dev/null +++ b/ProjectSettings/TimeManager.asset @@ -0,0 +1,9 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!5 &1 +TimeManager: + m_ObjectHideFlags: 0 + Fixed Timestep: 0.02 + Maximum Allowed Timestep: 0.33333334 + m_TimeScale: 1 + Maximum Particle Timestep: 0.03 diff --git a/ProjectSettings/UnityConnectSettings.asset b/ProjectSettings/UnityConnectSettings.asset new file mode 100644 index 0000000..fa0b146 --- /dev/null +++ b/ProjectSettings/UnityConnectSettings.asset @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!310 &1 +UnityConnectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 1 + m_Enabled: 0 + m_TestMode: 0 + m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events + m_EventUrl: https://cdp.cloud.unity3d.com/v1/events + m_ConfigUrl: https://config.uca.cloud.unity3d.com + m_TestInitMode: 0 + CrashReportingSettings: + m_EventUrl: https://perf-events.cloud.unity3d.com + m_Enabled: 0 + m_LogBufferSize: 10 + m_CaptureEditorExceptions: 1 + UnityPurchasingSettings: + m_Enabled: 0 + m_TestMode: 0 + UnityAnalyticsSettings: + m_Enabled: 0 + m_TestMode: 0 + m_InitializeOnStartup: 1 + UnityAdsSettings: + m_Enabled: 0 + m_InitializeOnStartup: 1 + m_TestMode: 0 + m_IosGameId: + m_AndroidGameId: + m_GameIds: {} + m_GameId: + PerformanceReportingSettings: + m_Enabled: 0 diff --git a/ProjectSettings/VFXManager.asset b/ProjectSettings/VFXManager.asset new file mode 100644 index 0000000..3a95c98 --- /dev/null +++ b/ProjectSettings/VFXManager.asset @@ -0,0 +1,12 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!937362698 &1 +VFXManager: + m_ObjectHideFlags: 0 + m_IndirectShader: {fileID: 0} + m_CopyBufferShader: {fileID: 0} + m_SortShader: {fileID: 0} + m_StripUpdateShader: {fileID: 0} + m_RenderPipeSettingsPath: + m_FixedTimeStep: 0.016666668 + m_MaxDeltaTime: 0.05 diff --git a/ProjectSettings/VersionControlSettings.asset b/ProjectSettings/VersionControlSettings.asset new file mode 100644 index 0000000..dca2881 --- /dev/null +++ b/ProjectSettings/VersionControlSettings.asset @@ -0,0 +1,8 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!890905787 &1 +VersionControlSettings: + m_ObjectHideFlags: 0 + m_Mode: Visible Meta Files + m_CollabEditorSettings: + inProgressEnabled: 1 diff --git a/ProjectSettings/XRSettings.asset b/ProjectSettings/XRSettings.asset new file mode 100644 index 0000000..482590c --- /dev/null +++ b/ProjectSettings/XRSettings.asset @@ -0,0 +1,10 @@ +{ + "m_SettingKeys": [ + "VR Device Disabled", + "VR Device User Alert" + ], + "m_SettingValues": [ + "False", + "False" + ] +} \ No newline at end of file